From: Benoît Pin <benoit.pin@gmail.com>
Date: Mon, 25 Oct 2010 19:10:53 +0000 (+0200)
Subject: Copie depuis le svn du cri à l'état :
X-Git-Url: https://scm.cri.ensmp.fr/git/Plinn.git/commitdiff_plain/refs/heads/master?ds=sidebyside

Copie depuis le svn du cri à l'état :
URL: http://svn.cri.ensmp.fr/svn/Plinn/branches/CMF-2.1
Repository Root: http://svn.cri.ensmp.fr/svn/Plinn
Repository UUID: 1bf790b2-e4d4-0310-9a6c-c8a412c25dae
Revision: 1534
Node Kind: directory
Schedule: normal
Last Changed Author: pin
Last Changed Rev: 1534
Last Changed Date: 2009-09-07 13:05:57 +0200 (Lun, 07 sep 2009)
---

3e0a2c257d49fb162da9c70d2f70194036235166
diff --git a/AttachmentTool.py b/AttachmentTool.py
new file mode 100644
index 0000000..c7e7a51
--- /dev/null
+++ b/AttachmentTool.py
@@ -0,0 +1,107 @@
+# -*- coding: utf-8 -*-
+#######################################################################################
+#	Plinn - http://plinn.org														  #
+#	Copyright (C) 2007	Benoît PIN <benoit.pin@ensmp.fr>							  #
+#																					  #
+#	This program is free software; you can redistribute it and/or					  #
+#	modify it under the terms of the GNU General Public License						  #
+#	as published by the Free Software Foundation; either version 2					  #
+#	of the License, or (at your option) any later version.							  #
+#																					  #
+#	This program is distributed in the hope that it will be useful,					  #
+#	but WITHOUT ANY WARRANTY; without even the implied warranty of					  #
+#	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the					  #
+#	GNU General Public License for more details.									  #
+#																					  #
+#	You should have received a copy of the GNU General Public License				  #
+#	along with this program; if not, write to the Free Software						  #
+#	Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.	  #
+#######################################################################################
+""" Basic portal attachment management tool.
+
+$Id: AttachmentTool.py 1261 2008-01-07 01:34:23Z pin $
+$URL: http://svn.cri.ensmp.fr/svn/Plinn/branches/CMF-2.1/AttachmentTool.py $
+"""
+
+from AccessControl import ClassSecurityInfo
+from Acquisition import aq_base
+from Globals import InitializeClass
+from OFS.SimpleItem import SimpleItem
+from OFS.Folder import Folder
+from OFS.Image import File, cookId
+from Products.Photo import Photo
+from Products.CMFCore.utils import UniqueObject, getToolByName
+from Products.CMFCore.permissions import ModifyPortalContent
+from Products.CMFCore.exceptions import AccessControl_Unauthorized
+from Products.Plinn.utils import makeValidId
+
+
+class AttachmentTool( UniqueObject, SimpleItem):
+	""" Links attachment objects to contents.
+	"""
+
+	id = 'portal_attachment'
+	meta_type = 'Attachment Tool'
+	manage_options = SimpleItem.manage_options
+
+	security = ClassSecurityInfo()
+
+	security.declarePublic('getAttachmentsFor')
+	def getAttachmentsFor(self, content):
+		"""getAttachmentsFor returns attachments container of content
+		"""
+		if getattr( aq_base(content), 'attachments', None ) is None :
+			self._createAttachmentContainerFor(content)
+		
+		return content.attachments
+	
+	security.declarePrivate('_createAttachmentContainerFor')
+	def _createAttachmentContainerFor(self, content):
+		"""_createAttachmentContainerFor documentation
+		"""
+		
+		content.attachments = AttachmentContainer()
+	
+	security.declarePublic('uploadAttachmentFor')
+	def uploadAttachmentFor(self, content, file, title='', typeName='File') :
+		"upload attachment inside content's attachment folder."
+		
+		mtool = getToolByName(self, 'portal_membership')
+		if not mtool.checkPermission(ModifyPortalContent, content) :
+			raise AccessControl_Unauthorized
+		
+		utool = getToolByName(self, 'portal_url')
+		portal = utool.getPortalObject()
+		
+		attachments = self.getAttachmentsFor(content)
+		dummy, title = cookId('', title, file)
+		id = makeValidId(attachments, title)
+		
+		if typeName == 'Photo':
+			thumbSize = {'thumb_height'	: portal.getProperty('thumb_height', 128),
+						 'thumb_width'	: portal.getProperty('thumb_width', 128)}
+			fileOb = Photo(id, title, file, **thumbSize)
+		elif typeName == 'File' :
+			fileOb = File(id, title, '')
+			fileOb.manage_upload(file)
+		else :
+			raise AccessControl_Unauthorized
+
+		content.attachments._setObject(id, fileOb)
+		fileOb = getattr(content.attachments, id)
+		return fileOb
+		
+		
+
+InitializeClass( AttachmentTool )
+
+
+class AttachmentContainer (Folder):
+	
+	meta_type = 'Attachment container'
+	security = ClassSecurityInfo()
+	
+	def __init__(self):
+		self.id = 'attachments'
+
+InitializeClass(AttachmentContainer)
\ No newline at end of file
diff --git a/CalendarTool.py b/CalendarTool.py
new file mode 100644
index 0000000..6e4799a
--- /dev/null
+++ b/CalendarTool.py
@@ -0,0 +1,391 @@
+# -*- coding: utf-8 -*-
+#######################################################################################
+#   Plinn - http://plinn.org                                                          #
+#   Copyright (C) 2005-2007  Benoît PIN <benoit.pin@ensmp.fr>                         #
+#                                                                                     #
+#   This program is free software; you can redistribute it and/or                     #
+#   modify it under the terms of the GNU General Public License                       #
+#   as published by the Free Software Foundation; either version 2                    #
+#   of the License, or (at your option) any later version.                            #
+#                                                                                     #
+#   This program is distributed in the hope that it will be useful,                   #
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of                    #
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                     #
+#   GNU General Public License for more details.                                      #
+#                                                                                     #
+#   You should have received a copy of the GNU General Public License                 #
+#   along with this program; if not, write to the Free Software                       #
+#   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.   #
+#######################################################################################
+""" Plinn calendar tool provides utilities to display content on a calendar layout
+
+$Id: CalendarTool.py 1360 2008-08-01 15:59:58Z pin $
+$URL: http://svn.cri.ensmp.fr/svn/Plinn/branches/CMF-2.1/CalendarTool.py $
+"""
+
+from Products.CMFCore.utils import UniqueObject, getToolByName
+from Products.CMFCore.permissions import ManagePortal, ListFolderContents
+from Products.CMFCore.ActionProviderBase import ActionProviderBase
+from Products.CMFCore.ActionInformation import ActionInformation
+from Products.CMFCore.ActionInformation import ActionInformation
+from OFS.SimpleItem import SimpleItem
+from AccessControl import ClassSecurityInfo
+from Globals import InitializeClass
+from Products.PageTemplates.PageTemplateFile import PageTemplateFile
+
+import calendar
+from DateTime import DateTime
+from sets import Set
+from types import StringType
+
+class CalendarTool (UniqueObject, ActionProviderBase, SimpleItem):
+	""" a calendar tool """
+	id = 'portal_calendar'
+	meta_type = 'Plinn Calendar Tool'
+	security = ClassSecurityInfo()
+	
+	manage_options = ({ 'label' : 'Configure', 'action' : 'manage_configure' }, ) + \
+						ActionProviderBase.manage_options + \
+						SimpleItem.manage_options
+
+
+
+	#
+	#	ZMI methods
+	#
+
+	security.declareProtected( ManagePortal, 'manage_configure' )
+	manage_configure = PageTemplateFile('www/configureCalendarTool', globals(),
+								   __name__='manage_configure')
+
+	def __init__(self) :
+		calendar.setfirstweekday(0)
+		self.dateIndexes = ['created', 'modified', 'DateTimeOriginal']
+		self.displayRange = [0, 96]
+		#calViewActionInfo = ActionInformation('calendar_view',
+		#									  title = 'Calendar View',
+		#									  category = 'folder',
+		#									  permissions = (ListFolderContents, ),
+		#									  condition = 'python: folder is object',
+		#									  action = 'string: ${folder_url}/calendar_view')
+		self._actions = tuple()
+		
+	security.declareProtected(ManagePortal, 'configureTool')
+	def configureTool(self, dateIndexes, displayRange, REQUEST = None) :
+		""" Define date indexes managed by this tool """
+		self.dateIndexes = dateIndexes
+		self.displayRange = map(lambda s : int(s) * 4, displayRange)
+		if REQUEST :
+			return self.manage_configure(self, REQUEST, manage_tabs_message='Saved changes.')
+		
+	security.declarePublic('getDateIndexes')
+	def getDateIndexes(self) :
+		""" Return managed date indexes """
+		
+		return self.dateIndexes
+	
+	security.declareProtected(ManagePortal, 'getCandidateIndexes')
+	def getCandidateIndexes(self) :
+		""" return portal_catalog date and field indexes """
+		
+		cTool = getToolByName(self, 'portal_catalog')
+		fIndexes = [index.id for index in cTool.getIndexObjects() if index.meta_type == 'FieldIndex' or \
+																	 index.meta_type == 'DateIndex' ]
+		fIndexes.sort(lambda a, b : cmp(a.lower(), b.lower()))
+		return fIndexes
+	
+	security.declarePublic('getCommonIndexes')
+	def getCommonIndexes(self, objects) :
+		""" Return indexes which belongs to all objects """
+		
+		if not objects :
+			return Set([])
+		types = []
+		allIndexSets = []
+		for ob in objects :
+			if ob.meta_type in types :
+				continue
+			else :
+				types.append(ob.meta_type)
+				obIndexes = []
+				for index in self.dateIndexes :
+					if hasattr(ob, index) :
+						obIndexes.append(index)
+				allIndexSets.append(Set(obIndexes))
+		return reduce(lambda a, b : a & b, allIndexSets, Set(self.dateIndexes))
+		
+	security.declarePublic('getDisplayRange')
+	def getDisplayRange(self) :
+		""" Return range to display in week view
+		"""
+		return self.displayRange
+	
+	security.declarePublic('indexIsCallable')
+	def indexIsCallable(self, index, objects = []) :
+		""" Return 1 if callable 0 if not callable or -1 if it's unknown """
+		isCallable = -1
+		if objects :
+			if callable(getattr(objects[0], index)) :
+				isCallable = 1
+			else :
+				isCallable = 0
+		return isCallable
+
+	security.declarePublic('buildDate')
+	def buildDate(self, dateOrString) :
+		""" Return DateTime instance """
+		if type(dateOrString) == StringType :
+			return DateTime(dateOrString)
+		else :
+			return dateOrString
+	
+	security.declarePrivate('listActions')
+	def listActions(self, object=None) :
+		""" List action according to indexes """
+		
+		actions = list(self._actions)
+
+		if getattr(object, 'isAnObjectManager', False) :
+			request = object.REQUEST
+			
+			visible = request['PATH_INFO'].split('/') [-1] == 'calendar_view' and True or False
+			try :
+				if hasattr(object, 'listNearestFolderContents') :
+					objects = object.listNearestFolderContents()
+				elif hasattr(object, 'listFolderContents') :
+					objects = object.listFolderContents()
+				else :
+					objects = object.objectValues()
+			except :
+				objects = []
+			
+			if objects :
+				for index in [ index for index in self.getCommonIndexes(objects) ] :
+					ai = ActionInformation( index
+										  , title = 'sort_by_index_%s' % index
+										  , category = 'additional_tabs'
+										  , action = 'string:${folder_url}/calendar_view?sortBy=' + index
+										  , visible = visible)
+					actions.append(ai)
+			
+		return actions
+		
+	security.declarePublic('sortObjectsByDate')
+	def sortObjectsByDate(self, objects, index) :
+		"""Sort objects by date index
+		"""
+		if objects :
+			if callable(getattr(objects[0], index)) :
+				objects.sort(lambda a, b : cmp(getattr(a, index)(), getattr(b, index)()))
+			else :
+				objects.sort(lambda a, b : cmp(getattr(a, index), getattr(b, index)))
+		return objects
+		
+	security.declarePublic('getWeeksList')
+	def getWeeksList(self, objects, index, year=2004, month=5) :
+		"""Creates a series of weeks, each of which contains an integer day number.
+		   A day number of 0 means that day is in the previous or next month.
+		"""
+		
+		if objects :
+			getIndexValue = callable(getattr(objects[0], index)) and \
+								( lambda ob : getattr(ob, index)() ) or \
+								( lambda ob : getattr(ob, index) )
+			buildDate = type(getIndexValue(objects[0])) == StringType and \
+							( lambda date : DateTime(date) ) or \
+							( lambda date : date )
+		weekList = []
+
+		for week in calendar.monthcalendar(year, month) :
+			weekInfoList = []
+			
+			for day in week :
+				if day == 0 :
+					inside = []
+				else :
+					inside = []
+					outside = []
+					for ob in objects :
+						obDate = buildDate(getIndexValue(ob))
+						if obDate.year() == year and obDate.month() == month and obDate.day() == day :
+							inside.append(ob)
+						else :
+							outside.append(ob)
+					objects = outside
+				
+				dayInfo = {'day' : day,
+						   'objects' : inside}
+				
+				weekInfoList.append(dayInfo)
+				
+			weekList.append(weekInfoList)
+	
+		return weekList
+	
+	security.declarePublic('getDays')
+	def getDays(self, letters=2):
+		""" Returns a list of days with the correct start day first """
+		return calendar.weekheader(letters).split()
+	
+	security.declarePublic('isToday')
+	def isToday(self, year, month, day) :
+		""" return True if date is Today False otherwise
+		"""
+		now = DateTime()
+		if now.day() == day and now.month() ==	month and now.year() == year :
+			return True
+		else :
+			return False
+	
+	security.declarePublic('getMonthName')
+	def getMonthName(self, month) :
+		""" return month name """
+		return calendar.month_name[month]
+	
+	security.declarePublic('getNextMonth')
+	def getNextMonth(self, year, month) :
+		""" return next month """
+		month += 1
+		if month > 12 :
+			month = 1
+			year += 1
+		return {'year' : year, 'month' : month}
+	
+	security.declarePublic('getPreviousMonth')
+	def getPreviousMonth(self, year, month) :
+		""" return previous month """
+		month -= 1
+		if month < 1 :
+			month = 12
+			year -= 1
+		return {'year' : year, 'month' : month}
+	
+	security.declarePublic('getWeek')
+	def getWeek(self, objects, index, year=2004, month=5, day=24) :
+		""" return week info """
+		
+		weeksList = self.getWeeksList(objects, index, year=year, month=month)
+		for weekIndex in range(len(weeksList)) :
+			if day in [ entry['day'] for entry	in weeksList[weekIndex] ] :
+				break
+		week = weeksList[weekIndex]
+				
+		for entry in week :
+			entry.update({'month' : month})
+		
+		previousWeeksList = None
+		nextWeeksList = None
+		
+		if week[0]['day'] == 0 :
+			nbOfDaysInMonthBefore = [ entry['day'] for entry in week ].count(0)
+			previousMonth = self.getPreviousMonth(year, month)
+			previousWeeksList = self.getWeeksList(objects, index, year=previousMonth['year'], month=previousMonth['month'])
+			daysInPreviousMonth = previousWeeksList[-1][:nbOfDaysInMonthBefore]
+			for entry in daysInPreviousMonth :
+				entry.update({'month' : previousMonth['month']})
+			
+			daysInThisMonth = week[nbOfDaysInMonthBefore:]
+			
+			week = daysInPreviousMonth + daysInThisMonth
+		elif week[-1]['day'] == 0 :
+			nbOfDaysInMonthAfter = [ entry['day'] for entry in week ].count(0)
+			nextMonth = self.getNextMonth(year, month)
+			nextWeeksList = self.getWeeksList(objects, index, year=nextMonth['year'], month=nextMonth['month'])
+			daysInNextMonth = nextWeeksList[0][-nbOfDaysInMonthAfter:]
+			for entry in daysInNextMonth :
+				entry.update({'month' : nextMonth['month']})
+			
+			daysInThisMonth = week[:7 - nbOfDaysInMonthAfter]
+			
+			week = daysInThisMonth + daysInNextMonth
+			
+		
+		# previous week
+		if weekIndex > 0 :
+			previousStartDay = {'year'	: year,
+								'month' : month,
+								'day'	: weeksList[weekIndex - 1][-1]}
+		elif previousWeeksList :
+			previousStartDay = {'year'	: previousMonth['year'],
+								'month' : previousMonth['month'],
+								'day'	: previousWeeksList[-2][0]}
+		else :
+			# the first week of this month begin on monday
+			previousMonth = self.getPreviousMonth(year, month)
+			previousWeeksList = self.getWeeksList([], index, year=previousMonth['year'], month=previousMonth['month'])
+			previousStartDay = {'year'	: previousMonth['year'],
+								'month' : previousMonth['month'],
+								'day'	: previousWeeksList[-1][0]}
+			
+			
+		# next week
+		if weekIndex < len(weeksList) - 1 :
+			nextStartDay = {'year'	: year,
+							'month' : month,
+							'day'	: weeksList[weekIndex + 1][0]}
+		elif nextWeeksList :
+			nextStartDay = {'year'	: nextMonth['year'],
+							'month' : nextMonth['month'],
+							'day'	: nextWeeksList[1][0]}
+		else :
+			# the last week of this month ends on sunday
+			nextMonth = self.getNextMonth(year, month)
+			nextWeeksList = self.getWeeksList([], index, year=nextMonth['year'], month=nextMonth['month'])
+			nextStartDay = {'year'	: nextMonth['year'],
+							'month' : nextMonth['month'],
+							'day'	: nextWeeksList[0][0]}
+			
+		
+		return {'week' : week,
+				'previousStartDay' : previousStartDay,
+				'nextStartDay' : nextStartDay}
+	
+	security.declarePublic('getWeekTable')
+	def getWeekTable(self, week, index, indexIsCallable) :
+		""" Utility method for transposing getWeek result
+			for an easy display in table.
+		"""
+		
+		weekMatrix = [ [ [] for q in range(96)	] for d in range(7) ]
+
+		getIndexValue = indexIsCallable and \
+							( lambda ob : getattr(ob, index)() ) or \
+							( lambda ob : getattr(ob, index) )
+		reelRange = self.displayRange[:]
+		for dayIndex in range(7) :
+			dayInfo = week[dayIndex]
+			for ob in dayInfo['objects'] :
+				date = self.buildDate(getIndexValue(ob))
+				
+				minutesAfterMidnight = date.hour() * 60 + date.minute()
+				cellIndex = minutesAfterMidnight / 15
+				
+				if cellIndex < reelRange[0] :
+					reelRange[0] = cellIndex
+				elif cellIndex >= reelRange[1] :
+					reelRange[1] = cellIndex + 1
+				
+				weekMatrix[dayIndex][cellIndex].append(ob)
+		
+		reelRange[0] = reelRange[0] - reelRange[0] % 4
+		reelRange[1] = reelRange[1] + reelRange[1] % 4
+		
+		return {'weekMatrix' : weekMatrix, 'range' : reelRange}
+
+	
+	security.declarePublic('getEventHeight')
+	def getEventHeight(self, event) :
+		""" Return event height
+		"""
+		ee = event.end()
+		es = event.start()
+		days = int( ee - es)
+		if days == 0 :
+			duration = ( ee.hour() * 60 + ee.minute() ) - ( es.hour() * 60 + es.minute() )
+			height = duration / 15
+			return height
+		else :
+			return 1
+#			 raise ValueError, "%s event duration is more than 1 day" % event.id
+
+InitializeClass(CalendarTool)
\ No newline at end of file
diff --git a/ContentHistory.py b/ContentHistory.py
new file mode 100755
index 0000000..44247a5
--- /dev/null
+++ b/ContentHistory.py
@@ -0,0 +1,106 @@
+# -*- coding: utf-8 -*-
+#######################################################################################
+#   Plinn - http://plinn.org                                                          #
+#   Copyright © 2005-2009  Benoît PIN <benoit.pin@ensmp.fr>                           #
+#                                                                                     #
+#   This program is free software; you can redistribute it and/or                     #
+#   modify it under the terms of the GNU General Public License                       #
+#   as published by the Free Software Foundation; either version 2                    #
+#   of the License, or (at your option) any later version.                            #
+#                                                                                     #
+#   This program is distributed in the hope that it will be useful,                   #
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of                    #
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                     #
+#   GNU General Public License for more details.                                      #
+#                                                                                     #
+#   You should have received a copy of the GNU General Public License                 #
+#   along with this program; if not, write to the Free Software                       #
+#   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.   #
+#######################################################################################
+"""
+Module to manage history of contents (comparisons, copy to present).
+
+$Id: ContentHistory.py 1450 2009-01-10 13:27:20Z pin $
+$URL: http://svn.cri.ensmp.fr/svn/Plinn/branches/CMF-2.1/ContentHistory.py $
+"""
+
+from Globals import InitializeClass
+from AccessControl import ClassSecurityInfo
+from ExtensionClass import Base
+import Acquisition
+from zope.interface import implements
+from OFS.History import historicalRevision
+from Products.PluginIndexes.common import safe_callable
+from interfaces import IContentHistory
+from Products.CMFCore.permissions import ModifyPortalContent
+from permissions import ViewHistory
+from struct import pack, unpack
+from DateTime import DateTime
+
+class ContentHistory(Base, Acquisition.Implicit) :
+	""" Utility to manage historical entries of a content
+	"""
+	implements(IContentHistory)
+	security = ClassSecurityInfo()
+	
+	def __init__(self, content) :
+		self._content = content
+	
+	security.declareProtected(ViewHistory, 'listEntries')
+	def listEntries(self, first=0, last=20):
+		oid = self._content._p_oid
+		db = self._content._p_jar.db()
+		r = db.history(oid, None, last)
+
+		if r is None:
+			# storage doesn't support history
+			return ()
+
+		r=r[first:]
+
+		for d in r:
+			d['time']=DateTime(d['time'])
+			d['key']='.'.join(map(str, unpack(">HHHH", d['tid'])))
+
+		return r
+	
+	security.declareProtected(ViewHistory, 'getHistoricalRevisionByKey')
+	def getHistoricalRevisionByKey(self, key, withContext=False):
+
+		serial = apply(pack, ('>HHHH',) + tuple(map(int, key.split('.'))))
+		content = self._content
+		rev = historicalRevision(content, serial)
+		rev = rev.__of__(content.aq_parent)
+		if withContext is False :
+			return rev, DateTime(rev._p_mtime)
+		else :
+			ctx = {}
+			if isinstance(withContext, int) :
+				first = max(withContext-1, 0)
+				entries = self.listEntries(first=first, last=withContext+2)
+			
+			if len(entries) == 3 :
+				ctx['next'], ctx['current'], ctx['previous'] = entries
+			elif len(entries) == 2 :
+				serials = [e['tid'] for e in entries]
+				i =  serials.index(serial)
+				if i == 0 :
+					# last (newest) transaction
+					ctx['current'], ctx['previous'] = entries
+				else :
+					ctx['next'], ctx['current'] = entries
+			elif len(entries) == 1 :
+				ctx['current'] = entries[0]
+			return rev, ctx
+				
+	
+	security.declareProtected(ViewHistory, 'compare')
+	def compare(self, leftkey, rightkey):
+		raise NotImplementedError
+	
+	
+	security.declareProtected(ModifyPortalContent, 'restore')
+	def restore(self, key):
+		raise NotImplementedError
+	
+InitializeClass(ContentHistory)
\ No newline at end of file
diff --git a/EmailNotification.py b/EmailNotification.py
new file mode 100755
index 0000000..7d2d155
--- /dev/null
+++ b/EmailNotification.py
@@ -0,0 +1,100 @@
+# -*- coding: utf-8 -*-
+#######################################################################################
+#   Plinn - http://plinn.org                                                          #
+#   Copyright © 2005-2009  Benoît PIN <benoit.pin@ensmp.fr>                           #
+#                                                                                     #
+#   This program is free software; you can redistribute it and/or                     #
+#   modify it under the terms of the GNU General Public License                       #
+#   as published by the Free Software Foundation; either version 2                    #
+#   of the License, or (at your option) any later version.                            #
+#                                                                                     #
+#   This program is distributed in the hope that it will be useful,                   #
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of                    #
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                     #
+#   GNU General Public License for more details.                                      #
+#                                                                                     #
+#   You should have received a copy of the GNU General Public License                 #
+#   along with this program; if not, write to the Free Software                       #
+#   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.   #
+#######################################################################################
+"""
+Module to manage email notification settings.
+
+$Id: EmailNotification.py 1516 2009-06-29 14:12:14Z pin $
+$URL: http://svn.cri.ensmp.fr/svn/Plinn/branches/CMF-2.1/EmailNotification.py $
+"""
+from ExtensionClass import Base
+import Acquisition
+from Globals import InitializeClass, PersistentMapping
+from AccessControl import ClassSecurityInfo
+from zope.interface import implements
+from interfaces import IEmailNotificationSettings
+from permissions import ListNotificationSettings, SubscribeNotification
+from Products.CMFCore.utils import getToolByName
+from Products.Plinn.utils import Message as _
+
+NOTIFICATION_SETTINGS_NAME = '_notification_settings'
+EVENTS = ({'interface':'zope.app.container.interfaces.IObjectRemovedEvent'
+		  ,'title':_(u'Object deleted')},)
+
+class EmailNoticationSettings(Base, Acquisition.Implicit):
+	"""
+	Adapter used to map users on objects and send them email notification about events.
+	Provide methods to resolve recipients list for a notification.
+	"""
+	
+	implements(IEmailNotificationSettings)
+	security = ClassSecurityInfo()
+	
+	def __init__(self, content) :
+		self._content = content
+		if not hasattr(content.aq_base, NOTIFICATION_SETTINGS_NAME) :
+			setattr(content, NOTIFICATION_SETTINGS_NAME, PersistentMapping())
+	
+	def _getSettings(self) :
+		return getattr(self._content, NOTIFICATION_SETTINGS_NAME)
+	
+	security.declarePrivate('getSubscribersFor')
+	def getSubscribersFor(self, eventIFace):
+		"""returns subscribers for event interface"""
+		settings = self._getSettings()
+		mtool = getToolByName(self, 'portal_membership')
+		memberIds = [mid for mid, mSettings in settings.items() if mSettings.get(eventIFace, False)]
+		
+		return mtool.getMembers(memberIds)
+	
+	security.declareProtected(SubscribeNotification, 'subscribeToEvent')
+	def subscribeToEvent(self, eventIFace, register):
+		settings = self._getSettings()
+		mtool = getToolByName(self, 'portal_membership')
+		m = mtool.getAuthenticatedMember()
+		mid = m.getId()
+		if not settings.has_key(mid) :
+			settings[mid] = PersistentMapping()
+		
+		memberSettings = settings[mid]
+		memberSettings[eventIFace] = register
+		
+	security.declareProtected(SubscribeNotification, 'myNotifications')
+	def myNotifications(self):
+		settings = self._getSettings()
+		mtool = getToolByName(self, 'portal_membership')
+		m = mtool.getAuthenticatedMember()
+		mid = m.getId()
+		mySettings = settings.get(mid, {})
+		
+		notifications = []
+		for event in EVENTS :
+			setting = event.copy()
+			setting['registered'] = mySettings.get(event['interface'], False)
+			notifications.append(setting)
+		
+		return notifications
+	
+	security.declarePublic('getManagedEvents')
+	def getManagedEvents(self):
+		return [e['interface'] for e in EVENTS]
+		
+		
+
+InitializeClass(EmailNoticationSettings)
\ No newline at end of file
diff --git a/File.py b/File.py
new file mode 100755
index 0000000..11bdafa
--- /dev/null
+++ b/File.py
@@ -0,0 +1,180 @@
+# -*- coding: utf-8 -*-
+#######################################################################################
+#   Plinn - http://plinn.org                                                          #
+#   Copyright (C) 2005-2007  Benoît PIN <benoit.pin@ensmp.fr>                         #
+#                                                                                     #
+#   This program is free software; you can redistribute it and/or                     #
+#   modify it under the terms of the GNU General Public License                       #
+#   as published by the Free Software Foundation; either version 2                    #
+#   of the License, or (at your option) any later version.                            #
+#                                                                                     #
+#   This program is distributed in the hope that it will be useful,                   #
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of                    #
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                     #
+#   GNU General Public License for more details.                                      #
+#                                                                                     #
+#   You should have received a copy of the GNU General Public License                 #
+#   along with this program; if not, write to the Free Software                       #
+#   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.   #
+#######################################################################################
+""" This module implements a portal-managed File class that's inherits of CMFDefault
+	File. If exists, portal_transforms is called to extract text content, and publish
+	attachments.
+
+$Id: File.py 1261 2008-01-07 01:34:23Z pin $
+$URL: http://svn.cri.ensmp.fr/svn/Plinn/branches/CMF-2.1/File.py $
+"""
+
+from Globals import InitializeClass
+from AccessControl import ClassSecurityInfo
+import OFS
+from zope.component.factory import Factory
+
+from Products.CMFDefault.File import File as BaseFile
+from Products.CMFCore.permissions import View, ModifyPortalContent
+from Products.CMFCore.utils import getToolByName
+
+class File(BaseFile) :
+	""" file class with portal_transforms support """
+	
+	security = ClassSecurityInfo()
+	
+	_properties = BaseFile._properties + ({'id':'orig_name', 'type':'string', 'mode':'w', 'label':"Original Name"},)
+	orig_name = ''
+
+
+	def __getattr__(self, name) :
+		try : return BaseFile.__getattr__(self, name)
+		except :
+			selfAttrs = self.__dict__
+			if selfAttrs.has_key('_v_transform_cache') :
+				cache = selfAttrs['_v_transform_cache']
+				cacheTuple = cache.get('text_html', None) # (time, value)
+				if cacheTuple :
+					cacheData = cacheTuple[1]
+				
+				subObDict = cacheData.getSubObjects()
+				if subObDict.has_key(name) :
+					fileOb = OFS.Image.File(name, name, subObDict[name])
+					return fileOb
+				
+			raise AttributeError, name
+	
+	security.declareProtected(ModifyPortalContent, 'edit')
+	def edit(self, precondition='', file=''):
+		orig_name = OFS.Image.cookId('', '', file)[0]
+		if orig_name :
+			self.orig_name = orig_name
+		BaseFile.edit(self, precondition=precondition, file=file)
+		if hasattr(self, '_v_transform_cache') :
+			del self._v_transform_cache
+	
+	
+	security.declareProtected(View, 'SearchableText')
+	def SearchableText(self) :
+		""" Return full text"""
+		baseSearchableText = BaseFile.SearchableText(self)
+		transformTool = getToolByName(self, 'portal_transforms', default=None)
+		if transformTool is None :
+			return baseSearchableText
+		else :
+			datastream_text =  transformTool.convertTo('text/plain',
+														str(self.data),
+														mimetype = self.content_type
+														)
+			full_text = ''
+			if datastream_text is not None :
+				full_text = datastream_text.getData()
+			
+			return baseSearchableText + full_text
+			
+	security.declareProtected(View, 'preview')
+	def preview(self) :
+		"""Return HTML preview if it's possible or empty string """
+		transformTool = getToolByName(self, 'portal_transforms', default = None)
+		if transformTool is None :
+			return ''
+		else :
+			filename = self.getId().replace(' ', '_')
+			datastream = transformTool.convertTo('text/html',
+												str(self.data),
+												object=self,
+												mimetype = self.content_type,
+												filename = filename)
+
+			if datastream is not None : return datastream.getData()
+			else : return ''
+
+	security.declareProtected(View, 'download')
+	def download(self, REQUEST, RESPONSE):
+		"""Download this item.
+		
+		Calls OFS.Image.File.index_html to perform the actual transfer after
+		first setting Content-Disposition to suggest a filename.
+		
+		This method is deprecated, use the URL of this object itself. Because
+		the default view of a File object is to download, rather than view,
+		this method is obsolete. Also note that certain browsers do not deal
+		well with a Content-Disposition header.
+
+		"""
+
+		RESPONSE.setHeader('Content-Disposition',
+						   'attachment; filename=%s' % (self.orig_name or self.getId()))
+		return OFS.Image.File.index_html(self, REQUEST, RESPONSE)
+	
+	security.declarePublic('getIcon')
+	def getIcon(self, relative_to_portal=0):
+		""" return icon corresponding to mime-type
+		"""
+		regTool = getToolByName(self, 'mimetypes_registry', default=None)
+		if regTool :
+			mime = regTool(str(self.data), mimetype=self.content_type)[2]
+			return mime.icon_path
+		else :
+			return BaseFile.getIcon(self, relative_to_portal=relative_to_portal)
+
+
+InitializeClass(File)
+FileFactory = Factory(File)
+
+
+def addFile( dispatcher
+			 , id
+			 , title=''
+			 , file=''
+			 , content_type=''
+			 , precondition=''
+			 , subject=()
+			 , description=''
+			 , contributors=()
+			 , effective_date=None
+			 , expiration_date=None
+			 , format='text/html'
+			 , language=''
+			 , rights=''
+			 ):
+	"""
+	Add a File
+	"""
+
+	# cookId sets the id and title if they are not explicity specified
+	id, title = OFS.Image.cookId(id, title, file)
+
+	container = dispatcher.Destination()
+
+	# Instantiate the object and set its description.
+	fobj = File( id, title=title, file='', content_type=content_type,
+				 precondition=precondition, subject=subject, description=description,
+				 contributors=contributors, effective_date=effective_date,
+				 expiration_date=expiration_date, format=format,
+				 language=language, rights=rights
+				  )
+	
+	# Add the File instance to self
+	container._setObject(id, fobj)
+
+	# 'Upload' the file.  This is done now rather than in the
+	# constructor because the object is now in the ZODB and
+	# can span ZODB objects.
+	container._getOb(id).manage_upload(file)
\ No newline at end of file
diff --git a/Folder.py b/Folder.py
new file mode 100644
index 0000000..9cd4d8b
--- /dev/null
+++ b/Folder.py
@@ -0,0 +1,431 @@
+# -*- coding: utf-8 -*-
+#######################################################################################
+#   Plinn - http://plinn.org                                                          #
+#   Copyright (C) 2005-2007  Benoît PIN <benoit.pin@ensmp.fr>                         #
+#                                                                                     #
+#   This program is free software; you can redistribute it and/or                     #
+#   modify it under the terms of the GNU General Public License                       #
+#   as published by the Free Software Foundation; either version 2                    #
+#   of the License, or (at your option) any later version.                            #
+#                                                                                     #
+#   This program is distributed in the hope that it will be useful,                   #
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of                    #
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                     #
+#   GNU General Public License for more details.                                      #
+#                                                                                     #
+#   You should have received a copy of the GNU General Public License                 #
+#   along with this program; if not, write to the Free Software                       #
+#   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.   #
+#######################################################################################
+""" Plinn portal folder implementation
+
+$Id: Folder.py 1459 2009-02-02 00:57:24Z pin $
+$URL: http://svn.cri.ensmp.fr/svn/Plinn/branches/CMF-2.1/Folder.py $
+"""
+
+from OFS.CopySupport import CopyError, eNoData, _cb_decode, eInvalid, eNotFound,\
+							eNotSupported, sanity_check, cookie_path
+from App.Dialogs import MessageDialog
+import sys
+import warnings
+from cgi import escape
+from OFS import Moniker
+from ZODB.POSException import ConflictError
+import OFS.subscribers
+from zope.event import notify
+from zope.lifecycleevent import ObjectCopiedEvent
+from zope.app.container.contained import ObjectMovedEvent
+from zope.app.container.contained import notifyContainerModified
+from OFS.event import ObjectClonedEvent
+from OFS.event import ObjectWillBeMovedEvent
+from zope.component.factory import Factory
+from Acquisition import aq_base, aq_inner, aq_parent
+
+from types import StringType
+from Products.CMFCore.permissions import ListFolderContents, View, ManageProperties, AddPortalFolders, AddPortalContent, ManagePortal
+from permissions import DeletePortalContents, DeleteObjects, DeleteOwnedObjects, SetLocalRoles, CheckMemberPermission
+from Products.CMFCore.utils import _checkPermission, getToolByName
+from Products.CMFCore.CMFCatalogAware import CMFCatalogAware
+from Products.CMFCore.PortalFolder import PortalFolder, ContentFilter
+from Products.CMFDefault.DublinCore import DefaultDublinCoreImpl
+
+from zope.interface import implements
+from Products.CMFCore.interfaces import IContentish
+
+from utils import _checkMemberPermission
+from Globals import InitializeClass
+from AccessControl import ClassSecurityInfo
+
+
+class PlinnFolder(CMFCatalogAware, PortalFolder, DefaultDublinCoreImpl) :
+	""" Plinn Folder """
+	
+	implements(IContentish)
+
+	security = ClassSecurityInfo()
+	
+	manage_options = PortalFolder.manage_options
+
+	## change security for inherited methods
+	security.declareProtected(AddPortalContent, 'manage_pasteObjects')
+
+	def __init__( self, id, title='' ) :
+		PortalFolder.__init__(self, id)
+		DefaultDublinCoreImpl.__init__(self, title = title)
+		
+	security.declarePublic('allowedContentTypes')
+	def allowedContentTypes(self):
+		"""
+		List type info objects for types which can be added in this folder.
+		Types can be filtered using the localContentTypes attribute.
+		"""
+		allowedTypes = PortalFolder.allowedContentTypes(self)
+		if hasattr(self, 'localContentTypes'):
+			allowedTypes = [t for t in allowedTypes if t.title in self.localContentTypes]
+		return allowedTypes
+
+	security.declareProtected(View, 'objectIdCanBeDeleted')
+	def objectIdCanBeDeleted(self, id) :
+		""" Check permissions and ownership and return True
+			if current user can delete object id.
+		"""
+		if _checkPermission(DeleteObjects, self) : # std zope perm
+			return True
+
+		elif _checkPermission(DeletePortalContents, self):
+			mtool = getToolByName(self, 'portal_membership')
+			authMember = mtool.getAuthenticatedMember()
+			ob = getattr(self, id)
+			if authMember.allowed(ob, object_roles=['Owner'] ) and \
+			   _checkPermission(DeleteOwnedObjects, ob) : return True
+
+		else :
+			return False
+
+
+	security.declareProtected(DeletePortalContents, 'manage_delObjects')
+	def manage_delObjects(self, ids=[], REQUEST=None):
+		"""Delete a subordinate object.
+		   A member can delete his owned contents (if he has the 'Delete Portal Contents' permission)
+		   without 'Delete objects' permission in this folder.
+		   Return skipped object ids.
+		"""
+		notOwned = []
+		if _checkPermission(DeleteObjects, self) : # std zope perm
+			PortalFolder.manage_delObjects(self, ids=ids, REQUEST=REQUEST)
+		else :
+			mtool = getToolByName(self, 'portal_membership')
+			authMember = mtool.getAuthenticatedMember()
+			owned = []
+			if type(ids) == StringType :
+				ids = [ids]
+			for id in ids :
+				ob = self._getOb(id)
+				if authMember.allowed(ob, object_roles=['Owner'] ) and \
+				   _checkPermission(DeleteOwnedObjects, ob) : owned.append(id)
+				else : notOwned.append(id)
+			if owned :
+				PortalFolder.manage_delObjects(self, ids=owned, REQUEST=REQUEST)
+
+		if REQUEST is not None:
+			return self.manage_main(
+				self, REQUEST,
+				manage_tabs_message='Object(s) deleted.',
+				update_menu=1)
+		return notOwned
+				
+
+	security.declareProtected(ListFolderContents, 'listFolderContents')
+	def listFolderContents( self, contentFilter=None ):
+		""" List viewable contentish and folderish sub-objects.
+		"""
+		items = self.contentItems(filter=contentFilter)
+		l = []
+		for id, obj in items:
+			if _checkPermission(View, obj) :
+				l.append(obj)
+
+		return l
+
+
+	security.declareProtected(ListFolderContents, 'listNearestFolderContents')
+	def listNearestFolderContents(self, contentFilter=None, userid=None, sorted=False) :
+		""" Return folder contents and traverse
+		recursively unaccessfull sub folders to find
+		accessible contents.
+		"""
+
+		filt = {}
+		if contentFilter :
+			filt = contentFilter.copy()
+		ctool = getToolByName(self, 'portal_catalog')
+		mtool = getToolByName(self, 'portal_membership')
+
+		if userid and _checkPermission(CheckMemberPermission, getToolByName(self, 'portal_url').getPortalObject()) :
+			checkFunc = lambda perm, ob : _checkMemberPermission(userid, View, ob)
+			filt['allowedRolesAndUsers'] = ctool._listAllowedRolesAndUsers( mtool.getMemberById(userid) )
+		else :
+			checkFunc = _checkPermission
+			filt['allowedRolesAndUsers'] = ctool._listAllowedRolesAndUsers( mtool.getAuthenticatedMember() )
+		
+		
+		# copy from CMFCore.PortalFolder.PortalFolder._filteredItems
+		pt = filt.get('portal_type', [])
+		if type(pt) is type(''):
+			pt = [pt]
+		types_tool = getToolByName(self, 'portal_types')
+		allowed_types = types_tool.listContentTypes()
+		if not pt:
+			pt = allowed_types
+		else:
+			pt = [t for t in pt if t in allowed_types]
+		if not pt:
+			# After filtering, no types remain, so nothing should be
+			# returned.
+			return []
+		filt['portal_type'] = pt
+		#---
+
+		query = ContentFilter(**filt)
+		nearestObjects = []
+		
+		for o in self.objectValues() :
+			if query(o) :
+				if checkFunc(View, o):
+					nearestObjects.append(o)
+				elif getattr(o.aq_self,'isAnObjectManager', False):
+					nearestObjects.extend(_getDeepObjects(self, ctool, o, filter=filt))
+				
+		if sorted and len(nearestObjects) > 0 :
+			key, reverse = self.getDefaultSorting()
+			if key != 'position' :
+				indexCallable = callable(getattr(nearestObjects[0], key))
+				if indexCallable :
+					sortfunc = lambda a, b : cmp(getattr(a, key)(), getattr(b, key)())
+				else :                       
+					sortfunc = lambda a, b : cmp(getattr(a, key), getattr(b, key))
+				nearestObjects.sort(cmp=sortfunc, reverse=reverse)
+		
+		return nearestObjects
+	
+	security.declareProtected(ListFolderContents, 'listCatalogedContents')
+	def listCatalogedContents(self, contentFilter={}):
+		""" query catalog and returns brains of contents.
+			Requires ExtendedPathIndex
+		"""
+		ctool = getToolByName(self, 'portal_catalog')
+		contentFilter['path'] = {'query':'/'.join(self.getPhysicalPath()),
+		 						'depth':1}
+		return ctool(sort_on='position', **contentFilter)
+	
+
+	security.declarePublic('synContentValues')
+	def synContentValues(self):
+		# value for syndication
+		return self.listNearestFolderContents()
+
+	security.declareProtected(View, 'SearchableText')
+	def SearchableText(self) :
+		""" for full text indexation
+		"""
+		return '%s %s' % (self.title, self.description)
+
+	security.declareProtected(AddPortalFolders, 'manage_addPlinnFolder')
+	def manage_addPlinnFolder(self, id, title='', REQUEST=None):
+		"""Add a new PortalFolder object with id *id*.
+		"""
+		ob=PlinnFolder(id, title)
+		# from CMFCore.PortalFolder.PortalFolder :-)
+		self._setObject(id, ob)
+		if REQUEST is not None:
+			return self.folder_contents( # XXX: ick!
+				self, REQUEST, portal_status_message="Folder added")
+
+	
+	## overload to maintain ownership if authenticated user has 'Manage portal' permission
+	def manage_pasteObjects(self, cb_copy_data=None, REQUEST=None):
+		"""Paste previously copied objects into the current object.
+
+		If calling manage_pasteObjects from python code, pass the result of a
+		previous call to manage_cutObjects or manage_copyObjects as the first
+		argument.
+
+		Also sends IObjectCopiedEvent and IObjectClonedEvent
+		or IObjectWillBeMovedEvent and IObjectMovedEvent.
+		"""
+		if cb_copy_data is not None:
+			cp = cb_copy_data
+		elif REQUEST is not None and REQUEST.has_key('__cp'):
+			cp = REQUEST['__cp']
+		else:
+			cp = None
+		if cp is None:
+			raise CopyError, eNoData
+
+		try:
+			op, mdatas = _cb_decode(cp)
+		except:
+			raise CopyError, eInvalid
+
+		oblist = []
+		app = self.getPhysicalRoot()
+		for mdata in mdatas:
+			m = Moniker.loadMoniker(mdata)
+			try:
+				ob = m.bind(app)
+			except ConflictError:
+				raise
+			except:
+				raise CopyError, eNotFound
+			self._verifyObjectPaste(ob, validate_src=op+1)
+			oblist.append(ob)
+
+		result = []
+		if op == 0:
+			# Copy operation
+			mtool = getToolByName(self, 'portal_membership')
+			utool = getToolByName(self, 'portal_url')
+			portal = utool.getPortalObject()
+			userIsPortalManager = mtool.checkPermission(ManagePortal, portal)
+
+			for ob in oblist:
+				orig_id = ob.getId()
+				if not ob.cb_isCopyable():
+					raise CopyError, eNotSupported % escape(orig_id)
+
+				try:
+					ob._notifyOfCopyTo(self, op=0)
+				except ConflictError:
+					raise
+				except:
+					raise CopyError, MessageDialog(
+						title="Copy Error",
+						message=sys.exc_info()[1],
+						action='manage_main')
+
+				id = self._get_id(orig_id)
+				result.append({'id': orig_id, 'new_id': id})
+
+				orig_ob = ob
+				ob = ob._getCopy(self)
+				ob._setId(id)
+				notify(ObjectCopiedEvent(ob, orig_ob))
+				
+				if not userIsPortalManager :
+					self._setObject(id, ob, suppress_events=True)
+				else :
+					self._setObject(id, ob, suppress_events=True, set_owner=0)
+				ob = self._getOb(id)
+				ob.wl_clearLocks()
+
+				ob._postCopy(self, op=0)
+
+				OFS.subscribers.compatibilityCall('manage_afterClone', ob, ob)
+
+				notify(ObjectClonedEvent(ob))
+
+			if REQUEST is not None:
+				return self.manage_main(self, REQUEST, update_menu=1,
+										cb_dataValid=1)
+
+		elif op == 1:
+			# Move operation
+			for ob in oblist:
+				orig_id = ob.getId()
+				if not ob.cb_isMoveable():
+					raise CopyError, eNotSupported % escape(orig_id)
+
+				try:
+					ob._notifyOfCopyTo(self, op=1)
+				except ConflictError:
+					raise
+				except:
+					raise CopyError, MessageDialog(
+						title="Move Error",
+						message=sys.exc_info()[1],
+						action='manage_main')
+
+				if not sanity_check(self, ob):
+					raise CopyError, "This object cannot be pasted into itself"
+
+				orig_container = aq_parent(aq_inner(ob))
+				if aq_base(orig_container) is aq_base(self):
+					id = orig_id
+				else:
+					id = self._get_id(orig_id)
+				result.append({'id': orig_id, 'new_id': id})
+
+				notify(ObjectWillBeMovedEvent(ob, orig_container, orig_id,
+											  self, id))
+
+				# try to make ownership explicit so that it gets carried
+				# along to the new location if needed.
+				ob.manage_changeOwnershipType(explicit=1)
+
+				try:
+					orig_container._delObject(orig_id, suppress_events=True)
+				except TypeError:
+					orig_container._delObject(orig_id)
+					warnings.warn(
+						"%s._delObject without suppress_events is discouraged."
+						% orig_container.__class__.__name__,
+						DeprecationWarning)
+				ob = aq_base(ob)
+				ob._setId(id)
+
+				try:
+					self._setObject(id, ob, set_owner=0, suppress_events=True)
+				except TypeError:
+					self._setObject(id, ob, set_owner=0)
+					warnings.warn(
+						"%s._setObject without suppress_events is discouraged."
+						% self.__class__.__name__, DeprecationWarning)
+				ob = self._getOb(id)
+
+				notify(ObjectMovedEvent(ob, orig_container, orig_id, self, id))
+				notifyContainerModified(orig_container)
+				if aq_base(orig_container) is not aq_base(self):
+					notifyContainerModified(self)
+
+				ob._postCopy(self, op=1)
+				# try to make ownership implicit if possible
+				ob.manage_changeOwnershipType(explicit=0)
+
+			if REQUEST is not None:
+				REQUEST['RESPONSE'].setCookie('__cp', 'deleted',
+									path='%s' % cookie_path(REQUEST),
+									expires='Wed, 31-Dec-97 23:59:59 GMT')
+				REQUEST['__cp'] = None
+				return self.manage_main(self, REQUEST, update_menu=1,
+										cb_dataValid=0)
+
+		return result
+
+		
+InitializeClass(PlinnFolder)
+PlinnFolderFactory = Factory(PlinnFolder)
+
+def _getDeepObjects(self, ctool, o, filter={}):
+	res = ctool.unrestrictedSearchResults(path = '/'.join(o.getPhysicalPath()), **filter)
+	
+	if not res :
+		return []
+	else :
+		deepObjects = []
+		res = list(res)
+		res.sort(lambda a, b: cmp(a.getPath(), b.getPath()))
+		previousPath = res[0].getPath()
+
+		deepObjects.append(res[0].getObject())
+		for b in res[1:] :
+			currentPath = b.getPath()
+			if currentPath.startswith(previousPath) and len(currentPath) > len(previousPath):
+				continue
+			else :
+				deepObjects.append(b.getObject())
+				previousPath = currentPath
+
+		return deepObjects
+
+
+manage_addPlinnFolder = PlinnFolder.manage_addPlinnFolder.im_func
diff --git a/GroupDataTool.py b/GroupDataTool.py
new file mode 100755
index 0000000..93db7b5
--- /dev/null
+++ b/GroupDataTool.py
@@ -0,0 +1,202 @@
+# -*- coding: utf-8 -*-
+#######################################################################################
+#   Plinn - http://plinn.org                                                          #
+#   Copyright (C) 2005-2007  Benoît PIN <benoit.pin@ensmp.fr>                         #
+#                                                                                     #
+#   This program is free software; you can redistribute it and/or                     #
+#   modify it under the terms of the GNU General Public License                       #
+#   as published by the Free Software Foundation; either version 2                    #
+#   of the License, or (at your option) any later version.                            #
+#                                                                                     #
+#   This program is distributed in the hope that it will be useful,                   #
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of                    #
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                     #
+#   GNU General Public License for more details.                                      #
+#                                                                                     #
+#   You should have received a copy of the GNU General Public License                 #
+#   along with this program; if not, write to the Free Software                       #
+#   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.   #
+#######################################################################################
+"""
+$Id: GroupDataTool.py 1261 2008-01-07 01:34:23Z pin $
+$URL: http://svn.cri.ensmp.fr/svn/Plinn/branches/CMF-2.1/GroupDataTool.py $
+"""
+
+from Globals import InitializeClass
+from AccessControl import ClassSecurityInfo
+from Acquisition import aq_inner, aq_parent, aq_base
+
+from Products.GroupUserFolder.GroupDataTool import GroupDataTool as BaseTool
+from Products.GroupUserFolder.GroupDataTool import GroupData as BaseGroupData
+from Products.GroupUserFolder.GroupsToolPermissions import ManageGroups, ViewGroups
+from Products.CMFCore.utils import getToolByName
+from ZPublisher.Converters import type_converters
+
+from GroupsTool import CACHE_ROOT_GROUPS, CACHE_GROUPS_OF_GROUP, CACHE_USER_NAMES_OF_GROUP
+
+try:
+	from Products.CMFCore.MemberDataTool import CleanupTemp
+	_have_cleanup_temp = 1
+except:
+	_have_cleanup_temp = None
+
+
+class GroupDataTool(BaseTool) :
+	""" Group Data Tool """
+	
+	meta_type = 'Plinn Group Data Tool'
+	
+	security = ClassSecurityInfo()
+	
+	security.declarePrivate('wrapGroup')
+	def wrapGroup(self, g):
+		"""Returns an object implementing the GroupData interface"""
+		id = g.getId()
+		members = self._members
+		if not members.has_key(id):
+			# Get a temporary member that might be
+			# registered later via registerMemberData().
+			temps = self._v_temps
+			if temps is not None and temps.has_key(id):
+				portal_group = temps[id]
+			else:
+				base = aq_base(self)
+				portal_group = GroupData(base, id)
+				if temps is None:
+					self._v_temps = {id:portal_group}
+					if hasattr(self, 'REQUEST'):
+						# No REQUEST during tests.
+						# XXX jcc => CleanupTemp doesn't seem to work on Plone 1.0.3.
+						# Have to find a way to pass around...
+						if _have_cleanup_temp:
+							self.REQUEST._hold(CleanupTemp(self))
+				else:
+					temps[id] = portal_group
+		else:
+			portal_group = members[id]
+		# Return a wrapper with self as containment and
+		# the user as context.
+		return portal_group.__of__(self).__of__(g)
+
+class GroupData(BaseGroupData) :
+	"""	 """
+	
+	security = ClassSecurityInfo()
+	
+	security.declareProtected(ViewGroups, 'getGroups')
+	security.declareProtected(ManageGroups, 'setGroupProperties')
+	def setGroupProperties(self, mapping):
+		'''Sets the properties of the group.
+		'''
+		# Sets the properties given in the MemberDataTool.
+		tool = self.getTool()
+		self = self.aq_inner.aq_self
+		for id in tool.propertyIds():
+			if mapping.has_key(id):
+				if not self.__class__.__dict__.has_key(id):
+					value = mapping[id]
+					if type(value)==type(''):
+						proptype = tool.getPropertyType(id) or 'string'
+						if type_converters.has_key(proptype):
+							value = type_converters[proptype](value)
+					setattr(self, id, value)
+		# Hopefully we can later make notifyModified() implicit.
+		self.notifyModified()
+	
+	security.declareProtected(ManageGroups, 'removeMember')
+	def removeMember(self, id):
+		""" Remove the member with the provided id from the group """
+		
+		user = self.acl_users.getUser(id)
+		
+		groups = list(user.getGroups(no_recurse=1))
+		prefix = self.acl_users.getGroupPrefix()
+		try : groups.remove(prefix + self.getGroupName())
+		except ValueError : return # the user (id) is an implicit member of this group (self)
+		
+		roles_no_recurse = tuple(filter(lambda x: x not in ('Authenticated', 'Shared'), user.getUserRoles()))
+		
+		if user.isGroup() :
+			self.acl_users._doChangeGroup(id, roles_no_recurse, groups = groups)
+		else :
+			self.acl_users._doChangeUser(id,
+										 None,
+										 roles_no_recurse,
+										 user.getDomains(),
+										 groups=tuple(groups))
+		
+		gtool = getToolByName(self, "portal_groups")
+		if gtool.ZCacheable_isCachingEnabled() :
+			# humm... there's a bug on Cacheable / RamCacheManger
+			#gtool.ZCacheable_invalidate(view_name=CACHE_USER_NAMES_OF_GROUP)
+			gtool.ZCacheable_set(None, view_name=CACHE_USER_NAMES_OF_GROUP, keywords={'no_recurse' : 0})
+			gtool.ZCacheable_set(None, view_name=CACHE_USER_NAMES_OF_GROUP, keywords={'no_recurse' : 1})
+
+	
+
+	security.declareProtected(ManageGroups, 'addMember')
+	def addMember(self, id):
+		""" Add the existing member with the given id to the group"""
+		aclu = self.aq_inner.acl_users
+		user = aclu.getUser(id)
+		prefix = aclu.getGroupPrefix()
+		
+		userRoles = tuple(filter(lambda x: x not in ('Authenticated', 'Shared'), user.getUserRoles()))
+		groups = user.getGroups(no_recurse = 1)
+		groups += (self.id, )
+		
+		aclu.changeUser(user.id, groups = groups, roles = userRoles)
+		gtool = getToolByName(self, 'portal_groups')
+		if gtool.ZCacheable_isCachingEnabled() :
+			# humm... there's a bug on Cacheable / RamCacheManger
+			#gtool.ZCacheable_invalidate(view_name=CACHE_USER_NAMES_OF_GROUP)
+			gtool.ZCacheable_set(None, view_name=CACHE_USER_NAMES_OF_GROUP, keywords={'no_recurse' : 0})
+			gtool.ZCacheable_set(None, view_name=CACHE_USER_NAMES_OF_GROUP, keywords={'no_recurse' : 1})
+
+
+
+	security.declareProtected(ManageGroups, 'removeGroup')
+	def removeGroup(self, id) :
+		""" Remove the existing group with the given id to the group"""
+		aclu = self.aq_inner.acl_users
+		groupPrefix = aclu.getGroupPrefix()
+		group = aclu.getGroup(id)
+		
+		# get group roles
+		groupRoles = tuple(filter(lambda x: x not in ('Authenticated', 'Shared'), group.getUserRoles()))
+		superGroupIds = list(group.getGroups(no_recurse = 1))
+		superGroupIds.remove(self.id)
+		
+		aclu.changeUser(groupPrefix + group.id, groups = superGroupIds, roles = groupRoles)
+
+		gtool = getToolByName(self, "portal_groups")
+		if gtool.ZCacheable_isCachingEnabled() :
+			gtool.ZCacheable_set(None, view_name=CACHE_GROUPS_OF_GROUP)
+			if not superGroupIds :
+				gtool.ZCacheable_set(None, view_name=CACHE_ROOT_GROUPS)
+
+
+	security.declareProtected(ManageGroups, 'addGroup')
+	def addGroup(self, id) :
+		""" Add the existing group with the given id to the group"""
+		aclu = self.aq_inner.acl_users
+		groupPrefix = aclu.getGroupPrefix()
+		group = aclu.getGroup(id)
+		
+		# get group roles
+		groupRoles = tuple(filter(lambda x: x not in ('Authenticated', 'Shared'), group.getUserRoles()))
+		superGroupIds = list(group.getGroups(no_recurse = 1))
+		newSuperGroupIds = superGroupIds[:]
+		newSuperGroupIds.append(self.id)
+		
+		aclu.changeUser(groupPrefix + group.id, groups = newSuperGroupIds, roles = groupRoles)
+		
+		gtool = getToolByName(self, "portal_groups")
+		if gtool.ZCacheable_isCachingEnabled() :
+			gtool.ZCacheable_set(None, view_name=CACHE_GROUPS_OF_GROUP)
+			if not superGroupIds :
+				gtool.ZCacheable_set(None, view_name=CACHE_ROOT_GROUPS)
+				
+
+
+InitializeClass(GroupDataTool)
diff --git a/GroupsTool.py b/GroupsTool.py
new file mode 100755
index 0000000..a3ca8c3
--- /dev/null
+++ b/GroupsTool.py
@@ -0,0 +1,281 @@
+# -*- coding: utf-8 -*-
+#######################################################################################
+#   Plinn - http://plinn.org                                                          #
+#   Copyright (C) 2005-2007  Benoît PIN <benoit.pin@ensmp.fr>                         #
+#                                                                                     #
+#   This program is free software; you can redistribute it and/or                     #
+#   modify it under the terms of the GNU General Public License                       #
+#   as published by the Free Software Foundation; either version 2                    #
+#   of the License, or (at your option) any later version.                            #
+#                                                                                     #
+#   This program is distributed in the hope that it will be useful,                   #
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of                    #
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                     #
+#   GNU General Public License for more details.                                      #
+#                                                                                     #
+#   You should have received a copy of the GNU General Public License                 #
+#   along with this program; if not, write to the Free Software                       #
+#   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.   #
+#######################################################################################
+"""
+$Id: GroupsTool.py 1332 2008-07-31 12:09:28Z pin $
+$URL: http://svn.cri.ensmp.fr/svn/Plinn/branches/CMF-2.1/GroupsTool.py $
+"""
+
+from Globals import InitializeClass
+from AccessControl import ClassSecurityInfo
+from Products.CMFCore.permissions import View, AccessContentsInformation
+from Products.CMFCore.utils import getToolByName
+from Products.GroupUserFolder.GroupsToolPermissions import ViewGroups, AddGroups, DeleteGroups
+from Products.GroupUserFolder.GroupsTool import GroupsTool as BaseTool
+from sets import Set
+from OFS.SimpleItem import SimpleItem
+from OFS.Cache import Cacheable
+
+#Cache view names
+CACHE_ROOT_GROUPS = 'getRootGroups'
+CACHE_GROUPS_OF_GROUP = 'getGroupsOfGroup'
+CACHE_USER_NAMES_OF_GROUP= 'getUserNamesOfGroup'
+
+
+class GroupsTool(BaseTool, Cacheable) :
+	""" Groups tool that behave like Membership tool """
+	
+	meta_type = 'Plinn Groups Tool'
+	
+	security = ClassSecurityInfo()
+	
+	manage_options = BaseTool.manage_options + Cacheable.manage_options
+	
+	security.declareProtected(AddGroups, 'getGroupWorkspacesCreationFlag')
+
+
+	def _getUserNamesOfGroup(self, prefixed_group, no_recurse = 1) :
+		aclu = self.aq_inner.acl_users
+		allUsers = aclu.getPureUsers()
+		usersDict = {}
+		
+		# make a dictionary of users indexed by group
+		for user in allUsers :
+			for group in user.getGroups(no_recurse = no_recurse) :
+				if not usersDict.has_key(group) :
+					usersDict[group] = [user.id, ]
+				else :
+					usersDict[group].append(user.id)
+		return usersDict
+
+
+
+	security.declareProtected(ViewGroups, 'getUserNamesOfGroup')
+	def getUserNamesOfGroup(self, prefixed_group, no_recurse = 1) :
+		""" Return users of groups"""
+		
+		if self.ZCacheable_isCachingEnabled() :
+			usersDict = self.ZCacheable_get(view_name=CACHE_USER_NAMES_OF_GROUP,
+											keywords={'no_recurse' : no_recurse},
+											default=None)
+			if usersDict is None :
+				# load cache
+				usersDict = self._getUserNamesOfGroup(prefixed_group, no_recurse = no_recurse)
+				self.ZCacheable_set(usersDict,
+									view_name=CACHE_USER_NAMES_OF_GROUP,
+									keywords={'no_recurse' : no_recurse})
+		else :
+			usersDict = self._getUserNamesOfGroup(prefixed_group, no_recurse = no_recurse)
+
+		return usersDict.get(prefixed_group, [])
+		
+
+	def _getGroupsOfGroup(self, prefixed_group) :
+		aclu = self.aq_inner.acl_users
+		
+		allGroups = aclu.getGroups()
+		groupsDict = {}
+		
+		# make a dictionary of users indexed by group
+		for group in allGroups :
+			for superGroup in group.getGroups(no_recurse=1) :
+				if not groupsDict.has_key(superGroup) :
+					groupsDict[superGroup] = [group.id, ]
+				else :
+					groupsDict[superGroup].append(group.id)
+
+		return groupsDict
+	
+
+	
+	security.declareProtected(ViewGroups, 'getGroupsOfGroup')
+	def getGroupsOfGroup(self, prefixed_group) :
+		""" Return groups of group """
+		if self.ZCacheable_isCachingEnabled() :
+			groupsDict = self.ZCacheable_get(view_name=CACHE_GROUPS_OF_GROUP, default=None)
+			
+			if groupsDict is None :
+				# load cache
+				groupsDict = self._getGroupsOfGroup(prefixed_group)
+				self.ZCacheable_set(groupsDict, view_name=CACHE_GROUPS_OF_GROUP)
+		else :
+			groupsDict = self._getGroupsOfGroup(prefixed_group)
+		
+		return groupsDict.get(prefixed_group, [])
+	
+	security.declareProtected(ViewGroups, 'getGroups')
+	def getGroups(self, groups) :
+		""" Return wrapped groups """
+		wGroups = [ self.getGroupById(group) for group in groups ]
+		wGroups = filter(None, wGroups)
+		
+		wGroups.sort(_sortGroup)
+		return wGroups
+	
+	security.declareProtected(ViewGroups, 'getOtherGroups')
+	def getOtherGroups(self, groups) :
+		""" Return other wrapped groups """
+		aclu = self.aq_inner.acl_users
+		prefix = aclu.getGroupPrefix()
+		allGroupIds = aclu.getGroupNames()
+
+		
+		prefixed = 0
+		wGroups = []
+		if groups :
+			if groups[0].startswith(prefix) :
+				prefixed = 1
+
+		
+			if prefixed :
+				prefixLength = len(prefix)
+				groups = [ group[prefixLength:] for group in groups ]
+	
+			for groupId in allGroupIds :
+				if groupId not in groups :
+					wGroups.append(self.getGroupById(groupId))
+		
+		else :
+			for groupId in allGroupIds :
+				wGroups.append(self.getGroupById(groupId))
+		
+		
+		wGroups.sort(_sortGroup)
+		return wGroups
+		
+	
+	def _getRootGroups(self) :
+		top_level_list = []
+		aclu = self.acl_users
+		allGroups = aclu.getGroups()
+		groupPrefix = aclu.getGroupPrefix()
+		
+		for group in allGroups :
+			if not group.getGroups(no_recurse = 1) :
+				top_level_list.append(groupPrefix+group.id)
+		return top_level_list
+
+	security.declareProtected(ViewGroups, 'getRootGroups')
+	def getRootGroups(self) :
+		""" return top level groups """
+		if self.ZCacheable_isCachingEnabled() :
+			rootGroups = self.ZCacheable_get(view_name=CACHE_ROOT_GROUPS, default=None)
+			
+			if rootGroups is None :
+				rootGroups = self._getRootGroups()
+				self.ZCacheable_set(rootGroups, view_name=CACHE_ROOT_GROUPS)
+		else :
+			rootGroups = self._getRootGroups()
+
+		return rootGroups
+		
+		
+	security.declareProtected(ViewGroups, 'getGroupsWithLocalRole')
+	def getGroupsWithLocalRole(self, object, role) :
+		""" Return Groups with local role """
+
+		aclu = self.aq_inner.acl_users
+		prefix = aclu.getGroupPrefix()
+		allGroupNames = aclu.getGroupNames()
+		usersAndGroupsWithLocalRole = object.users_with_local_role(role)
+		
+		return [ gn for gn in usersAndGroupsWithLocalRole if gn.startswith(prefix) ]
+
+	
+	security.declareProtected(AddGroups, 'addGroup')
+	def addGroup(self, groupName, **mapping):
+		""" Create a group, and a group workspace if the toggle is on,
+			with the supplied id, roles, and domains.
+		"""
+		self.acl_users.changeOrCreateGroups(new_groups = [groupName, ])
+			
+		group = self.getGroupById(groupName)
+		group.setGroupProperties(mapping)
+
+		if mapping.get('createArea', None) :
+			self.createGrouparea(self.acl_users.getGroupPrefix()+groupName)
+		
+		if self.ZCacheable_isCachingEnabled() :
+			self.ZCacheable_set(None, view_name=CACHE_ROOT_GROUPS)
+
+
+	security.declareProtected(AddGroups, 'createGrouparea')
+	def createGrouparea(self, id):
+		"""Create a space in the portal for the given group, much like member home
+		folders."""
+		
+		ttool = getToolByName(self, 'portal_types')
+		ti = ttool.getTypeInfo(self.getGroupWorkspaceContainerType())
+		
+		utool = getToolByName(self, 'portal_url')
+		portal = utool.getPortalObject()
+		workspaces = self.getGroupWorkspacesFolder()
+		if workspaces is None :
+			portalOwner = portal.getOwner()
+			aclu = self.aq_inner.acl_users
+			portalOwner = portalOwner.__of__(aclu)
+			workspaces = ti._constructInstance(portal,
+											   self.getGroupWorkspacesFolderId(),
+											   title=self.getGroupWorkspacesFolderTitle())
+			workspaces.manage_delLocalRoles(workspaces.users_with_local_role('Owner'))
+			workspaces.changeOwnership(portalOwner)
+			ti._finishConstruction(workspaces)
+
+
+		
+		# construct without security check
+		group = self.getGroupById(id)
+		area = ti._constructInstance(workspaces, id, title=group.getProperty('title', ''))
+		
+		area.manage_delLocalRoles(area.users_with_local_role('Owner'))
+		self.setGroupOwnership(group, area)
+		
+		ti._finishConstruction(area)
+
+
+	security.declareProtected(DeleteGroups, 'removeGroups')
+	def removeGroups(self, ids, keep_workspaces=0) :
+		""" remove the groups and invalidate cache """
+		BaseTool.removeGroups(self, ids, keep_workspaces=keep_workspaces)
+		if self.ZCacheable_isCachingEnabled() :
+			self.ZCacheable_set(None, view_name=CACHE_ROOT_GROUPS)
+			self.ZCacheable_set(None, view_name=CACHE_GROUPS_OF_GROUP)
+	
+	security.declareProtected(ViewGroups, 'getExplAndImplGroupsByUserId')
+	def getExplAndImplGroupsByUserId(self, userid) :
+		""" Return a dictionary with implicit and explicit wrapped groups """
+		aclu = self.aq_inner.acl_users
+		user = aclu.getUser(userid)
+		if user :
+			expl = Set(self.aq_inner.acl_users.getUser(userid).getGroups(no_recurse = 1) or [])
+			implDbl = Set(self.aq_inner.acl_users.getUser(userid).getGroups(no_recurse = 0) or [])
+			impl = implDbl.difference(expl)
+		# wrap
+		expl = [self.getGroupById(gid) for gid in expl]
+		impl = [self.getGroupById(gid) for gid in impl]
+		expl.sort(_sortGroup)
+		impl.sort(_sortGroup)
+		return {'explicit' : expl,
+				'implicit' : impl}
+	
+InitializeClass(GroupsTool)
+
+	
+def _sortGroup(a, b) :
+	return cmp(a.id.lower(), b.id.lower())
diff --git a/HistoryAdapters.py b/HistoryAdapters.py
new file mode 100755
index 0000000..52d096f
--- /dev/null
+++ b/HistoryAdapters.py
@@ -0,0 +1,139 @@
+# -*- coding: utf-8 -*-
+#######################################################################################
+#   Plinn - http://plinn.org                                                          #
+#   Copyright (C) 2005-2009  Benoît PIN <benoit.pin@ensmp.fr>                         #
+#                                                                                     #
+#   This program is free software; you can redistribute it and/or                     #
+#   modify it under the terms of the GNU General Public License                       #
+#   as published by the Free Software Foundation; either version 2                    #
+#   of the License, or (at your option) any later version.                            #
+#                                                                                     #
+#   This program is distributed in the hope that it will be useful,                   #
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of                    #
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                     #
+#   GNU General Public License for more details.                                      #
+#                                                                                     #
+#   You should have received a copy of the GNU General Public License                 #
+#   along with this program; if not, write to the Free Software                       #
+#   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.   #
+#######################################################################################
+"""
+Adapters to plug specific contentish interfaces to historycal interface.
+
+$Id: HistoryAdapters.py 1516 2009-06-29 14:12:14Z pin $
+$URL: http://svn.cri.ensmp.fr/svn/Plinn/branches/CMF-2.1/HistoryAdapters.py $
+"""
+
+from Globals import InitializeClass
+from AccessControl import ClassSecurityInfo
+from Products.CMFCore.permissions import ModifyPortalContent
+from permissions import ViewHistory
+from difflib import SequenceMatcher
+from ContentHistory import ContentHistory
+from types import UnicodeType
+from htmlentitydefs import name2codepoint
+from cgi import escape
+import re
+
+rent = re.compile(r"&(?P<entName>[A-Za-z]+);")
+
+class DocumentHistory(ContentHistory) :
+
+	security = ClassSecurityInfo()
+	
+	security.declareProtected(ViewHistory, 'compare')
+	def compare(self, leftkey, rightkey):
+		leftRev, leftDate = self.getHistoricalRevisionByKey(leftkey)
+		rightRev, rightDate = self.getHistoricalRevisionByKey(rightkey)
+		
+		left = leftRev.EditableBody()
+		right = rightRev.EditableBody()
+		
+		infos = {'diff'			: html_ready_diff(left, right)
+				,'leftDate'		: leftDate
+				,'rightDate'	: rightDate
+				,'structure'	: False}
+		return infos
+	
+	security.declareProtected(ModifyPortalContent, 'restore')
+	def restore(self, key):
+		rev = self.getHistoricalRevisionByKey(key)[0]
+		self._content.edit(rev.Format(), rev.EditableBody())
+		
+
+InitializeClass(DocumentHistory)
+
+class FolderishHistory(ContentHistory) :
+	
+	security = ClassSecurityInfo()
+	
+	security.declareProtected(ViewHistory, 'compare')
+	def compare(self, leftkey, rightkey):
+		leftRev, leftDate = self.getHistoricalRevisionByKey(leftkey)
+		rightRev, rightDate = self.getHistoricalRevisionByKey(rightkey)
+		
+		leftIds = leftRev.objectIds()
+		leftTitleAndIds = []
+		for id in leftIds :
+			title = leftRev[id].Title()
+			if title != id :
+				leftTitleAndIds.append('%s (%s)' % (id, title))
+			else :
+				leftTitleAndIds.append('%s' % id)
+		left = '\n'.join(leftTitleAndIds)
+
+		rightIds = rightRev.objectIds()
+		rightTitleAndIds = []
+		for id in rightIds :
+			title = rightRev[id].Title()
+			if title != id :
+				rightTitleAndIds.append('%s (%s)' % (id, title))
+			else :
+				rightTitleAndIds.append('%s' % id)
+		right = '\n'.join(rightTitleAndIds)
+
+		infos = {'diff'			: html_ready_diff(left, right)
+				,'leftDate'		: leftDate
+				,'rightDate'	: rightDate
+				,'structure'	: True}
+		return infos
+	
+	
+	security.declareProtected(ModifyPortalContent, 'restore')
+	def restore(self, key):
+		pass
+
+InitializeClass(FolderishHistory)
+	
+	
+	
+
+InitializeClass(FolderishHistory)
+
+def html_ready_diff(left, right, n=3) :
+	if isinstance(left, UnicodeType) :
+		left = left.encode('utf-8')
+	if isinstance(right, UnicodeType) :
+		right = right.encode('utf-8')
+	left = rent.sub(convertEnt, left)
+	right = rent.sub(convertEnt, right)
+	sm = SequenceMatcher()
+	leftLines = left.splitlines()
+	rightLines = right.splitlines()
+	sm.set_seqs(leftLines, rightLines)
+	
+	groups = []
+	for i, group in enumerate(sm.get_grouped_opcodes(n)) :
+		groups.append([])
+		infos = groups[i]
+		for tag, i1, i2, j1, j2 in group :
+			info = {'tag'	: tag
+			       ,'left'	: '\n'.join(leftLines[i1:i2])
+				   ,'right'	: '\n'.join(rightLines[j1:j2])}
+			infos.append(info)
+	return groups
+
+def convertEnt(m):
+	"""convert html entity to utf-8 encoded character
+	"""
+	return unichr(name2codepoint.get(m.group('entName'), 32)).encode('utf-8')
diff --git a/HugePlinnFolder.py b/HugePlinnFolder.py
new file mode 100644
index 0000000..8910ede
--- /dev/null
+++ b/HugePlinnFolder.py
@@ -0,0 +1,143 @@
+# -*- coding: utf-8 -*-
+#######################################################################################
+#   Plinn - http://plinn.org                                                          #
+#   Copyright (C) 2005-2007  Benoît PIN <benoit.pin@ensmp.fr>                         #
+#                                                                                     #
+#   This program is free software; you can redistribute it and/or                     #
+#   modify it under the terms of the GNU General Public License                       #
+#   as published by the Free Software Foundation; either version 2                    #
+#   of the License, or (at your option) any later version.                            #
+#                                                                                     #
+#   This program is distributed in the hope that it will be useful,                   #
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of                    #
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                     #
+#   GNU General Public License for more details.                                      #
+#                                                                                     #
+#   You should have received a copy of the GNU General Public License                 #
+#   along with this program; if not, write to the Free Software                       #
+#   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.   #
+#######################################################################################
+""" Plinn implementation of CMFBTree
+
+$Id: HugePlinnFolder.py 1459 2009-02-02 00:57:24Z pin $
+$URL: http://svn.cri.ensmp.fr/svn/Plinn/branches/CMF-2.1/HugePlinnFolder.py $
+"""
+
+
+from Products.BTreeFolder2.BTreeFolder2 import BTreeFolder2Base
+from Products.ZCatalog.Lazy import LazyMap
+from BTrees.IOBTree import IOBTree
+from BTrees.OIBTree import OIBTree
+from Folder import PlinnFolder
+from zope.event import notify
+from zope.app.container.contained import notifyContainerModified
+from events import ObjectPositionModified
+from zope.component.factory import Factory
+from Products.CMFCore.permissions import AddPortalFolders, \
+										 ManageProperties, \
+										 AccessContentsInformation
+from AccessControl import ClassSecurityInfo
+from Globals import InitializeClass
+from types import StringType
+
+
+class HugePlinnFolder(BTreeFolder2Base, PlinnFolder) :
+	""" Plinn Folder for large set of objects
+	"""
+	
+	security = ClassSecurityInfo()
+	
+	def __init__(self, id, title='') :
+		PlinnFolder.__init__(self, id, title)
+		BTreeFolder2Base.__init__(self, id)
+
+	def _initBTrees(self):
+		super(HugePlinnFolder, self)._initBTrees()
+		self._pos2id_index = IOBTree()
+		self._id2pos_index = OIBTree()
+	
+	def _checkId(self, id, allow_dup=0) :
+		PlinnFolder._checkId(self, id, allow_dup)
+		BTreeFolder2Base._checkId(self, id, allow_dup)
+	
+	security.declareProtected(AddPortalFolders, 'manage_addHugePlinnFolder')
+	def manage_addHugePlinnFolder(self, id, title='', REQUEST=None) :
+		""" Add new a new HugePlinnFolder object with id *id*.
+		"""
+		ob = HugePlinnFolder(id, title)
+		self._setObject(id, ob)
+		if REQUEST is not None :
+			return self.folder_contents(self, REQUEST, portal_status_message='Folder added')
+	
+	def _setOb(self, id, object):
+		super(HugePlinnFolder, self)._setOb(id, object)
+		pos = self.objectCount() - 1
+		self._pos2id_index[pos] = id
+		self._id2pos_index[id] = pos
+	
+	def _delOb(self, id):
+		pos = self._id2pos_index[id]
+		self._id2pos_index.pop(id)
+		 	
+		for p in xrange(pos+1, self.objectCount()) :
+			ident = self._pos2id_index[p]
+			self._pos2id_index[p-1] = ident
+			self._id2pos_index[ident] = p-1
+		
+		self._pos2id_index.pop(self.objectCount()-1)
+
+		super(HugePlinnFolder, self)._delOb(id)
+			
+	security.declareProtected(AccessContentsInformation, 'objectIds')
+	def objectIds(self, spec=None) :
+		if spec is not None :
+			return super(HugePlinnFolder, self).objectIds(spec)
+		
+		pos2id = lambda pos : self._pos2id_index[pos]
+		return LazyMap(pos2id, xrange(self.objectCount()))
+		
+
+
+	security.declareProtected(ManageProperties, 'moveObjectsByDelta')
+	def moveObjectsByDelta(self, ids, delta, subset_ids=None,
+						   suppress_events=False):
+		""" Move specified sub-objects by delta.
+		"""
+		if isinstance(ids, StringType):
+			ids = (ids,)
+
+		id2pos = self._id2pos_index
+		pos2id = self._pos2id_index
+		for id in ids :
+			oldPosition = id2pos[id]
+			newPosition = max(oldPosition + delta, 0)
+			
+			shift = delta > 0 and 1 or -1
+			for p in xrange(oldPosition, newPosition, shift) :
+				ident = pos2id[p+shift]
+				pos2id[p] = ident
+				id2pos[ident] = p
+				if not suppress_events :
+					notify(ObjectPositionModified(self[ident], self, p))
+			
+			id2pos[id] = newPosition
+			pos2id[newPosition] = id
+			if not suppress_events :
+				notify(ObjectPositionModified(self[id], self, newPosition))
+		
+		if not suppress_events :
+			notifyContainerModified(self)
+	
+	
+	def getObjectPosition(self, id):
+		""" Get the position of an object by its id.
+		"""
+		try :
+			return self._id2pos_index[id]
+		except KeyError :
+			raise ValueError('The object with the id "%s" does not exist.' % id)
+	
+
+InitializeClass(HugePlinnFolder)
+HugePlinnFolderFactory = Factory(HugePlinnFolder)
+manage_addHugePlinnFolder = HugePlinnFolder.manage_addHugePlinnFolder.im_func
diff --git a/MemberDataTool.py b/MemberDataTool.py
new file mode 100755
index 0000000..e9e0b32
--- /dev/null
+++ b/MemberDataTool.py
@@ -0,0 +1,201 @@
+# -*- coding: utf-8 -*-
+#######################################################################################
+#   Plinn - http://plinn.org                                                          #
+#   Copyright (C) 2005-2007  Benoît PIN <benoit.pin@ensmp.fr>                         #
+#                                                                                     #
+#   This program is free software; you can redistribute it and/or                     #
+#   modify it under the terms of the GNU General Public License                       #
+#   as published by the Free Software Foundation; either version 2                    #
+#   of the License, or (at your option) any later version.                            #
+#                                                                                     #
+#   This program is distributed in the hope that it will be useful,                   #
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of                    #
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                     #
+#   GNU General Public License for more details.                                      #
+#                                                                                     #
+#   You should have received a copy of the GNU General Public License                 #
+#   along with this program; if not, write to the Free Software                       #
+#   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.   #
+#######################################################################################
+""" Workflow aware MemberData to provide reviewed member registration.
+
+$Id: MemberDataTool.py 1316 2008-07-29 15:37:23Z pin $
+$URL: http://svn.cri.ensmp.fr/svn/Plinn/branches/CMF-2.1/MemberDataTool.py $
+"""
+
+from Globals import InitializeClass
+from Acquisition import aq_inner, aq_parent, aq_base
+from AccessControl import ClassSecurityInfo
+from Products.CMFCore.MemberDataTool import MemberDataTool as BaseTool
+from Products.CMFCore.MemberDataTool import MemberData as BaseData
+from Products.CMFCore.MemberDataTool import CleanupTemp
+from Products.CMFCore.utils import getToolByName
+from Products.CMFCore.CMFCatalogAware import CMFCatalogAware
+from Products.CMFCore.DynamicType import DynamicType
+from utils import formatFullName
+from permissions import SetMemberProperties, SetMemberPassword
+
+
+class MemberDataTool (BaseTool):
+	""" This tool wraps user objects, making them act as Member objects.
+	"""
+
+	meta_type = 'Plinn Member Data Tool'
+##		 __implements__ = (IMemberDataTool, ActionProviderBase.__implements__)
+	
+	security = ClassSecurityInfo()
+
+	def __init__(self):
+		BaseTool.__init__(self)
+		# Create the default properties.
+		self._setProperty('name', '', 'string')
+		self._setProperty('given_name', '', 'string')
+		self._setProperty('wysiwyg_editor', 'FCK', 'string')
+		self._setProperty('photo_width', 800, 'int')
+
+	security.declarePrivate('wrapUser')
+	def wrapUser(self, u):
+		'''
+		If possible, returns the Member object that corresponds
+		to the given User object.
+		'''
+		id = u.getId()
+		members = self._members
+		if not id in members:
+			base = aq_base(self)
+			members[id] = MemberData(base, id)
+		# Return a wrapper with self as containment and
+		# the user as context.
+		return members[id].__of__(self).__of__(u)
+
+#	security.declarePrivate('wrapUser')
+#	def wrapUser(self, u):
+#		"""
+#		If possible, returns the Member object that corresponds
+#		to the given User object.
+#		"""
+#		id = u.getId()
+#		members = self._members
+#		if not members.has_key(id):
+#			# Get a temporary member that might be
+#			# registered later via registerMemberData().
+#			temps = self._v_temps
+#			if temps is not None and temps.has_key(id):
+#				m = temps[id]
+#			else:
+#				base = aq_base(self)
+#				m = MemberData(base, id)
+#				if temps is None:
+#					self._v_temps = {id:m}
+#					if hasattr(self, 'REQUEST'):
+#						# No REQUEST during tests.
+#						self.REQUEST._hold(CleanupTemp(self))
+#				else:
+#					temps[id] = m
+#		else:
+#			m = members[id]
+#		# Return a wrapper with self as containment and
+#		# the user as context.
+#		return m.__of__(self).__of__(u)
+
+
+	def __bobo_traverse__(self, REQUEST, name):
+		if hasattr(self,name):
+			return getattr(self,name)
+		else:
+			if self._members.has_key(name) :
+				return self.wrapUser(self.acl_users.getUser(name))
+
+InitializeClass(MemberDataTool)
+
+
+class MemberData (BaseData, DynamicType, CMFCatalogAware):
+
+##		 __implements__ = IMemberData
+
+	portal_type = 'Member Data'
+
+	security = ClassSecurityInfo()
+
+	security.declareProtected(SetMemberPassword, 'setMemberPassword')
+	def setMemberPassword(self, password, domains=None) :
+		""" set member password """
+
+		registration = getToolByName(self, 'portal_registration', None)
+		if registration:
+			failMessage = registration.testPasswordValidity(password)
+			if failMessage is not None:
+				raise 'Bad Request', failMessage
+				
+		user_folder = self.acl_users
+		self.setSecurityProfile(password=password, domains=domains)
+		if user_folder.meta_type == 'Group User Folder' :
+			self.changePassword(password)
+	
+	
+	#XXX restore the previous implementation for GRUF 2 I'll remove that later...
+	security.declarePrivate('setSecurityProfile')
+	def setSecurityProfile(self, password=None, roles=None, domains=None):
+		"""Set the user's basic security profile"""
+		u = self.getUser()
+		# This is really hackish.  The Zope User API needs methods
+		# for performing these functions.
+		if password is not None:
+			u.__ = password
+		if roles is not None:
+			u.roles = roles
+		if domains is not None:
+			u.domains = domains
+
+
+	def getMemberFullName(self, nameBefore=1) :
+		""" Return the best full name representation """
+		memberName = self.getProperty('name', default='')
+		memberGivenName = self.getProperty('given_name', default='')
+		memberId = self.getProperty('id', default='')
+		return formatFullName(memberName, memberGivenName, memberId, nameBefore=nameBefore)
+
+	def getMemberSortableFormat(self) :
+		""" Return a specific format of full name for alphabetical sorting """
+		return self.getMemberFullName(nameBefore = 1).lower()
+
+
+	## overload default security declaration
+	security.declareProtected(SetMemberProperties, 'setMemberProperties')
+	def setMemberProperties(self, mapping):
+		BaseData.setMemberProperties(self, mapping)
+		self.reindexObject()
+
+	security.declarePrivate('manage_beforeDelete')
+	def manage_beforeDelete(self) :
+		""" uncatalog object """
+		self.unindexObject()
+
+	def _setPortalTypeName(self, pt) :
+		""" Static Dynamic Type ;-) """
+		pass
+
+	# user object interface
+	# overloads to make methods not publishable
+	
+	def getUserName(self):
+		return BaseData.getUserName(self)
+
+	def getId(self):
+		return BaseData.getId(self)
+
+	def getRoles(self):
+		return BaseData.getRoles(self)
+
+	def getRolesInContext(self, object):
+		return BaseData.getRolesInContext(self, object)
+
+	def getDomains(self):
+		return BaseData.getDomains(self)
+
+	def has_role(self, roles, object=None):
+		return BaseData.has_role(self, roles, object=None)
+
+
+
+InitializeClass(MemberData)
diff --git a/MembershipTool.py b/MembershipTool.py
new file mode 100755
index 0000000..3e45cb8
--- /dev/null
+++ b/MembershipTool.py
@@ -0,0 +1,459 @@
+# -*- coding: utf-8 -*-
+#######################################################################################
+#   Plinn - http://plinn.org                                                          #
+#   Copyright (C) 2005-2007  Benoît PIN <benoit.pin@ensmp.fr>                         #
+#                                                                                     #
+#   This program is free software; you can redistribute it and/or                     #
+#   modify it under the terms of the GNU General Public License                       #
+#   as published by the Free Software Foundation; either version 2                    #
+#   of the License, or (at your option) any later version.                            #
+#                                                                                     #
+#   This program is distributed in the hope that it will be useful,                   #
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of                    #
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                     #
+#   GNU General Public License for more details.                                      #
+#                                                                                     #
+#   You should have received a copy of the GNU General Public License                 #
+#   along with this program; if not, write to the Free Software                       #
+#   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.   #
+#######################################################################################
+""" Plinn portal_membership
+
+$Id: MembershipTool.py 1524 2009-07-02 14:47:53Z pin $
+$URL: http://svn.cri.ensmp.fr/svn/Plinn/branches/CMF-2.1/MembershipTool.py $
+"""
+
+from AccessControl import ClassSecurityInfo, getSecurityManager
+from AccessControl.unauthorized import Unauthorized
+from AccessControl.SpecialUsers import nobody
+from AccessControl.Permission import Permission
+from Acquisition import aq_base, aq_inner
+from Globals import InitializeClass, MessageDialog
+from Products.PageTemplates.PageTemplateFile import PageTemplateFile
+
+from Products.CMFDefault.MembershipTool import MembershipTool as BaseTool
+from Products.CMFCore.permissions import View, ListPortalMembers, ManagePortal, SetOwnPassword, ChangePermissions
+from permissions import RemoveMember, SetLocalRoles, CheckMemberPermission
+from utils import _checkMemberPermission
+from Products.CMFCore.utils import getToolByName, _checkPermission, _getAuthenticatedUser
+from utils import formatFullName, translate
+from Products.CMFDefault.utils import decode
+from Products.CMFDefault.Document import addDocument
+
+from sets import Set
+from types import TupleType
+
+
+from time import time
+from logging import getLogger
+console = getLogger('Plinn.MembershipTool')
+
+
+class MembershipTool( BaseTool ):
+	""" Implement 'portal_membership' interface using "stock" policies.
+	"""
+
+
+	meta_type = 'Plinn Membership Tool'
+	
+	manage_options=( ({ 'label' : 'Configuration'
+						, 'action' : 'manage_mapRoles'
+						 },) + BaseTool.manage_options[1:])
+
+	security = ClassSecurityInfo()
+	
+	security.declareProtected(ManagePortal, 'manage_mapRoles')
+	manage_mapRoles = PageTemplateFile('www/configureMembershipTool', globals(),
+								   __name__='manage_mapRoles')
+
+	#
+	#	'portal_membership' interface methods
+	#
+
+	# change security settings for inherited methods
+	security.declareProtected(ListPortalMembers, 'getMemberById')
+	
+	
+	memberareaPortalType = 'Folder'
+	
+
+	security.declareProtected(SetOwnPassword, 'setPassword')
+	def setPassword(self, password, domains=None):
+		'''Allows the authenticated member to set his/her own password.
+		'''
+		user_folder = self.__getPUS()
+		if user_folder.meta_type == 'Group User Folder' :
+			registration = getToolByName(self, 'portal_registration', None)
+			if not self.isAnonymousUser():
+				member = self.getAuthenticatedMember()
+				if registration:
+					failMessage = registration.testPasswordValidity(password)
+					if failMessage is not None:
+						raise 'Bad Request', failMessage
+				member.setSecurityProfile(password=password, domains=domains)
+				member.changePassword(password)
+			else:
+				raise 'Bad Request', 'Not logged in.'
+			
+		else :
+			BaseTool.setPassword(self, password, domains=None)
+
+
+
+	security.declareProtected(ListPortalMembers, 'listMemberIds')
+	def listMemberIds(self):
+		'''Lists the ids of all members.	This may eventually be
+		replaced with a set of methods for querying pieces of the
+		list rather than the entire list at once.
+		'''
+		user_folder = self.__getPUS()
+		if user_folder.meta_type == 'Group User Folder' :
+			return user_folder.getPureUserNames()
+		else :
+			return [ x.getId() for x in user_folder.getUsers() ]
+			
+	
+	security.declareProtected(CheckMemberPermission, 'checkMemberPermission')
+	def checkMemberPermission(self, userid, permissionName, object, subobjectName=None):
+		'''
+		Checks whether the current user has the given permission on
+		the given object or subobject.
+		'''
+		if subobjectName is not None:
+			object = getattr(object, subobjectName)
+		
+		return _checkMemberPermission(userid, permissionName, object)
+	
+	security.declareProtected(ListPortalMembers, 'listMembers')
+	def listMembers(self):
+		'''Gets the list of all members.
+		'''
+		user_folder = self.__getPUS()
+		if user_folder.meta_type == 'Group User Folder' :
+			return map(self.wrapUser, user_folder.getPureUsers())
+		else :
+			return map(self.wrapUser, user_folder.getUsers())
+
+	
+	security.declareProtected(View, 'getCandidateLocalRoles')
+	def getCandidateLocalRoles(self, obj) :
+		""" What local roles can I assign?
+		"""
+		member = self.getAuthenticatedMember()
+		valid_roles = obj.valid_roles()
+		if 'Manager' in member.getRoles():
+			local_roles = [r for r in valid_roles if r != 'Anonymous']
+		else:
+			sm = getSecurityManager()
+			allPermissions = self.ac_inherited_permissions(1)
+
+			# construct a dictionary of permissions indexed by role
+			# and get permissions of user in obj context
+			memberPermissions = Set()
+			rolesMappings = {}
+			for role in valid_roles :
+				rolesMappings[role] = Set()
+
+			for p in allPermissions:
+				name, value = p[:2]
+
+				p=Permission(name,value,obj)
+				rolesOfPerm = p.getRoles()
+
+				for role in rolesOfPerm :
+					try : rolesMappings[role].add(name)
+					except KeyError :
+						trName = p._p
+						if hasattr(obj, trName):
+							l = list(getattr(obj, trName))
+							l.remove(role)
+							setattr(obj, trName, tuple(l))
+							msg = '%s role has been removed for %s permission on %s ' % (role, name, obj.absolute_url())
+							#LOG('portal_membership', WARNING, msg)
+
+				parent = obj.aq_inner.aq_parent
+				while type(rolesOfPerm) != TupleType :
+					p=Permission(name, value, parent)
+					rolesOfPerm = p.getRoles()
+					for role in rolesOfPerm :
+						try : rolesMappings[role].add(name)
+						except KeyError : pass
+					try : parent = parent.aq_inner.aq_parent
+					except AttributeError : break
+					
+
+				if sm.checkPermission(name, obj) :
+					memberPermissions.add(name)
+
+			local_roles = []
+			for role in valid_roles :
+				if rolesMappings[role] and rolesMappings[role].issubset(memberPermissions) :
+					local_roles.append(role)
+			
+		local_roles = [ role for role in local_roles if role not in ('Shared', 'Authenticated', 'Member', 'Anonymous') ]
+		local_roles.sort()
+		return tuple(local_roles)
+	
+	
+	security.declareProtected(View, 'setLocalRoles')
+	def setLocalRoles( self, obj, member_ids, role, remove=0, reindex=1 ):
+		""" Set local roles on an item """
+		if role not in self.getCandidateLocalRoles(obj) :
+			raise Unauthorized, "You are not allowed to manage %s role" % role
+
+		if self.checkPermission(SetLocalRoles, obj) :
+			if not remove :
+				for member_id in member_ids :
+					# current roles for user id in obj
+					roles = list(obj.get_local_roles_for_userid( userid=member_id ))
+					if role not in roles :
+						roles.append(role)
+						obj.manage_setLocalRoles( member_id, roles)
+			else :
+				for member_id in member_ids :
+					# current roles for user id in obj
+					roles = list(obj.get_local_roles_for_userid( userid=member_id ))
+					try : roles.remove(role)
+					except ValueError : pass
+					else :
+						if len(roles) >= 1 :
+							obj.manage_setLocalRoles( member_id, roles)
+						else :
+							obj.manage_delLocalRoles( userids=[member_id] )
+							
+		else :
+			raise Unauthorized
+				
+		if reindex:
+			# It is assumed that all objects have the method
+			# reindexObjectSecurity, which is in CMFCatalogAware and
+			# thus PortalContent and PortalFolder.
+			obj.reindexObjectSecurity()
+
+	
+	security.declarePublic('getMemberFullNameById')
+	def getMemberFullNameById(self, userid, nameBefore = 1) :
+		""" Return	the best formated representation of user fullname. """
+		
+		memberFullName = ''
+		if userid and userid != 'No owner' :
+			# No owner is a possible value returned by DefaultDublinCoreImpl.Creator
+			member = self.getMemberById(userid)
+			if not member :
+				return userid
+			memberName = getattr(member, 'name', '')
+			memberGivenName = getattr(member, 'given_name', '')
+			memberId = member.id
+			memberFullName = formatFullName(memberName, memberGivenName, memberId, nameBefore = nameBefore)
+			
+		return memberFullName
+	
+	security.declareProtected(ListPortalMembers, 'getMembers')
+	def getMembers(self, users) :
+		""" Return wraped users """
+		members = []
+		for user in users :
+			members.append(self.getMemberById(user))
+		
+		members = filter(None, members)
+		members.sort( lambda m0, m1 : cmp(m0.getMemberSortableFormat(), m1.getMemberSortableFormat()) )
+		return members
+	
+
+	security.declareProtected(ListPortalMembers, 'getOtherMembers')
+	def getOtherMembers(self, users) :
+		""" Return members who are not in users list"""
+		allMemberIds = self.listMemberIds()
+		otherMemberIds = [ userId for userId in allMemberIds if userId not in users ]
+		return self.getMembers(otherMemberIds)
+
+
+
+	security.declareProtected(ListPortalMembers, 'getMembersMetadata')
+	def getMembersMetadata(self, users) :
+		""" return metadatas from portal_catalog """
+		userDict = {}
+		for u in users : userDict[u] = True
+		ctool = getToolByName(self, 'portal_catalog')
+		memberBrains = ctool(portal_type='Member Data', sort_on='getMemberSortableFormat')
+		memberList = []
+		complementList = []
+		
+		if users :
+			for mb in memberBrains :
+				metadatas = {'id' : mb.getId, 'fullname' : mb.getMemberFullName}
+				if userDict.has_key(mb.getId) :
+					memberList.append(metadatas)
+				else :
+					complementList.append(metadatas)
+		else :
+			complementList = [{'id' : mb.getId, 'fullname' : mb.getMemberFullName} for mb in memberBrains]
+
+		return {'memberList' : memberList, 'complementList' : complementList}
+		
+			
+	
+	security.declareProtected(RemoveMember, 'removeMembers')
+	def removeMembers(self, memberIds = []) :
+		""" remove member
+		"""
+		# TODO : remove member document ?
+		mdtool = getToolByName(self, 'portal_memberdata')
+		for m in self.getMembers(memberIds) :
+			m.manage_beforeDelete()
+			mdtool.deleteMemberData(m.getId())
+
+		self.aq_inner.acl_users.deleteUsers(users = memberIds)
+
+
+
+	security.declareProtected(ManagePortal, 'setMemberAreaPortalType')
+	def setMemberAreaPortalType(self, member_folder_portal_type):
+		""" Set member area portal type to construct."""
+		ttool = getToolByName(self, 'portal_types')
+		if member_folder_portal_type not in ttool.objectIds() :
+			raise ValueError, "Unknown portal type : %s" % str(member_folder_portal_type)
+		
+		self.memberareaPortalType = member_folder_portal_type
+		return MessageDialog(title  ='Type updated',
+							 message='The member area type have been updated',
+							 action ='manage_mapRoles')
+	
+	def getMemberAreaPortalType(self) :
+		return self.memberareaPortalType
+
+
+	def getHomeFolder(self, id=None, verifyPermission=0):
+		""" Return a member's home folder object, or None.
+		"""
+		if id is None:
+			member = self.getAuthenticatedMember()
+			if not hasattr(member, 'getMemberId'):
+				return None
+			id = member.getMemberId()
+		members = self.getMembersFolder()
+		if members is not None:
+			if not hasattr(members, id) and getattr(self, 'memberareaCreationFlag', 0) != 0 :
+				self.createMemberArea(id)
+			try:
+				folder = members._getOb(id)
+				if verifyPermission and not _checkPermission(View, folder):
+					# Don't return the folder if the user can't get to it.
+					return None
+				return folder
+			except (AttributeError, TypeError, KeyError):
+				pass
+		return None
+
+	security.declarePublic('createMemberArea')
+	def createMemberArea(self, member_id=''):
+		""" Create a member area for 'member_id' or authenticated user.
+		"""
+		if not self.getMemberareaCreationFlag():
+			return None
+		members = self.getMembersFolder()
+		if not members:
+			return None
+		if self.isAnonymousUser():
+			return None
+		# Note: We can't use getAuthenticatedMember() and getMemberById()
+		# because they might be wrapped by MemberDataTool.
+		user = _getAuthenticatedUser(self)
+		user_id = user.getId()
+		if member_id in ('', user_id):
+			member = user
+			member_id = user_id
+		else:
+			if _checkPermission(ManageUsers, self):
+				member = self.acl_users.getUserById(member_id, None)
+				if member:
+					member = member.__of__(self.acl_users)
+				else:
+					raise ValueError, 'Member %s does not exist' % member_id
+			else:
+				return None
+		
+		if hasattr( aq_base(members), member_id ):
+			return None
+			
+		ttool = getToolByName(self, 'portal_types')
+		info = getattr(ttool, self.memberareaPortalType)
+		
+		f = info._constructInstance( members, member_id )
+		memberFullName = self.getMemberFullNameById(member_id, nameBefore = 0)
+		
+		# Grant Ownership and Owner role to Member
+		f.changeOwnership(user)
+		f.__ac_local_roles__ = None
+		f.manage_setLocalRoles(member_id, ['Owner'])
+
+		f.setTitle(memberFullName)
+		info._finishConstruction(f)
+		
+		def _(message, context, expand=()) :
+			trmessage = decode(translate(message, context), context)
+			expand = tuple([decode(e, context) for e in expand])
+			return (trmessage % expand).encode('utf-8')
+					
+		# Create Member's home page.
+		addDocument( f
+					, 'index_html'
+					, title = _("%s's Home", self, (memberFullName,))
+					, description = _("%s's front page", self, (memberFullName,))
+					, text_format = "html"
+					, text = self.default_member_content(memberFullName=memberFullName).encode('utf-8')
+					)
+
+		# Grant Ownership and Owner role to Member
+		f.index_html.changeOwnership(user)
+		f.index_html.__ac_local_roles__ = None
+		f.index_html.manage_setLocalRoles(member_id, ['Owner'])
+
+		f.index_html._setPortalTypeName( 'Document' )
+
+		# Overcome an apparent catalog bug.
+		f.index_html.reindexObject()
+		wftool = getToolByName( f, 'portal_workflow' )
+		wftool.notifyCreated( f.index_html )
+	
+
+	security.declareProtected(ListPortalMembers, 'looseSearchMembers')
+	def looseSearchMembers(self, searchString) :
+		""" """
+		
+		words = searchString.strip().split()
+		words = [word.lower() for word in words]
+		
+		mdtool = getToolByName(self, 'portal_memberdata')
+		mdProperties = mdtool.propertyIds()
+		searchableProperties = [ p['id'] for p in mdtool.propertyMap() if p['type'] == 'string' ] + ['id']
+		try : searchableProperties.remove('portal_skin')
+		except ValueError : pass
+		
+		match = []
+		for m in self.listMembers() :
+			allWordsMatch = False
+			for word in words :
+				for p in searchableProperties :
+					if str(m.getProperty(p, '')).lower().find(word) != -1 :
+						allWordsMatch = True
+						break
+				else :
+					allWordsMatch = False
+					
+				if not allWordsMatch :
+					break
+			else :
+				match.append(m)
+		
+		return match
+
+	def __getPUS(self):
+		# CMFCore.MembershipTool.MembershipTool tests 'getUsers' method but :
+		# "enumeration" methods ('getUserNames', 'getUsers') are *not*
+		# part of the contract!  See IEnumerableUserFolder.
+		# (from PluggableAuthService.interfaces.authservice #233)
+		return self.acl_users
+
+		
+InitializeClass(MembershipTool)
diff --git a/PlinnTodo.opml b/PlinnTodo.opml
new file mode 100644
index 0000000..2efb5e8
--- /dev/null
+++ b/PlinnTodo.opml
@@ -0,0 +1,96 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<opml version="1.0">
+  <head>
+    <title>PlinnTodo</title>
+    <expansionState>15,17,21,38,41,47,67</expansionState>
+  </head>
+  <body>
+    <outline text="V1.0" _status="checked">
+      <outline text="Ajax" _status="checked">
+        <outline text="Formulaire création" _status="checked" _note="Ajouter des actions pour obtenir une version ajax de immediate_view"/>
+        <outline text="Onglet modifier" _status="checked" _note="Les formulaire d'édition qui coniennent des champs Epoz doivent être correctement initialisés."/>
+        <outline text="Presse papier" _status="checked" _note="- Mettre à jour l'affichage lorsqu'il y a un objet copié / collé / coupé.&#10;- Ajaxer l'affichage du presse-papier."/>
+        <outline text="Création layer spécifique ajax" _status="checked"/>
+        <outline text="Document Plinn" _status="checked">
+          <outline text="Afficher les images correctement" _status="checked"/>
+          <outline text="Corriger l'url du formulaire d'envoi des images" _status="checked"/>
+          <outline text="Régler les problèmes Epoz" _status="checked"/>
+          <outline text="Retoucher les boutons d'upload fichier et image" _status="checked"/>
+          <outline text="Gérer l'enregistrement du document avec ajax" _status="checked"/>
+          <outline text="Corriger les urls des fichiers attachés" _status="checked" _note="-&gt; ajout de méthodes pour mettre des urls absolues à la place des relatives."/>
+        </outline>
+        <outline text="Ajaxer la sous barre d'onglets dans le calendrier" _status="checked"/>
+        <outline text="Défaut caractères dans l'arborescence" _status="checked" _note="Le caractère &amp; (et sûrement d'autres) provoque un défaut d'affichage dans l'arborescence.&#10;&lt; &amp;lt;&#10;&gt; &amp;gt;&#10;&quot; &amp;quot;&#10;' &amp;apos;&#10;&amp; &amp;amp; "/>
+        <outline text="Types à ajaxer" _status="checked">
+          <outline text="Calendar, Event" _status="checked"/>
+          <outline text="File" _status="checked">
+            <outline text="Téléchargements" _status="checked" _note="Les liens pour télécharger le fichier et la prévisualisation doivent se faire en dehors de la page principale."/>
+          </outline>
+          <outline text="Link" _status="checked"/>
+          <outline text="Photo" _status="checked"/>
+          <outline text="Topic" _status="checked">
+            <outline text="Gestion de l'héritage des critères" _status="checked"/>
+          </outline>
+        </outline>
+        <outline text="Barre d'actions utilisateur" _status="checked" _note="Ajouter un manager basé sur un appel à xml_ajax_actions&#10;Implémentation : xml_ajax_url"/>
+        <outline text="Déboguer l'enroulement des arborescences" _status="checked"/>
+        <outline text="Changement de mot de passe" _status="checked" _note="Le formulaire de changement de mot de passe lors de la première connexion d'un membre fait AttributeError &quot;changePassword&quot;&#10;En réalité, ce bug apparaît lorsqu'un utilisateur n'est pas enregistré directos dans le GRUF"/>
+        <outline text="folder_factories" _status="checked" _note="À chaque création, l'entrée dans le tableau instances n'est pas supprimée..."/>
+        <outline text="Créer une fonction pour récupérer l'adresse de l'objet courant" _status="checked"/>
+      </outline>
+      <outline text="Bugs Plinn" _status="checked">
+        <outline text="Tri dossier" _status="checked" _note="Les tris alphabéitques sont dépendants de la casse des caractères"/>
+        <outline text="Métadonnées" _status="checked" _note="Lors de la validation des métadonnées simples, la date d'activation est incrémentée d'une heure"/>
+        <outline text="calendar_view" _status="checked" _note="Lorsque d'une date de tri précédemment placée dans le cookie n'est pas dispo dans le dossier courant -&gt; erreur"/>
+        <outline text="catégorie d'action" _status="checked" _note="Changer les noms des categories d'action (ajax, additional_tabs, et autre ?) pour que la vérification de la sécu se fasse avec l'objet correct."/>
+        <outline text="Arborescence" _status="checked" _note="L'arborescence non javascript est basée sur les meta_type au lieu de portal_type&#10;Résolution : réécriture de make_nav_tree, patch de PortalFolder"/>
+      </outline>
+      <outline text="Vérifications" _status="checked">
+        <outline text="MembershipTool.getCandidateLocalRoles" _status="checked" _note="Vérifier que le code entre L 158 et 1168 (qui ajoute probablement des doublons de permissions dans les rôles) ne fausse pas le résultat."/>
+      </outline>
+      <outline text="Setup" _status="checked">
+        <outline text="Ajouter la propriété photo_width dans member_data" _status="checked"/>
+      </outline>
+      <outline text="Autres bugs" _status="checked">
+        <outline text="CMFSetup" _status="checked" _note="Dans l'export d'un workflow, il arrive que sate.permission_roles soit None quand il s'agit d'un état qui n'a jamais eu d'enregistrement de son mapping de permission.&#10;www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt;—397 www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt;—397 www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt;—397 www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt;—397 www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt;—397 www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt;—397 www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt;—397 www.zope.org &lt;http://www.zope.org/&gt; www.zope.org &lt;http://www.zope.org/&gt;—397 www.zope.org &lt;http://www.zope.org/&gt;—397 www.zope.org—397 &lt;http://www.zope.org/Collectors/CMF/397&gt;"/>
+        <outline text="GRUF / CMFCore" _status="checked" _note="Surcharge de la méthode setSecurityProfile avec l'ancienne implémentation car les rôles renvoyés par la méthode u.getRoles() ne comprennent pas les groupes"/>
+      </outline>
+    </outline>
+    <outline text="V2.0" _status="indeterminate">
+      <outline text="Réécriture des scripts ajax" _status="indeterminate">
+        <outline text="tree_block_script.js" _status="checked" _note="Complètement orienté objet&#10;Remarque : la fonction &quot;formData2QueryString&quot; est désormais une méthode de AjaxFormManager"/>
+        <outline text="ajax_form_manager.js"/>
+        <outline text="generic_header_script.js"/>
+        <outline text="folder_contents_script.js" _note="Gérer les callback des actions de formulaire : &#10;- lors d'une manipulation du presse-papier&#10;- autres cas"/>
+      </outline>
+      <outline text="Bugs Plinn" _status="indeterminate">
+        <outline text="member_workflow" _note="Dans le script before_register, corriger AttributeError, aclu"/>
+        <outline text="pending_members" _note="Ajouter le champ caché &lt;input type=&quot;hidden&quot; name=&quot;onAfterPopulate&quot; value=&quot;initAfterWorklowTransition&quot; /&gt;"/>
+        <outline text="Affichage dossier" _note="Bug : sur le listing d'un dossier, lorsque le tri par défaut est sur position, Après avoir choisi un tri décroissant, quand l'on revient sur position, la coche orange apparaît alors qu'elle ne devrait pas y être."/>
+        <outline text="Affichage direct du formulaire des métadonnées" _note="Lors de l'affichage du formulare des métadonnées par un accès direct (directement l'url complète avec ...?edit_metadata=fullMetadataForm, les scripts ne sont pas correctement initialisés."/>
+        <outline text="Enroulement total de l'arborescence" _note="Restaurer la fonction."/>
+        <outline text="Icônes folder contents" _note="Ajouter les dimensions aux icônes dans le listing des dossiers"/>
+        <outline text="HugePlinnFolder">
+          <outline text="Ajouter le hook script mkdir"/>
+        </outline>
+        <outline text="Recherche plein texte" _note="— Le formulaire provoque sous IE une double requête ;&#10;— Sous firefox, les données du formulaire sont encodées 2 fois ce qui fausse les résultats pour des recherches avec des caractères accentués."/>
+        <outline text="member_workflow.script.before_register" _status="checked" _note="NameError: global name 'aclu' is not defined ligne 14"/>
+        <outline text="Couper/coller d'un élément dans un workflow différent"/>
+      </outline>
+      <outline text="Document CMF standard">
+        <outline text="Upload des images / fichiers joints avec FCK Editor"/>
+        <outline text="Utilisation des liens permanents CMF"/>
+        <outline text="Patch de HTMLTidy"/>
+      </outline>
+      <outline text="Mise en service des ancres"/>
+      <outline text="Type Fichier" _note="Le changement des métadonnées ne doit pas provoquer une extraction du texte"/>
+      <outline text="Historique des documents &quot;à la DTML Zope&quot;"/>
+      <outline text="Annuaire et partages" _note="Améliorer la sélection des groupes et membre par filtrage à partir d'un saisie clavier"/>
+      <outline text="Breadcrumbs">
+        <outline text="Elle n'est pas toujours juste" _note="– connexion / déconnexion"/>
+      </outline>
+      <outline text="Arborescence à rafraîchir" _note="Rafraichir lors de l'ajout / suppression d'un objet qui y figure"/>
+      <outline text="Liens sur les calendrier" _note="L'insersion du lien pourrait être personalisé par une fonction passée en paramètre"/>
+    </outline>
+  </body>
+</opml>
diff --git a/PloneMisc.py b/PloneMisc.py
new file mode 100644
index 0000000..a97ee75
--- /dev/null
+++ b/PloneMisc.py
@@ -0,0 +1,244 @@
+##
+## The following code comes from Plone project http://plone.org
+##
+""" Useful utilities function from the Plone project like Batch.
+
+$Id: PloneMisc.py 1502 2009-05-31 17:33:32Z pin $
+$URL: http://svn.cri.ensmp.fr/svn/Plinn/branches/CMF-2.1/PloneMisc.py $
+"""
+
+
+from __future__ import nested_scopes
+
+from ZTUtils.Batch import Batch as ZTUBatch
+from ZTUtils import make_query
+from ExtensionClass import Base
+
+# These have to be duplicated from ZTUtils.Batch to use the correct Batch
+# class, otherwise orphans will come out wrong in the 'show x next messages'.
+class LazyPrevBatch(Base):
+	def __of__(self, parent):
+		return Batch(parent._sequence, parent._size,
+					 parent.first - parent._size + parent.overlap, 0,
+					 parent.orphan, parent.overlap)
+
+class LazyNextBatch(Base):
+	def __of__(self, parent):
+		try: parent._sequence[parent.end]
+		except IndexError: return None
+		return Batch(parent._sequence, parent._size,
+					 parent.end - parent.overlap, 0,
+					 parent.orphan, parent.overlap)
+
+class LazySequenceLength(Base):
+	def __of__(self, parent):
+		parent.sequence_length = l = len(parent._sequence)
+		return l
+
+class Batch(ZTUBatch):
+	"""Create a sequence batch"""
+	__allow_access_to_unprotected_subobjects__ = 1
+
+	previous = LazyPrevBatch()
+	next = LazyNextBatch()
+	sequence_length = LazySequenceLength()
+
+	size = first= start = end = orphan = overlap = navlist = None
+	numpages = pagenumber = pagerange = pagerangeend = pagerangestart = pagenumber = quantumleap = None
+
+	def __init__( self
+				, sequence
+				, size
+				, start=0
+				, end=0
+				, orphan=0
+				, overlap=0
+				, pagerange=7
+				, quantumleap=0
+				, b_start_str='b_start'
+				, before_getitem=lambda item: item
+				, ):
+		""" Encapsulate sequence in batches of size
+		sequence		- the data to batch.
+		size			- the number of items in each batch. This will be computed if left out.
+		start			- the first element of sequence to include in batch (0-index)
+		end				- the last element of sequence to include in batch (0-index, optional)
+		orphan			- the next page will be combined with the current page if it does not contain more than orphan elements
+		overlap			- the number of overlapping elements in each batch
+		pagerange		- the number of pages to display in the navigation
+		quantumleap		- 0 or 1 to indicate if bigger increments should be used in the navigation list for big results.
+		b_start_str		- the request variable used for start, default 'b_start'
+		before_getitem	- function that compute the item before getting it
+		"""
+		start = start + 1
+
+		start,end,sz = opt(start,end,size,orphan,sequence)
+
+		self._sequence = sequence
+		self.size = sz
+		self._size = size
+		self.start = start
+		self.end = end
+		self.orphan = orphan
+		self.overlap = overlap
+		self.first = max(start - 1, 0)
+		self.length = self.end - self.first
+
+		self.b_start_str = b_start_str
+
+		self.last = self.sequence_length - size
+
+		# Set up next and previous
+		if self.first == 0:
+			self.previous = None
+
+		# Set up the total number of pages
+		self.numpages = calculate_pagenumber(self.sequence_length - self.orphan, self.size, self.overlap)
+
+		# Set up the current page number
+		self.pagenumber = calculate_pagenumber(self.start, self.size, self.overlap)
+
+		# Set up pagerange for the navigation quick links
+		self.pagerange, self.pagerangestart, self.pagerangeend = calculate_pagerange(self.pagenumber,self.numpages,pagerange)
+
+		# Set up the lists for the navigation: 4 5 [6] 7 8
+		#  navlist is the complete list, including pagenumber
+		#  prevlist is the 4 5 in the example above
+		#  nextlist is 7 8 in the example above
+		self.navlist = self.prevlist = self.nextlist = []
+		if self.pagerange and self.numpages >= 1:
+			self.navlist  = range(self.pagerangestart, self.pagerangeend)
+			self.prevlist = range(self.pagerangestart, self.pagenumber)
+			self.nextlist = range(self.pagenumber + 1, self.pagerangeend)
+
+		# QuantumLeap - faster navigation for big result sets
+		self.quantumleap = quantumleap
+		self.leapback = self.leapforward = []
+		if self.quantumleap:
+			self.leapback = calculate_leapback(self.pagenumber, self.numpages, self.pagerange)
+			self.leapforward = calculate_leapforward(self.pagenumber, self.numpages, self.pagerange)
+		
+		# comptute item before getting it
+		self.before_getitem = before_getitem
+	
+	def __getitem__(self, index):
+		if index < 0:
+			if index + self.end < self.first: raise IndexError, index
+			item = self._sequence[index + self.end]
+			return self.before_getitem(item)
+
+		if index >= self.length: raise IndexError, index
+		item = self._sequence[index+self.first]
+		return self.before_getitem(item)
+
+	def pageurl(self, formvariables, pagenumber=-1):
+		""" Makes the url for a given page """
+		if pagenumber == -1:
+			pagenumber = self.pagenumber
+		b_start = pagenumber * (self.size - self.overlap) - self.size
+		return make_query(formvariables, {self.b_start_str:b_start})
+
+	def navurls(self, formvariables, navlist=[]):
+		""" Returns the page number and url for the navigation quick links """
+		if not navlist: navlist = self.navlist
+		return map(lambda x, formvariables = formvariables: (x, self.pageurl(formvariables, x)), navlist)
+
+	def prevurls(self, formvariables):
+		""" Helper method to get prev navigation list from templates """
+		return self.navurls(formvariables, self.prevlist)
+
+	def nexturls(self, formvariables):
+		""" Helper method to get next navigation list from templates """
+		return self.navurls(formvariables, self.nextlist)
+
+# Calculate start, end, batchsize
+# This is copied from ZTUtils.Batch.py because orphans were not correct there.
+# 04/16/04 modified by Danny Bloemendaal (_ender_). Removed try/except structs because
+# in some situations they cause some unexpected problems. Also fixed some problems with the orphan stuff. Seems to work now.
+def opt(start,end,size,orphan,sequence):
+	length = len(sequence)
+	if size < 1:
+		if start > 0 and end > 0 and end >= start:
+			size = end + 1 - start
+		else: size = 25
+	if start > 0: 
+		if start>length: 
+			start = length
+		if end > 0:
+			if end < start: end = start
+		else:
+			end = start + size - 1
+			if (end+orphan)>=length:
+				end = length
+	elif end > 0:
+		if (end)>length:
+			end = length
+		start = end + 1 - size
+		if start - 1 < orphan: start = 1
+	else:
+		start = 1
+		end = start + size - 1
+		if (end+orphan)>=length:
+			end = length
+	return start,end,size
+
+def calculate_pagenumber(elementnumber, batchsize, overlap=0):
+	""" Calculate the pagenumber for the navigation """
+	# To find first element in a page,
+	# elementnumber = pagenumber * (size - overlap) - size (- orphan?)
+	try:
+		pagenumber,remainder = divmod(elementnumber, batchsize - overlap)
+	except ZeroDivisionError:
+		pagenumber, remainder = divmod(elementnumber, 1)
+	if remainder > overlap:
+		pagenumber = pagenumber + 1
+	pagenumber = max(pagenumber, 1)
+	return pagenumber
+
+def calculate_pagerange(pagenumber, numpages, pagerange):
+	""" Calculate the pagerange for the navigation quicklinks """
+	# Pagerange is the number of pages linked to in the navigation, odd number
+	pagerange = max(0 , pagerange + pagerange % 2 - 1)
+	# Making sure the list will not start with negative values
+	pagerangestart = max ( 1, pagenumber - (pagerange - 1 ) / 2 )
+	# Making sure the list does not expand beyond the last page
+	pagerangeend = min ( pagenumber + (pagerange - 1 ) / 2, numpages) + 1
+	return pagerange, pagerangestart, pagerangeend
+
+def calculate_quantum_leap_gap(numpages, pagerange):
+	""" Find the QuantumLeap gap. Current width of list is 6 clicks (30/5) """
+	return int(max(1,round(float(numpages - pagerange)/30))*5)
+
+def calculate_leapback(pagenumber, numpages, pagerange):
+	""" Check the distance between start and 0 and add links as necessary """
+	leapback = []
+	quantum_leap_gap = calculate_quantum_leap_gap(numpages, pagerange)
+	num_back_leaps = max(0,min(3, int(round(float(pagenumber - pagerange)/quantum_leap_gap) - 0.3)))
+	if num_back_leaps:
+		pagerange, pagerangestart, pagerangeend = calculate_pagerange( pagenumber, numpages, pagerange)
+		leapback = range(pagerangestart - num_back_leaps * quantum_leap_gap, pagerangestart, quantum_leap_gap)
+	return leapback
+
+def calculate_leapforward(pagenumber, numpages, pagerange):
+	""" Check the distance between end and length and add links as necessary """
+	leapforward = []
+	quantum_leap_gap = calculate_quantum_leap_gap(numpages, pagerange)
+	num_forward_leaps = max(0,min(3, int(round(float(numpages - pagenumber - pagerange)/quantum_leap_gap) - 0.3)))
+	if num_forward_leaps:
+		pagerange, pagerangestart, pagerangeend = calculate_pagerange( pagenumber, numpages, pagerange)
+		leapforward = range(pagerangeend-1 + quantum_leap_gap, pagerangeend-1 + (num_forward_leaps+1) * quantum_leap_gap, quantum_leap_gap)
+	return leapforward
+
+
+class IndexIterator:
+	__allow_access_to_unprotected_subobjects__ = 1
+
+	def __init__(self, upper=100000, pos=0):
+		self.upper=upper
+		self.pos=pos
+
+	def next(self):
+		if self.pos <= self.upper:
+			self.pos += 1
+			return self.pos
+		raise KeyError, 'Reached upper bounds'
diff --git a/RegistrationTool.py b/RegistrationTool.py
new file mode 100644
index 0000000..79f5a33
--- /dev/null
+++ b/RegistrationTool.py
@@ -0,0 +1,187 @@
+# -*- coding: utf-8 -*-
+#######################################################################################
+#   Plinn - http://plinn.org                                                          #
+#   Copyright (C) 2005-2007  Benoît PIN <benoit.pin@ensmp.fr>                         #
+#                                                                                     #
+#   This program is free software; you can redistribute it and/or                     #
+#   modify it under the terms of the GNU General Public License                       #
+#   as published by the Free Software Foundation; either version 2                    #
+#   of the License, or (at your option) any later version.                            #
+#                                                                                     #
+#   This program is distributed in the hope that it will be useful,                   #
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of                    #
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                     #
+#   GNU General Public License for more details.                                      #
+#                                                                                     #
+#   You should have received a copy of the GNU General Public License                 #
+#   along with this program; if not, write to the Free Software                       #
+#   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.   #
+#######################################################################################
+""" Plinn registration tool: implements 3 modes to register members :
+	anonymous, manager, reviewed.
+
+$Id: RegistrationTool.py 1332 2008-07-31 12:09:28Z pin $
+$URL: http://svn.cri.ensmp.fr/svn/Plinn/branches/CMF-2.1/RegistrationTool.py $
+"""
+
+from Globals import InitializeClass, PersistentMapping
+from Products.PageTemplates.PageTemplateFile import PageTemplateFile
+from Products.CMFDefault.RegistrationTool import RegistrationTool as BaseRegistrationTool
+from AccessControl import ClassSecurityInfo, ModuleSecurityInfo
+from AccessControl.Permission import Permission
+from Products.CMFCore.permissions import ManagePortal, AddPortalMember
+from Products.CMFCore.exceptions import AccessControl_Unauthorized
+from Products.CMFCore.utils import getToolByName
+from Products.GroupUserFolder.GroupsToolPermissions import ManageGroups
+from types import TupleType, ListType
+
+security = ModuleSecurityInfo('Products.Plinn.RegistrationTool')
+MODE_ANONYMOUS = 'anonymous'
+security.declarePublic('MODE_ANONYMOUS')
+
+MODE_MANAGER = 'manager'
+security.declarePublic('MODE_MANAGER')
+
+MODE_REVIEWED = 'reviewed'
+security.declarePublic('MODE_REVIEWED')
+
+MODES = [MODE_ANONYMOUS, MODE_MANAGER, MODE_REVIEWED]
+security.declarePublic('MODES')
+
+DEFAULT_MEMBER_GROUP = 'members'
+security.declarePublic('DEFAULT_MEMBER_GROUP')
+
+
+
+class RegistrationTool(BaseRegistrationTool) :
+
+	""" Create and modify users by making calls to portal_membership.
+	"""
+	
+	meta_type = "Plinn Registration Tool"
+	
+	manage_options = ({'label' : 'Registration mode', 'action' : 'manage_regmode'}, ) + \
+						BaseRegistrationTool.manage_options
+	
+	security = ClassSecurityInfo()
+	
+	security.declareProtected( ManagePortal, 'manage_regmode' )
+	manage_regmode = PageTemplateFile('www/configureRegistrationTool', globals(),
+										__name__='manage_regmode')
+
+	def __init__(self) :
+		self._mode = MODE_ANONYMOUS
+		self._chain = ''
+	
+	security.declareProtected(ManagePortal, 'configureTool')
+	def configureTool(self, registration_mode, chain, REQUEST=None) :
+		""" """
+		
+		if registration_mode not in MODES :
+			raise ValueError, "Unknown mode: " + registration_mode
+		else :
+			self._mode = registration_mode
+			self._updatePortalRoleMappingForMode(registration_mode)
+		
+		wtool = getToolByName(self, 'portal_workflow')
+
+		if registration_mode == MODE_REVIEWED :
+			if not hasattr(wtool, '_chains_by_type') :
+				wtool._chains_by_type = PersistentMapping()
+			wfids = []
+			chain = chain.strip()
+			
+			if chain == '(Default)' :
+				try : del wtool._chains_by_type['Member Data']
+				except KeyError : pass
+				self._chain = chain
+			else :
+				for wfid in chain.replace(',', ' ').split(' ') :
+					if wfid :
+						if not wtool.getWorkflowById(wfid) :
+							raise ValueError, '"%s" is not a workflow ID.' % wfid
+						wfids.append(wfid)
+	
+				wtool._chains_by_type['Member Data'] = tuple(wfids)
+				self._chain = ', '.join(wfids)
+		else :
+			wtool._chains_by_type['Member Data'] = tuple()
+		
+		if REQUEST :
+			REQUEST.RESPONSE.redirect(self.absolute_url() + '/manage_regmode?manage_tabs_message=Saved changes.')
+
+	def _updatePortalRoleMappingForMode(self, mode) :
+	
+		urlTool = getToolByName(self, 'portal_url')
+		portal = urlTool.getPortalObject()
+	
+		if mode in [MODE_ANONYMOUS, MODE_REVIEWED] :
+			portal.manage_permission(AddPortalMember, roles = ['Anonymous', 'Manager'], acquire=1)
+		elif mode == MODE_MANAGER :
+			portal.manage_permission(AddPortalMember, roles = ['Manager', 'UserManager'], acquire=0)
+	
+	security.declarePublic('getMode')
+	def getMode(self) :
+		# """ return current mode """
+		return self._mode[:]
+	
+	security.declarePublic('getWfId')
+	def getWfChain(self) :
+		# """ return current workflow id """
+		return self._chain
+	
+	security.declarePublic('roleMappingMismatch')
+	def roleMappingMismatch(self) :
+		# """ test if the role mapping is correct for the currrent mode """
+		
+		mode = self._mode
+		urlTool = getToolByName(self, 'portal_url')
+		portal = urlTool.getPortalObject()
+				
+		def rolesOfAddPortalMemberPerm() :
+			p=Permission(AddPortalMember, [], portal)
+			return p.getRoles()
+		
+		if mode in [MODE_ANONYMOUS, MODE_REVIEWED] :
+			if 'Anonymous' in rolesOfAddPortalMemberPerm() : return False
+			
+		elif mode == MODE_MANAGER :
+			roles = rolesOfAddPortalMemberPerm()
+			if 'Manager' in roles or 'UserManager' in roles and len(roles) == 1 and type(roles) == TupleType :
+				return False
+		
+		return True
+
+	security.declareProtected(AddPortalMember, 'addMember')
+	def addMember(self, id, password, roles=(), groups=(DEFAULT_MEMBER_GROUP,), domains='', properties=None) :
+		""" Idem CMFCore but without default role """
+		BaseRegistrationTool.addMember(self, id, password, roles=roles,
+									   domains=domains, properties=properties)
+
+		if self.getMode() in [MODE_ANONYMOUS, MODE_MANAGER] :
+			gtool = getToolByName(self, 'portal_groups')
+			mtool = getToolByName(self, 'portal_membership')
+			utool = getToolByName(self, 'portal_url')
+			portal = utool.getPortalObject()
+			isGrpManager = mtool.checkPermission(ManageGroups, portal) ## TODO : CMF2.1 compat
+			aclu = self.aq_inner.acl_users
+
+			for gid in groups:
+				g = gtool.getGroupById(gid)
+				if not isGrpManager :				
+					if gid != DEFAULT_MEMBER_GROUP:
+						raise AccessControl_Unauthorized, 'You are not allowed to join arbitrary group.'
+
+				if g is None :
+					gtool.addGroup(gid)
+				aclu.changeUser(aclu.getGroupPrefix() +gid, roles=['Member', ])
+				g = gtool.getGroupById(gid)
+				g.addMember(id)
+
+
+	def afterAdd(self, member, id, password, properties):
+		""" notify member creation """
+		member.notifyWorkflowCreated()
+		member.indexObject()
+		
+InitializeClass(RegistrationTool)
\ No newline at end of file
diff --git a/Topic.py b/Topic.py
new file mode 100644
index 0000000..7d693db
--- /dev/null
+++ b/Topic.py
@@ -0,0 +1,134 @@
+#######################################################################################
+#   Plinn - http://plinn.org                                                          #
+#   Copyright © 2005-2009  Benoît PIN <benoit.pin@ensmp.fr>                           #
+#                                                                                     #
+#   This program is free software; you can redistribute it and/or                     #
+#   modify it under the terms of the GNU General Public License                       #
+#   as published by the Free Software Foundation; either version 2                    #
+#   of the License, or (at your option) any later version.                            #
+#                                                                                     #
+#   This program is distributed in the hope that it will be useful,                   #
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of                    #
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                     #
+#   GNU General Public License for more details.                                      #
+#                                                                                     #
+#   You should have received a copy of the GNU General Public License                 #
+#   along with this program; if not, write to the Free Software                       #
+#   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.   #
+#######################################################################################
+""" Plinn Topic
+
+$Id: Topic.py 1518 2009-07-01 14:55:37Z pin $
+$URL: http://svn.cri.ensmp.fr/svn/Plinn/branches/CMF-2.1/Topic.py $
+"""
+
+from Globals import InitializeClass
+from zope.component.factory import Factory
+from AccessControl.SecurityInfo import ClassSecurityInfo
+from Products.CMFCore.permissions import View, ListFolderContents
+from Products.CMFTopic.permissions import AddTopics, ChangeTopics
+from Products.CMFTopic.Topic import Topic as BaseTopic
+from Products.CMFDefault.DublinCore import DefaultDublinCoreImpl
+from Products.CMFCore.utils import getToolByName
+from Folder import PlinnFolder
+from types import ListType, TupleType, StringTypes
+
+from sets import Set
+
+
+class Topic(BaseTopic, PlinnFolder):
+	""" CMF Topic with Dublin core metadata support """
+	
+	security = ClassSecurityInfo()
+	
+	security.declareProtected(ChangeTopics, 'listAvailableFields')
+	def listAvailableFields( self ):
+		""" Return a list of available fields for new criteria.
+		"""
+		fields = Set(BaseTopic.listAvailableFields(self))
+		utool = getToolByName(self, "portal_url")
+		portal = utool.getPortalObject()
+		unusedTopicFields = Set(portal.getProperty("unused_topic_fields", []))
+		return fields - unusedTopicFields
+	
+	security.declareProtected(View, 'queryCatalog')
+	def queryCatalog(self, REQUEST=None, **kw) :
+		""" Invoke the catalog using our criteria.
+			remove Member Data results
+		"""
+		kw.update( self.buildQuery() )
+
+		ttool = getToolByName(self, 'portal_types')
+		if not kw.has_key('portal_type') :
+			kw['portal_type'] = ttool.objectIds()
+		else :
+			if type(kw['portal_type']) == ListType :
+				try : kw['portal_type'].remove('Member Data')
+				except : pass
+			if type(kw['portal_type']) == TupleType :
+ 				ptypes = list(kw['portal_type'])
+				try :
+					ptypes.remove('Member Data')
+					kw['portal_type'] = tuple(ptypes)
+				except : pass
+			elif kw['portal_type'] == 'Member Data' :
+				kw['portal_type'] = ttool.objectIds()
+
+		portal_catalog = getToolByName( self, 'portal_catalog' )
+		return portal_catalog.searchResults(REQUEST, **kw)
+	
+	
+	security.declareProtected(ChangeTopics, 'loadSearchQuery')
+	def loadSearchQuery(self, query):
+		sort_on = query.pop('sort_on')
+		sort_order = query.pop('sort_order')
+		ctool = getToolByName(self, 'portal_catalog')
+		hasindex = ctool._catalog.indexes.has_key
+		
+		for k, v in query.items() :
+			if not hasindex(k) : continue
+			if isinstance(v, StringTypes) :
+				self.addCriterion(k, 'String Criterion')
+				crit = self.getCriterion(k)
+				crit.edit(v)
+			elif isinstance(v, (ListType, TupleType)) :
+				if len(v) == 1 :
+					self.addCriterion(k, 'String Criterion')
+					crit = self.getCriterion(k)
+					crit.edit(v[0])
+				else :	
+					self.addCriterion(k, 'List Criterion')
+					crit = self.getCriterion(k)
+					crit.edit(value=v, operator='or')
+			elif isinstance(v, dict) :
+				self.addCriterion(k, v.pop('critType'))
+				crit = self.getCriterion(k)
+				crit.edit(**v)
+		
+		self.addCriterion(sort_on, 'Sort Criterion')
+		sort_crit = self.getCriterion(sort_on)
+		if sort_order == 'reverse' :
+			sort_crit.edit(True)
+		else :
+			sort_crit.edit(False)
+	
+	security.declareProtected(ChangeTopics, 'getCompatibleCriteriaFor')
+	def getCompatibleCriteriaFor(self, fieldName) :
+		""" Return a list of criteria which belong to the field """
+		
+		pass	
+InitializeClass(Topic)
+TopicFactory = Factory(Topic)
+
+
+def addTopic(dispatcher, id, title='', REQUEST=None):
+	""" Create an empty topic.
+	"""
+	topic = Topic( id )
+	topic.id = id
+	topic.title = title
+	dest = dispatcher.Destination()
+	dest._setObject( id, topic )
+
+	if REQUEST is not None:
+		REQUEST['RESPONSE'].redirect( 'manage_main' )
diff --git a/__init__.py b/__init__.py
new file mode 100755
index 0000000..5f96eeb
--- /dev/null
+++ b/__init__.py
@@ -0,0 +1,108 @@
+# -*- coding: utf-8 -*-
+#######################################################################################
+#   Plinn - http://plinn.org                                                          #
+#   Copyright (C) 2005-2007  Benoît PIN <benoit.pin@ensmp.fr>                         #
+#                                                                                     #
+#   This program is free software; you can redistribute it and/or                     #
+#   modify it under the terms of the GNU General Public License                       #
+#   as published by the Free Software Foundation; either version 2                    #
+#   of the License, or (at your option) any later version.                            #
+#                                                                                     #
+#   This program is distributed in the hope that it will be useful,                   #
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of                    #
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                     #
+#   GNU General Public License for more details.                                      #
+#                                                                                     #
+#   You should have received a copy of the GNU General Public License                 #
+#   along with this program; if not, write to the Free Software                       #
+#   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.   #
+#######################################################################################
+""" Plinn implementation of CMFCore.
+
+$Id: __init__.py 1530 2009-07-08 09:19:39Z pin $
+$URL: http://svn.cri.ensmp.fr/svn/Plinn/branches/CMF-2.1/__init__.py $
+"""
+
+import exceptions
+
+from Products.CMFCore import utils as core_cmf_utils
+from Products.CMFDefault import utils as default_cmf_utils
+from Products.CMFCore.permissions import AddPortalContent
+import File, Folder, HugePlinnFolder, Topic
+import MembershipTool
+import MemberDataTool
+import GroupsTool
+import GroupDataTool
+import RegistrationTool
+import CalendarTool
+import AttachmentTool
+#from shutdown_dispatcher import ZopeShutdownDispatcher
+
+from PloneMisc import IndexIterator, Batch
+from utils import  getCPInfo, popCP
+
+import patch
+
+from AccessControl import allow_module, allow_class
+
+
+contentClasses = (File.File, Folder.PlinnFolder, HugePlinnFolder.HugePlinnFolder, Topic.Topic )
+
+contentConstructors = (File.addFile, Folder.manage_addPlinnFolder, HugePlinnFolder.manage_addHugePlinnFolder, Topic.addTopic)
+
+tools = ( MembershipTool.MembershipTool
+		, MemberDataTool.MemberDataTool
+		, GroupsTool.GroupsTool
+		, GroupDataTool.GroupDataTool
+		, RegistrationTool.RegistrationTool
+		, CalendarTool.CalendarTool
+		, AttachmentTool.AttachmentTool
+		)
+
+methods = {
+'getCPInfo': getCPInfo,
+'getCPInfo__roles__': None,
+'popCP' : popCP,
+'popCP__roles__' : None
+}
+
+def initialize(registrar) :
+	
+	allow_module('quopri')
+	allow_module('Products.Plinn.PloneMisc')
+	allow_class(IndexIterator)
+	allow_class(Batch)
+	app = registrar._ProductContext__app
+	#ZopeShutdownDispatcher(registrar._ProductContext__app)
+	
+	core_cmf_utils.ContentInit(
+	'Plinn',
+	content_types = contentClasses,
+	permission = AddPortalContent,
+	extra_constructors = contentConstructors,
+	).initialize(registrar)
+	
+	core_cmf_utils.ToolInit('Plinn Tool',
+					tools = tools,
+					icon = 'tool.gif'
+					).initialize(registrar)
+	
+	
+
+
+# Monkey...
+# all tags are good !
+validTags = default_cmf_utils.NASTY_TAGS.copy()
+for tag in validTags.keys() :
+	validTags[tag] = 1
+
+VALID_TAGS = {'font': 1}
+
+validTags.update(VALID_TAGS)
+
+default_cmf_utils.NASTY_TAGS = {}
+default_cmf_utils.VALID_TAGS.update(validTags)
+
+# the plinn portal_calendar is a also a "SPECIAL PROVIDER"
+import Products.CMFCore.exportimport.actions
+Products.CMFCore.exportimport.actions._SPECIAL_PROVIDERS += ('portal_calendar',)
\ No newline at end of file
diff --git a/_xsl/actionsMigration.xsl b/_xsl/actionsMigration.xsl
new file mode 100644
index 0000000..8eac33d
--- /dev/null
+++ b/_xsl/actionsMigration.xsl
@@ -0,0 +1,81 @@
+<?xml version="1.0"?>
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+		xmlns:i18n="http://xml.zope.org/namespaces/i18n"
+                version="1.0">
+ 
+  <xsl:output method="xml" indent="yes" />
+
+  <xsl:template match="/">
+    <object name="portal_actions"
+	    meta_type="CMF Actions Tool"
+	    xmlns:i18n="http://xml.zope.org/namespaces/i18n">
+      
+      <xsl:for-each select="/actions-tool/action-provider/action">
+	<xsl:variable name="category" select="@category"/>
+	<xsl:if test="count((preceding-sibling::action|../preceding-sibling::action-provider/action)[@category=$category])=0">
+	  
+	  <xsl:call-template name="action_category">
+	    <xsl:with-param name="category" select="$category"/>
+	  </xsl:call-template>
+	  
+	</xsl:if>
+      </xsl:for-each>
+    </object>
+  </xsl:template>
+  
+  <xsl:template name="action_category">
+    <xsl:param name="category"/>
+
+    <object meta_type="CMF Action Category">
+      <xsl:attribute name="name">
+	<xsl:value-of select="$category"/>
+      </xsl:attribute>
+      
+      <property name="title"></property>
+
+      <xsl:for-each select="//action[@category=$category]">
+	
+	<object meta_type="CMF Action" i18n:domain="plinn">
+	  <xsl:attribute name="name">
+	    <xsl:value-of select="@action_id"/>
+	  </xsl:attribute>
+	  
+	  <property name="title" i18n:translate="">
+	    <xsl:value-of select="@title"/>
+	  </property>
+	  
+	  <property name="description"></property>
+
+	  <property name="url_expr">
+	    <xsl:value-of select="@url_expr"/>
+	  </property>
+
+	  <property name="icon_expr"></property>
+
+	  <property name="available_expr">
+	    <xsl:value-of select="@condition_expr"/>
+	  </property>
+
+	  <property name="permissions">
+	    <xsl:for-each select="permission">
+	      <element>
+		<xsl:attribute name="value">
+		  <xsl:value-of select="."/>
+		</xsl:attribute>
+	      </element>
+	    </xsl:for-each>
+	  </property>
+
+	  <property name="visible">
+	    <xsl:value-of select="@visible"/>
+	  </property>
+
+	</object>
+
+      </xsl:for-each>
+
+    </object>
+
+  </xsl:template>
+
+</xsl:stylesheet>
\ No newline at end of file
diff --git a/adapters.zcml b/adapters.zcml
new file mode 100644
index 0000000..1872cbf
--- /dev/null
+++ b/adapters.zcml
@@ -0,0 +1,14 @@
+<configure xmlns="http://namespaces.zope.org/zope">
+  <adapter
+    provides=".interfaces.IContentHistory"
+    for="Products.CMFDefault.interfaces.IDocument"
+    factory=".HistoryAdapters.DocumentHistory"/>
+  <adapter
+    provides=".interfaces.IContentHistory"
+    for="Products.CMFCore.interfaces.IFolderish"
+    factory=".HistoryAdapters.FolderishHistory"/>
+  <adapter
+    provides=".interfaces.IEmailNotificationSettings"
+    for="Products.CMFCore.interfaces.IContentish"
+    factory=".EmailNotification.EmailNoticationSettings"/>
+</configure>
\ No newline at end of file
diff --git a/authors.txt b/authors.txt
new file mode 100644
index 0000000..308a637
--- /dev/null
+++ b/authors.txt
@@ -0,0 +1,22 @@
+Python and Javascript / Ajax programming, templates, graphics :
+  Benoît PIN <pin@cri.ensmp.fr>
+
+
+
+Thanks to :
+  Georges-André Silber <silber@cri.ensmp.fr> (support, help)
+  Pierre Jouvelot <pj@cri.ensmp.fr> (support, help)
+  Katia Oliver <katia.oliver@laposte.net> (ideas, support, feedback)
+  Aline Caron <aline.caron@gmail.com> (color chart, icons)
+  Laurent Daverio <daverio@cri.ensmp.fr> (Utf8Splitter)
+
+
+
+Codes from others projects and included into Plinn:
+
+  Plone (c) Plone Foundation - http://plone.org
+    (Plone Batch and IndexIterator classes)
+    Plinn/PloneMisc.py
+    
+  (c) Matthew Eernisse - http://www.onlamp.com/pub/a/onlamp/2005/05/19/xmlhttprequest.html
+    Plinn/skins/ajax_scripts/ajax_form_manager.js ('formData2QueryString' function)
\ No newline at end of file
diff --git a/configure.zcml b/configure.zcml
new file mode 100644
index 0000000..4834bd0
--- /dev/null
+++ b/configure.zcml
@@ -0,0 +1,11 @@
+<configure
+    xmlns="http://namespaces.zope.org/zope"
+    xmlns:i18n="http://namespaces.zope.org/i18n">
+  <include file="content.zcml"/>
+  <include file="profiles.zcml"/>
+  <include file="directories.zcml"/>
+  <include file="adapters.zcml"/>
+  <include file="event.zcml"/>
+  
+  <i18n:registerTranslations directory="locales"/>
+</configure>
diff --git a/content.zcml b/content.zcml
new file mode 100644
index 0000000..e745ddb
--- /dev/null
+++ b/content.zcml
@@ -0,0 +1,55 @@
+<configure
+    xmlns="http://namespaces.zope.org/zope"
+    xmlns:five="http://namespaces.zope.org/five">
+
+  <!-- File -->
+  <five:registerClass
+      class=".File.File"
+      meta_type="Plinn File"
+      permission="cmf.AddPortalContent"
+      />
+
+  <utility
+      component=".File.FileFactory"
+      name="plinn.file"
+      />
+
+  <!-- Plinn Folder -->
+  <five:registerClass
+      class=".Folder.PlinnFolder"
+      meta_type="Plinn Folder"
+      permission="cmf.AddPortalFolders"
+      />
+
+  <utility
+      component=".Folder.PlinnFolderFactory"
+      name="plinn.folder.normal"
+      />
+
+  <!-- Huge Plinn Folder -->
+  <five:registerClass
+      class=".HugePlinnFolder.HugePlinnFolder"
+      meta_type="Huge Plinn Folder"
+      permission="cmf.AddPortalFolders"
+      />
+
+  <utility
+      component=".HugePlinnFolder.HugePlinnFolderFactory"
+      name="plinn.folder.huge"
+      />
+  
+  
+  <!-- Topic -->
+
+  <five:registerClass
+      class=".Topic.Topic"
+      meta_type="Plinn Topic"
+      permission="cmf.AddPortalTopics"
+      />
+
+  <utility
+      component=".Topic.TopicFactory"
+      name="plinn.topic"
+      />
+
+</configure>
\ No newline at end of file
diff --git a/dependencies.txt b/dependencies.txt
new file mode 100644
index 0000000..4d924bc
--- /dev/null
+++ b/dependencies.txt
@@ -0,0 +1,21 @@
+Python and Zope products
+
+    Zope-2.7 or 2.8 or 2.9 - http://www.zope.org/Products/
+    CMF-1.5.5 - http://www.zope.org/Products/CMF/
+    Epoz - http://mjablonski.zope.de/Epoz
+    GroupUserFolder - http://ingeniweb.sourceforge.net/Products/GroupUserFolder/
+    MimetypesRegistry - http://sourceforge.net/project/showfiles.php?group_id=75272&package_id=131320
+    MosaicDocument - http://plinn.org
+    Photo - http://plinn.org
+    PIL - http://www.pythonware.com/products/pil/
+    PlinnDocument - http://plinn.org
+    PortalTransforms - http://sourceforge.net/project/showfiles.php?group_id=75272&package_id=88131
+    Portfolio - http://plinn.org
+    Utf8Splitter - http://plinn.org
+    ZTUtils_hotfix - http://plinn.org
+
+
+Javascript
+
+    jscalendar - http://www.dynarch.com/projects/calendar/
+    sarissa - http://sarissa.sourceforge.net/
diff --git a/directories.zcml b/directories.zcml
new file mode 100644
index 0000000..714ce40
--- /dev/null
+++ b/directories.zcml
@@ -0,0 +1,13 @@
+<configure
+    xmlns="http://namespaces.zope.org/zope"
+    xmlns:cmf="http://namespaces.zope.org/cmf">
+  <cmf:registerDirectory name="content" recursive="True"/>
+  <cmf:registerDirectory name="control" recursive="True"/>
+  <cmf:registerDirectory name="generic" recursive="True"/>
+  <cmf:registerDirectory name="custom_content" recursive="True"/>
+  <cmf:registerDirectory name="custom_control" recursive="True"/>
+  <cmf:registerDirectory name="custom_generic" recursive="True"/>
+  <cmf:registerDirectory name="images" recursive="True"/>
+  <cmf:registerDirectory name="ajax_scripts" recursive="True"/>
+  <cmf:registerDirectory name="jscalendar" recursive="True"/>
+</configure>
diff --git a/event.zcml b/event.zcml
new file mode 100644
index 0000000..eee9024
--- /dev/null
+++ b/event.zcml
@@ -0,0 +1,19 @@
+<configure
+    xmlns="http://namespaces.zope.org/zope">
+  <subscriber
+        for=".interfaces.IObjectPositionModified"
+        handler=".event_handlers.reindexObjectPosition"
+        />
+  <!--
+  <subscriber
+    for="Products.CMFCore.interfaces.IContentish
+         zope.component.interfaces.IObjectEvent"
+    handler=".event_handlers.handleContentishEvent"
+      />
+  -->
+  <subscriber
+    for="Products.CMFCore.interfaces.IContentish
+         zope.app.container.interfaces.IObjectRemovedEvent"
+    handler=".event_handlers.handleObjectRemoved"
+      />
+</configure>
diff --git a/event_handlers.py b/event_handlers.py
new file mode 100644
index 0000000..ebb9803
--- /dev/null
+++ b/event_handlers.py
@@ -0,0 +1,64 @@
+# -*- coding: utf-8 -*-
+#######################################################################################
+#   Plinn - http://plinn.org                                                          #
+#   Copyright © 2009  Benoît PIN <benoit.pin@ensmp.fr>                                #
+#                                                                                     #
+#   This program is free software; you can redistribute it and/or                     #
+#   modify it under the terms of the GNU General Public License                       #
+#   as published by the Free Software Foundation; either version 2                    #
+#   of the License, or (at your option) any later version.                            #
+#                                                                                     #
+#   This program is distributed in the hope that it will be useful,                   #
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of                    #
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                     #
+#   GNU General Public License for more details.                                      #
+#                                                                                     #
+#   You should have received a copy of the GNU General Public License                 #
+#   along with this program; if not, write to the Free Software                       #
+#   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.   #
+#######################################################################################
+"""
+Plinn event handlers.
+
+$Id: event_handlers.py 1517 2009-06-30 12:54:52Z pin $
+$URL: http://svn.cri.ensmp.fr/svn/Plinn/branches/CMF-2.1/event_handlers.py $
+"""
+from zope.app.container.interfaces import IObjectRemovedEvent
+from Products.CMFCore.utils import getToolByName
+from Products.Plinn.utils import getAdapterByInterface
+from quopri import encodestring
+
+def reindexObjectPosition(event) :
+	event.object.reindexObject(idxs=['position'])
+
+def handleObjectRemoved(ob, event) :
+	folder = event.oldParent
+	settings = getAdapterByInterface(folder, 'Products.Plinn.interfaces.IEmailNotificationSettings', None)
+	if settings :
+		subscribers = settings.getSubscribersFor('zope.app.container.interfaces.IObjectRemovedEvent')
+		addresses = map(encodeAdr, subscribers)
+		addresses = filter(None, addresses)
+		if not addresses :
+			return
+		addresses = ', '.join(addresses)
+		recipientsHeader = 'Bcc: %s' % addresses
+		portal = getToolByName(folder, 'portal_url').getPortalObject()
+		email_from_address = portal.email_from_address
+		subject = "Suppression d'un élément"
+		text_body = "Le document « %s » vient d'être supprimé du portail %s.\n\nIl était placé à l'url :\n%s" % \
+					(ob.title_or_id(), portal.Title(), ob.absolute_url())
+		message = folder.echange_mail_template(  From = email_from_address
+												, recipients = recipientsHeader
+												, Subject = "=?utf-8?q?%s?=" % encodestring(subject).replace('=\n', '')
+												, ContentType = 'text/plain'
+												, charset = 'UTF-8'
+												, body=text_body)
+		MailHost = portal.MailHost
+		MailHost.send( message.encode('utf-8') )
+		
+		
+def encodeAdr(member) :
+	name = member.getMemberFullName(nameBefore=0)
+	email = member.getProperty('email')
+	qpName = encodestring(name).replace('=\n', '')
+	return '''"=?utf-8?q?%s?=" <%s>''' % (qpName, email)
diff --git a/events.py b/events.py
new file mode 100644
index 0000000..1510b77
--- /dev/null
+++ b/events.py
@@ -0,0 +1,56 @@
+# -*- coding: utf-8 -*-
+#######################################################################################
+#   Plinn - http://plinn.org                                                          #
+#   Copyright © 2009  Benoît PIN <benoit.pin@ensmp.fr>                                #
+#                                                                                     #
+#   This program is free software; you can redistribute it and/or                     #
+#   modify it under the terms of the GNU General Public License                       #
+#   as published by the Free Software Foundation; either version 2                    #
+#   of the License, or (at your option) any later version.                            #
+#                                                                                     #
+#   This program is distributed in the hope that it will be useful,                   #
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of                    #
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                     #
+#   GNU General Public License for more details.                                      #
+#                                                                                     #
+#   You should have received a copy of the GNU General Public License                 #
+#   along with this program; if not, write to the Free Software                       #
+#   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.   #
+#######################################################################################
+"""
+Plinn event definitions.
+
+$Id: events.py 1480 2009-03-19 19:15:52Z pin $
+$URL: http://svn.cri.ensmp.fr/svn/Plinn/branches/CMF-2.1/events.py $
+"""
+
+from zope.interface import implements
+from zope.component.interfaces import ObjectEvent
+from interfaces import IObjectPositionModified,\
+					   IZopeShutdownEvent
+
+
+class ObjectPositionModified(ObjectEvent) :
+	implements(IObjectPositionModified)
+	
+	def __init__(self, object, parent, position) :
+		super(ObjectPositionModified, self).__init__(object)
+		self.parent = parent
+		self.position = position
+
+class ZopeShutdownEvent(ObjectEvent) :
+	"Zope is shutting down gracefully"
+	implements(IZopeShutdownEvent)
+
+	def __init__(self, object, phase, time) :
+		self.object = object
+		self.phase = phase
+		self.time = time
+		self.__veto = False
+	
+	def setVeto(self) :
+		self.__veto = True
+	
+	@property
+	def veto(self) :
+		return self.__veto
\ No newline at end of file
diff --git a/exceptions.py b/exceptions.py
new file mode 100644
index 0000000..9d12de7
--- /dev/null
+++ b/exceptions.py
@@ -0,0 +1,12 @@
+""" Plinn exceptions
+
+$Id: exceptions.py 1261 2008-01-07 01:34:23Z pin $
+$URL: http://svn.cri.ensmp.fr/svn/Plinn/branches/CMF-2.1/exceptions.py $
+"""
+from AccessControl import ModuleSecurityInfo
+from DateTime.DateTime import DateTimeError
+from Products.CMFCore.WorkflowCore import WorkflowException
+
+security = ModuleSecurityInfo('Products.Plinn.exceptions')
+security.declarePublic('DateTimeError')
+security.declarePublic('WorkflowException')
\ No newline at end of file
diff --git a/graphics/ToggleMetadataForm.psd b/graphics/ToggleMetadataForm.psd
new file mode 100644
index 0000000..06aaa2d
Binary files /dev/null and b/graphics/ToggleMetadataForm.psd differ
diff --git a/graphics/add_remove_event.psd b/graphics/add_remove_event.psd
new file mode 100644
index 0000000..3948815
Binary files /dev/null and b/graphics/add_remove_event.psd differ
diff --git a/graphics/calendar_arrows.psd b/graphics/calendar_arrows.psd
new file mode 100644
index 0000000..1379897
Binary files /dev/null and b/graphics/calendar_arrows.psd differ
diff --git a/graphics/empty_portfolio.psd b/graphics/empty_portfolio.psd
new file mode 100644
index 0000000..bab9d52
Binary files /dev/null and b/graphics/empty_portfolio.psd differ
diff --git a/graphics/eye.ai b/graphics/eye.ai
new file mode 100644
index 0000000..3ba70e3
--- /dev/null
+++ b/graphics/eye.ai
@@ -0,0 +1,645 @@
+%PDF-1.4
%âãÏÓ
+1 0 obj
<< 
/Type /Catalog 
/Pages 2 0 R 
/Metadata 65 2 R 
>> 
endobj
2 0 obj
<< 
/Type /Pages 
/Kids [ 5 0 R ] 
/Count 1 
>> 
endobj
3 0 obj
<< 
/ModDate (D:20060113105908+01'00')
/CreationDate (D:20040606123934Z)
/Producer (Adobe PDF library 5.00)
/Creator (Adobe Illustrator 10)
>> 
endobj
5 0 obj
<< 
/Type /Page 
/MediaBox [ 0 0 20 20 ] 
/Parent 2 0 R 
/PieceInfo << /Illustrator 61 2 R >> 
/LastModified (D:20060113105908+01'00')
/ArtBox [ 0 0 20 20.00049 ] 
/Group 31 2 R 
/TrimBox [ 0 0 20 20 ] 
/Thumb 34 2 R 
/Contents 38 2 R 
/Resources << /ColorSpace << /CS0 29 2 R /CS1 30 2 R >> >> 
>> 
endobj
7 2 obj
<< /Length 1071 >> 
stream
+%!PS-Adobe-3.0 
%%Creator: Adobe Illustrator(R) 10.0
%%AI8_CreatorVersion: 10.0
%%For: (***) (***)
%%Title: (eye.ai)
%%CreationDate: 13/01/06 10:59
%%BoundingBox: 0 0 20 21
%%HiResBoundingBox: 0 0 20 20.0005
%%DocumentProcessColors: Cyan Magenta Yellow Black
%AI5_FileFormat 6.0
%AI3_ColorUsage: Color
%AI7_ImageSettings: 0
%%RGBProcessColor: 0 0 0 ([Rep\216rage])
%%AI6_ColorSeparationSet: 1 1 (AI6 Default Color Separation Set) 
%%+ Options: 1 16 0 1 0 1 0 0 0 0 1 1 1 18 0 0 0 0 0 0 0 0 -1 -1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 2 3 4
%%+ PPD: 1 21 0 0 60 45 2 2 1 0 0 1 0 0 0 0 0 0 0 0 0 0 () 
%AI3_TemplateBox: 10.5 9.5 10.5 9.5
%AI3_TileBox: 11 14 583 832
%AI3_DocumentPreview: None
%AI5_ArtSize: 20 20
%AI5_RulerUnits: 6
%AI9_ColorModel: 1
%AI5_ArtFlags: 0 0 0 1 0 0 1 0 0
%AI5_TargetResolution: 800
%AI5_NumLayers: 1
%AI9_OpenToView: -10 21 32 1266 735 26 0 1 7 42 1 1 1 1 1 0
%AI5_OpenViewLayers: 7
%%PageOrigin:11 14
%%AI3_PaperRect:-11 832 584 -10
%%AI3_Margin:11 -14 -12 10
%AI7_GridSettings: 10 10 10 10 1 0 0.8 0.8 0.8 0.9 0.9 0.9
%AI9_Flatten: 1
%%EndComments
endstream
endobj
8 2 obj
<< /Length 7518 >> 
stream
+%%BoundingBox: 0 0 20 21
%%HiResBoundingBox: 0 0 20 20.0005
%AI7_Thumbnail: 128 128 8
%%BeginData: 7154 Hex Bytes
%0000330000660000990000CC0033000033330033660033990033CC0033FF
%0066000066330066660066990066CC0066FF009900009933009966009999
%0099CC0099FF00CC0000CC3300CC6600CC9900CCCC00CCFF00FF3300FF66
%00FF9900FFCC3300003300333300663300993300CC3300FF333300333333
%3333663333993333CC3333FF3366003366333366663366993366CC3366FF
%3399003399333399663399993399CC3399FF33CC0033CC3333CC6633CC99
%33CCCC33CCFF33FF0033FF3333FF6633FF9933FFCC33FFFF660000660033
%6600666600996600CC6600FF6633006633336633666633996633CC6633FF
%6666006666336666666666996666CC6666FF669900669933669966669999
%6699CC6699FF66CC0066CC3366CC6666CC9966CCCC66CCFF66FF0066FF33
%66FF6666FF9966FFCC66FFFF9900009900339900669900999900CC9900FF
%9933009933339933669933999933CC9933FF996600996633996666996699
%9966CC9966FF9999009999339999669999999999CC9999FF99CC0099CC33
%99CC6699CC9999CCCC99CCFF99FF0099FF3399FF6699FF9999FFCC99FFFF
%CC0000CC0033CC0066CC0099CC00CCCC00FFCC3300CC3333CC3366CC3399
%CC33CCCC33FFCC6600CC6633CC6666CC6699CC66CCCC66FFCC9900CC9933
%CC9966CC9999CC99CCCC99FFCCCC00CCCC33CCCC66CCCC99CCCCCCCCCCFF
%CCFF00CCFF33CCFF66CCFF99CCFFCCCCFFFFFF0033FF0066FF0099FF00CC
%FF3300FF3333FF3366FF3399FF33CCFF33FFFF6600FF6633FF6666FF6699
%FF66CCFF66FFFF9900FF9933FF9966FF9999FF99CCFF99FFFFCC00FFCC33
%FFCC66FFCC99FFCCCCFFCCFFFFFF33FFFF66FFFF99FFFFCC110000001100
%000011111111220000002200000022222222440000004400000044444444
%550000005500000055555555770000007700000077777777880000008800
%000088888888AA000000AA000000AAAAAAAABB000000BB000000BBBBBBBB
%DD000000DD000000DDDDDDDDEE000000EE000000EEEEEEEE0000000000FF
%00FF0000FFFFFF0000FF00FFFFFF00FFFFFF
%524C45FDFCFFFDFCFFFDFCFFFD4BFFA8A8FD7DFFA85252A8FD7BFFA87D52
%7D52A8FD79FFA8FD0652A8FD77FFA87D527D527D527D52A8FD75FF7DFD0A
%52A8FD73FFA87D527D527D527D527D527D52A8FD71FFA8FD0E52A8FD6FFF
%A87D527D527D527D527D527D527D527D52A8FD6DFFA8FD1252A8FD6BFFA8
%7D527D527D527D527D527D527D527D527D527D52A8FD69FFA8FD1652A8FD
%67FFA87D527D527D527D527D527D527D527D527D527D527D527D52A8FD65
%FF7DFD1A52A8FD63FFA87D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D52A8FD61FFA8FD1E52A8FD5FFFA87D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D52A8FD5DFFA8FD22
%527DFD5BFFA87D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D52A8FD59FFA8FD26527DFD57FFA87D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D52A8FD55FF7DFD2A527DFD53FFA87D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D52A8FD51FFA8FD2E527DFD4FFFA87D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D52A8FD4DFFA8FD32527DFD4BFFA87D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D52A8FD49FFA8FD36527DFD47FFA87D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D52A8FD45FF7DFD3A527DFD43FFA8
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%A8FD41FFA8FD3E527DFD3FFFA87D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D52A8FD3DFFA8FD42527DFD3BFFA8
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D52A8FD39FFA8FD46527DFD37FFA87D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D52A8FD35FF7DFD4A527DFD33FFA87D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D52A8FD31FFA8FD18527D7DA87DA8A8FFA8FD0FFFFD04A87DA87D7DFD17
%527DFD2FFFA87D527D527D527D527D527D527D527D527D527D7DA8A8FFA8
%FD23FFA8A87D7D527D527D527D527D527D527D527D527D52A8FD2DFFA8FD
%10527D7DFD2FFFA8A87D7DFD0D527DFD2BFFA87D527D527D527D527D527D
%527D7DFD39FFA8A8527D527D527D527D527D52A8FD29FFA8FD0A527DA8FD
%3FFFA8A8FD09527DFD27FFA87D527D527D527D52A8A8FD46FFA8527D527D
%527D52A8FD25FF7DFD06527D7DFD4BFFA87DFD05527DFD23FFA87D527D52
%7DA8FD51FF7D7D527D52A8FD21FFA85252527DA8FD54FFA8A85252527DFD
%1FFFA87D527DA8FD21FFA8A87D7D527D527D27272752277D527D527D7DA8
%A8FD23FFA87D52A8FD1DFFA8527DFD1DFF7D7D5227FD1BF827277D7DA8FD
%1CFFA87D527DFD1BFFA87DA8FD19FFA87D2727FD26F827527DA8FD1AFF7D
%A8FD19FFA8A8FD18FF7D52FD30F8277D7DFD17FF7D7DFD2FFF5227FD37F8
%527DFD15FFA8A8FD2BFF7D27FD3DF8527DFD13FFA8A8FD27FFA852FD1FF8
%5227522727FD1FF852A8FD12FFA8FD24FFA827FD15F82752527D7DA8A8FD
%0FFF7DA8527D5227FD16F8277DFD10FFA8A8FD21FFA827FD11F827527D7D
%FD1FFFA8A87D5227FD12F82752FD0FFFA8A8FD1FFF27FD10F8527DFD2AFF
%A85227FD11F87DFD0EFFA8A8FD1CFF7DFD0EF8277DA8FD31FF7D7DFD0FF8
%277DFD28FFA827FD0DF87DA8FD37FFA852FD0EF827FD26FF7D27FD0BF852
%7DFD3DFF7D52FD0DF87DFD23FF27FD0BF827FD42FFA852FD0CF827A8FD1F
%FFA8FD0BF852A8FD46FF7DFD0BF827A8FD1DFFA8FD0AF827A8FD4AFF5227
%FD0AF87DFD1BFF7DFD09F82752FD1EFFA87D7D5252272727522727527D52
%A87DFD1FFFA852FD0AF87DFD19FF52FD09F827A8FD1AFFA85252FD13F827
%277D7DFD1CFFA827FD09F852FD17FF52FD09F87DFD19FFA82727FD1BF852
%7DFD1BFF52FD09F87DFD15FF52FD09F87DFD17FFA852FD22F8527DFD19FF
%7D27FD08F87DFD13FF52FD09F8A8FD16FF7D27FD26F8277DFD18FFA827FD
%07F827A8FD11FFA8FD09F8FD16FFA8FD2BF8277DFD17FFA827FD07F827A8
%FD10FF52FD07F827FD16FF52FD2EF852FD18FF27FD07F87DFD10FF7DFD06
%F827FD15FF7D27FD31F8A8FD16FFA827FD07F8A8FD10FF27FD04F827FD15
%FF7DFD34F87DFD16FFA827FD06F827FD10FFA827F8F852FD15FF7DFD36F8
%7DFD16FF7DFD07F87DFD28FF7DFD38F8A8FD16FF52FD06F827FD27FF7DFD
%3AF8A8FD16FFFD07F8A8FD25FFA827FD3BF8FD16FF7DFD06F852FD25FF7D
%FD14F8277DA8FFA8A827FD21F852FD15FFA8FD06F827FD25FFFD14F87DFD
%07FF7D27FD1FF827FD16FF52FD06F8A8FD23FF7DFD13F87DFD09FF7DFD20
%F87DFD15FFA8FD06F87DFD23FF52FD12F827FD0BFF52FD1FF827FD16FFFD
%06F87DFD23FFFD13F87DFD0BFFA8FD20F8FD16FF27FD05F827FD23FFFD13
%F8A8FD0CFFFD20F8FD16FF52FD05F852FD22FFA8FD13F8FD0DFFFD20F8FD
%16FF27FD05F827FD23FFFD13F8A8FD0CFFFD20F8FD16FF52FD05F827FD23
%FFFD13F8A8FD0CFFFD20F8FD16FFFD06F827FD23FF27FD12F827FD0BFF52
%FD1FF827FD16FFFD06F87DFD23FF52FD13F87DFD09FFA827FD1FF87DFD15
%FF7DFD06F87DFD24FFFD13F827A8FD07FFA827FD20F8A8FD15FF27FD06F8
%FD25FF52FD14F852A8FFFFFFA852FD21F827FD15FF7DFD06F852FD25FFA8
%27FD16F827FD24F8FD16FF52FD06F87DFD26FF7DFD3AF87DFD15FF7DFD07
%F8FD28FF52FD38F852FD15FFA8FD07F87DFD29FF27FD36F852FD16FFFD07
%F827A8FD2AFF52FD34F852FD16FF27FD07F87DFD2CFF52FD32F87DFD16FF
%27FD07F827FD2EFFA827FD2EF827A8FD16FF27FD08F8FD31FF7DFD2CF852
%FD16FFA8FD09F8A8FD33FF5227FD27F87DFD17FF7DFD09F87DFD1BFF7D7D
%A8FD17FFA87DFD23F8277DFD17FFA852FD09F87DFD1AFFA8FD04F852FD19
%FFA852FD1DF82752A8FD18FF7D27FD09F87DFD1BFFFD06F827FD1BFFA87D
%2727FD15F85252A8FD1AFF27FD0AF87DFD1CFFFD07F827FD1FFFA87D5252
%2752FD05F8272752277D7DA8FD1DFF7DFD0BF8A8FD1DFFFD09F8A8FD4AFF
%52FD0BF827A8FD1EFF7DFD09F852A8FD46FF7DFD0CF852FD20FFA827FD0A
%F852FD42FFA827FD0DF87DFD23FF52FD0BF87DFD3EFF7D27FD0DF852FD26
%FF7DFD0CF827A8FD38FF7D52FD0EF827A8FD28FFA8FD0DF8277DA8FD32FF
%7D52FD0FF8277DFD2CFF27FD0EF82752A8A8FD2AFFA85227FD11F87DFD2F
%FFA827FD10F827527DA8FD22FF7D7D27FD12F8277DFD33FF7DFD15F82752
%7D7DA8A8FD13FF7DA8525227FD15F827A8FD37FF7D27FD1BF8FD04275227
%2727522727275227FD1AF87DA8FD3BFFA827FD3EF8527DFD41FF7D27FD37
%F827527DFD46FFA87D2727FD30F8277DA8FD4DFFA87D52FD29F85252A8FD
%56FFA8527D2727FD1CF8275252A8A8FD61FFA8A87D527D52522752275227
%52275227522752527D52A8A8FDFCFFFDB9FFFF
%%EndData
endstream
endobj
9 2 obj
<< /Filter [ /FlateDecode ] /Length 10 2 R >> 
stream
+H‰ÔWÿn·|¾Ãöv
+9ËߤX’»©&dÇ@‘ÂÕÚ‡žï„Ó©iúô~äîíI² IêÞX‚¼\r÷Èùf¾yò»‹WgÝõîoã™|Þ6ìɓ¸W‡Ýþ¼¡«Í‹Íæîö°Ï—ž^>kxû¼ÅMÝwUo|3îo×»íù44ä¹O¿øâ‹gå7.½^6#.Ž?ŽÏWëgÓC0+­àò˖Ù,q®=†Ãîn{½Þ¾»7- ðcàëËñöÑQ<¼m5nI»·wïÇíáb¿{;ÞÞÆÝf·¿=o⏫móÍêFV͟ÇÍf÷C6«·ÿ`ø2újXoF¼ùûÕ¡1ùkt/äMýîs0=ÿ/Û«ïqåÕx8à°pþΗ_‡åãÊ[µÍÓï/Ǜ¿nö˜ñ×g´o¦,ûj¼Yíi°v�xŠÁ&_ÝmåyÍñ.üyx–ç÷Ͳ|á–&<…ן^àæÎxþw¼íþx¹*Ù(zÌÅEʏåNÓ6JcTԙÏš_1oÝëñýÍgKGbèÆãgú£Þƒ-/ãx_Õh''E;âøÏõøÃyóín;–“êö‡WëãHèÔ˵˻͸ÿn»>`WL¾äË.³»7xÀ<sجèÌ߁~—^¯öïƶÛ܈Ӯ­CßÞ½ÿÓêÇ13‰—¼¼·¯woèíÎxæg#±;˜ÆJlU9Û(1I~TY-ÏÍ3§%-vüy¹_¿[oÏiCˆ-òêbu3î/Ç·‡ó3\Æa£T~`ÿï\¦œñ|OkO¿Þ¯¯4Åÿå¯üÜ-~üôS¾¶ép·…Üýö:îÞçӸͥ9âq ûf÷®ŒÍÓxwS¾$ýÿ
+w±_oó[°oo—MØ.Æ¿Þ¯®×XêÐíߞÛ³·ëqÓ\¾	Ï؃+™‡M¸fß³¯Ø òðmA?Ê'"ë#€ð€,`�Ý«^¢ç}›̈)¤.ùä’I:©$Om°HŒ!vѱh£‰:Ê("VN!„.ø`ƒ	:È BÛ
xZìB×u®³îT';Þµx~òÁwÞy㵗^ø–¹Á%]ç¼³Î8ŒŽÛ/™l°õÖYcµUVZn[3˜d¢	¦3ÎXcŒ2ÒÃõ {u`ºÓN[­µÒBsݪ^%U§¼²Ê(­¤Šc;{™dôÒJ#µ”RHŽ­íEAtÂ+ŒÐL(!-öÅÇ7ç÷¯	àÑ\˜Ëó§-§Ñ& ¶è�¸Ö†µЀ"È
+1ýT¨Gø‹áÓ~ê3œ‚å_ùfð,	{¤±z™ýú˜Øn†ŽÑ`¾µL<-²ûÕÞ+¨cQõì“{ô“w¯<‚=ص{;*´ÀW}�7$ø¢Á2yÐ*€b	dxê	PŽ´t h¢F¶Çº-(,„™5Xm™p x¢GнÇÃZÉQ�R*”‚AI8F‡‰(“‡Ö‚äÅ£PB¥äPP
+(­„ÍQqu§µA:íQ‹E™PšHÏQ¨«Q¶åëQÄŜ Fjƒ["W(vc-CÝ{Ô°JÐã¼[Ç¡
Ò)¨„Z8hFçÔ#AÖ”‡¤H¯ .Æ[Ȍ‡Ø!;½êwZ¤ IÊä:
+ЪÅP«ú%ƒ‚’(šƒ®uз•ëÃÛÈ¡{2*( ‰–E=T1@4r@Éó$ š
+êi’…Žzèi€®&TØзÅUÐ^vPäê©üFTT"š¸ž¹°v&
)Cû~þ‚üã`Ÿºáçâ3\Pœ‚Ý¿ðßâ“‚
+œ©æÉU؃àÛ)ãˆo3ŠÂçO$„Šn@<-LíÙ	Y
µPµ4§mDn$ÔÔHP+1#ÿ?¯Ã0¬‰ñËDsEZ,a«®å¥-©ëbK”šÉó;êg›Ûš©µñsƒãæ÷³4ezû:užu-X«ï&嗋/ӏ(rŠ¶¶XSw¨†ãl£Gƒ\ªý,ð§õ]ª›ê{þ$\C{…Ú÷Gc¸Ø©ƒþöòð°"J3£*t…©€Ê3jƒŽ8:Y“ð/ï
+ð­ž%áWf•­
+FõˆMuŒ<*;” w²äL1»,I’e3ÊVTŒ¨ØP6¡lAـ²ýdó©ÖSŒçh;GÓɖA¨l6F“m¦#‹à/Å]Š·g!_a°•l*–%ÛÉ@V’ÄÂEŠ‡d)þ1ÕòÒ;J1Vï`•Ù§¼Ž¹Ý›‡ÏN:ûÕ
+ø¿X”ºÒWe)ºbIN5ÁœޞD-T_ŠñÓ1$2ptʉbNŠ©fE^—°¨J\D*1ÖÈèjhT9ʄ’cªÙÑSz45?
+JeÈH)Ò£ò,%IEY’#a
û'JÇj¦T%U"€•\çdiçl)jºìç|ékÂÔSÆ4-£˜™rÐDoë)iʚ²¦Í¡æÍ@‰ÓÕÌ©JêDØ+¹3ÖäéX
ŸªÄO¤À@c ®„P´ír‘BO3hI %‚
+%|F
+ž%tʚ9ar¢Â¢q˜5c‰ð�§nù·eµ)0sk0µKÈûðPDYÕÔT›…çOÊ'[^f®‡iu*€©¦"˜ÚœéÍs1,67W÷Û«#bm­Ri¯Ñ‰¬—PÀ|
+·x—²gÓ{,û»©³ó—Õ¡TÌ}¹	Ä/úùð‚Sc4µ‰¥Å
+µçÉê䗝Om{#±*rÅó	Þ;±²C’,­SÍb$Z“dÁÊrÅñ"	2å!Q
+âԂ
šä G
+ZÔâ4"4ÈA´§áb֜¬8j“µ¦‡Îd•±P˜¬/-Ž.+‹'UQYQHN"II’,#YD²„d|0èGV¬Y9²n8ˆF–ÉE‹,E(ŠL‘˜$âD >*$íg3ÿ÷~þ­Í¯½ ¹‘So¯¨—_6í	|p'½$h¦áG¤ó _�¨8 pS‚ž4µlõÔÓÇÜÕ#=ìë=˜¨µï©¹çpPI
¾«:jòœ6åFŸ!dpX°D
å~ßRÇßQϟj×Ïk߯©ówÔûêþ{êÿ9%�5e�WS@\ä�±HŽ²@@Ý'Tÿ@‰@ QèHå…”
z?0Ä^‚®ÁאJL@$Ðå¤` <ŽÒB ¼Ð#1´”$¥-ƒ^ù…‡¶Æ5!Úê6ÅklõÈÉFŽx?žv5 Â=A†¹q�
+
+
+
+Ž\8²á>+F|ŠeÄc|ø	lÈd`?›
•'L°G°Gy°dÂą~î?Ä¢ÿ8öOµƒbsÀìî5„µU¤\IXB=€\@,0©Ìo/ìÿa¿\väFŽ(úñ½ÀŒ™|%
c�>
o¼ñҋ0l‚dhÆÿï{od’¬êbU«¡ñª@ëQì$+3âĉ·¿û‚J…o®âF&	B~É͝}Sõ ¨RԊ&E«èRÄ}ŠÁÒd昮b¾×÷\„Ýÿøa<{œ¥¿,7ã»Zø+¯‡îãÄ¢íeôQ&ßHáÃaÜ:ª{{*ï=ǘw—º/›¼÷Iß	|�!ðæMàæ�zFP´MkP5€®…!!àvvà7Ã-p\Ëͺ@â,àõnàwÇ[ð¼×ø^ Átÿ	ԇûÇHûoÑj´… `Kg4ŒQ“@Ä,Т›ÔšJ¨÷
+âΚ
+ôŸ¨É £TœÚÂ4 ÌhY£†„¨1¡Ñ 4*¬&=ôÂFCÐÌ°jj˜47ôU44ÒVÃCÅñ<æ�1k„4DtiŒ¨Ò ±¦Qb܆‰örœXï2Èâ ¹<ï9šgў‡Ýûðn[º|Øłݍ¸µè­ØïK¿i¯Xèj‰Ë°Ã"g_îá"ÇlkÔ{sÎG´/t{™«¥|»èùωêÂv½…C=%¡/ä-ê	‰KL\ƒb4çƉ#$2"¾ ^…‡ØÙ«ðp²ÁžÁÁñpçhÈ®ñ°Ãá¥hظ-áÁለ[Ö0ùÐ-~ìË
+iý6k¾Íšû¬¹5"AŠ¢‹Oȓ&ôO¢|JÿW>…§ÿ.
+Þüûáç—Ý<þÊ´kڞ7†¾Ö~³î‰‡õîߦ•"r)†gU=nH·´‡•îßæïšÆß9ýÔ§õñuÎîÐï#»k.^öí“–îÚîǍz|¯¯Y–ÚжˆÇûŠ|ßqɇ·bÅq¶†¿5?/Ÿßÿõë»÷?|þÍÿcü𯏟óýùéã§wŸùÓÓß¿|üúG»ø—Öß39ù֑§<ÔíbX
W-íLX®›nTôÈ<FÅ$¨ÍےB€+9bÎAGÔvŽ;ȳD½Ì½L¾}ˆo‚ŸÒ/±ßÐÁ—±çÐ#ò<⎰#êbÎ@92.o„Û
+°U€Z €ÙŠïRbð5˜Õ€WHµ‚Q5ØԃJ+hÔÀïÃfµ`T²D€¨�Dj¤<fãmôx=Òèñ–
+o©ð–
+o©p™
+»Wn
+µùÉQ$oJ#Ú$pÓ·«ßºúì[œgúòß_þýáëÓûO¿~ùôá㧧߾~ùÏÇ_Þ}‚Ýùi܈àB·EåLZ®ååYØùG‡8.uþ`=ÜNžÙ݉ó‡5Ç_öÅî=Ha7žyóÉ/
;}—¿Ó7t²5âXŽJDµ’V	²9ÛH7çÛ%á2ãå˜Kã2åvƑr™qñ‚q;åv΁t–P·Ã¸í2ï2ñ2óH½°QϹçäû,áÏèt:	BG!aè8q‘ˆd"©H.:K£¦$IH“%QIX—f+h›g%xŸŒBEHºˆ¦ŒQ1(úz‘¶Ûb¿šCÔ9L?xÜ8º×ÄpvþÑøù¨×¾áiØý/pãy˜þ˜îÄ|'n\–þ\_kq?L?~úöÁöá¸k's/ãU×÷yÃï´àÍoó|Ãó½½:wé^BV*ui¶…‘ 4Äf)VÜYÂv*XœþÓ`=|h€gP|
\‰Wsj
+ÕA¥z�ð…\͐¬~PBºxÕP° #{˜ÙC›ajKµ¢]—p·�ƒ«ar„Pg@gÁ ytdEoãë¨ îƒ¶d$@ۓæ`?ÚÔqa¯B·ÃkÃ)ñT¬Ø@×
+‚Qh„ËIè\HS5¼Rœ%okñ—¿Ð‰Ëä39M^O¤·	ãÀ9±N¾ƒòA´'õI—¿ë»»Ï¨`טì"ì&«õ…¢TE¥¨S4ŠîjNñÛeúñ“YGqîñÂtš¤­ÇÈæöX’µe«ä¿9ªƒÞ_ê(=µX䣷95§[øHþHÖý…nyÜ]C¶Îör#nÎö0G:cg~~j§òw�86dœc�0ÌP;.Ë¿>”?‹/ÿ\ü¹ô½êUó¶•|HÅÞnÅ>æBW™/qÕwLµ­ªNíÕܚJ¹W³„Õn©ª­U¯êtP}²2W•cP	6*8–×�Aœ Š‹õ+¶¬„CÖàO<Dæ�ӜàœË°Ž,4ÀGkxitDÈå�i ¯Ë¸b«KHm¹m ¹Ñ໼w†¬s°âŒê€Š¾<›—y]
+ˆt�=	ÆØ#}R’)@-^ŽNWwkß-œ$~ìË
+ª¯Æ°®ø­yÖq Å|keþ•\¿H–ï†ô{·{¹=^qÊro›ÛW»Ÿ§i³ûîÂî³Ûg³Ië³Ô&§w£wŸw›¯‘UÙå—äñCRø6é{HêîÚîÊM¾ÞÈÔéé…}–š’òN2^KÂKÉ7{’m÷òëV]!˶0lë‚윐¥²5"k[äo¶Í¶~AK›æÒ=Bò[$"(†‡´ 8&ɀr‰†ºiQ?5*) ¢
+œå‚
+›Pgê-¢îZT_2(Çç½ <'”é€r(Ûå[£Œ
+jƒDc·Qñ½šB›ZA Ô\5
'z)ep¶›ÅýØï͝a³ÃK£	Ï:Ðo2þùS¯[Èù‚ÏÂn>éyWz¾àI²¡ºw۟%h_Çý¾xçqvsÓ÷…¢š†J‹ÅååµX+5©¥+ÁM¥æÅ6Ëyù	¯Nn„Ê0•]%u*õþ«ÊoRùyöò¯N.F'«ähe*E£—#r4ÕdŸæÞ<éÖ²ÀÀú¤¢<½@Y¢^¤,S/T–*‹5¨XKS½®ÐY1¥ÊÝk—ջׯWð*·e³Ž½’{~U¯fÖ³W´_¬ëRUÂÚfu{}³ÂYãjÜ«¼–w—ª%0ÙTì,w/øAÉ¢gÙ{á³ô½øý*4�.ŠY$ Fñ`0A¡¿Ê¨C}¿™ñdÞ)7Ìdì¶%O)yNÙ'•Z‚ÒKN &†-âpÂɤ×LB%)¥#T‘^Bqqý |Ì2ìt‡¡ÑºnP6¨ƒFŠ†kF£q†‘ýÂíÂÝÂͽBVaI*²R,É'ªÍ'v›Ø]‚&A“CÐ ^à»ALóìááY€æ]Ê)hî0“\´¸EÏP§ 8lÕØåxµlãU¹Wõ6^uãÕ´WûpµVû`µUû@•†©4E…¤nšœ,
L19·Ü=nÖ7áÖsó©s•ŽÀÇàbÇÃðãàÌFÃÓ¹øÉðlÜôxBn{<'7>:Ÿ[Î,™OÎíç׎_Ÿß…çȓaJ³ÎÓO”gÊSYD#ží~º<_?a±ù!§ãݏ¶I§ÚmçHm¤8NG©ã…7f[ou*ÜãUߞßÅӈ¿#2¼9ä›CÊ!7ƒÄá5)Us²Æ”¬S’²\'>(‘£îk·ƒOGï‡oºÛÏß3Às€YШœÔwU^A…ænUf,‡ìHùaJ”ÈÏ
ÏæExAN°˜žeÄ·åÃI60ìA.Üʄë<ˆÇ$0eÁe\fÀ~þ{äHY ‘ð4˜,eB΅6	çfþ¿»6¼ö*aۘs6êd#‰²&ÖB’XU%¥±“‡2‘~¦µB²‘ÝcÃ'‰;I)	lä%õ:(	ëBFYÉOØ5cÝšIž5…¢R!讔•^V;¡â–f•±”È$:¯(?“¹,ThS[©){CŽjÆ#‹P"Ã.Ì>\§œûïz¯:/Ÿ]׶¶Ûn—=wÊýVÚPx:øèWo›ÚoŠç‚—õ®‘ÞÅ}c)yØ×2ílCÓ³´¹Ô½Y›[`sƒ¤ï¸½T¿YòW$ý«%€Ú`I`Ú_øÿ¶ÁͶÁÃÕ‡mƒ»$@.?.>.=.<ÉvÜtö­
In\lò¶ÎiSË$2y?³0Ò\V“¶„ƒ5ƃ7.s¬e&¬d‘¸A2‘*YdgÉ?Ü=v“¬6—<šä"Á(%µÄ¢“T
+êÄjr	÷ˆF
+ñ?ÎˤGnå¿ ÿÃ\`_\Š›¡‹‹á³><`è¢Ãóòû™µ°›=Z˜˜ž‘ÐÍfUVF|aø`èpÁ†ƒ,±‘+VLJ™Ì„"=¡¤u”8	,;á%:R�*f!WŒ¤@òéŒ/HÆû‡®S|‡Î#äŽ#{ÏÕ}¦‹ûdßɞ³�£3	\g‚ÉHb¤ÇΈdŒ²7#ÑsqGšˆ¥µwfi¡EB“:8cùvu³šÉ¾0¬“ÙŽ[‡™“ã»s£[؂ù69ñޙ¡ÑÒÌÔv"{$¾/nnÑ~ ¢ônr-"€Ðé’ÀFZÝófæ‡QB›ÀáÒ¼7Ý4¼5ïú¼þZB‹_MÓ/o­þ1¾5oÝÛм©á3—ß~ÿ©ÏÄã;ÚvÆdž¿Ú~Ò·è[ùÆ~xWeé߆é]µ$Tßò3Ÿ²ïQÓ´ËX¢M4ï£Þ³|ϽßîÝLxŒ‘ïµyúÊ7† »Ð×wþ‘wó¾³Ê&ßÒøwÛÖ-ïPærÏߦwŠ»ü¶þmøýøöù¯üóó×/ßþcÿ¿üëë·ô_yûÓö߯ÿûã˟%ý¡÷›Þâg=Ÿ„„c5{ñˆ©p[
¬tõ¬ŽDlåN*Ò! í´ÜèŹR§°âÉï'¯Ñk §â”]
+Uñº¥í4Ä쓨
ÐÚiJÀ-�Ë
+ð=‘F"˜A~zé:Òª!•ƒËÍAgVÑ)Ýj&«^³Âú{
+í%ÃT)&‡˜kŒ98ßë
ºúdÛ§ÚMáØ	PB’5–ÍZ´ÙI)@ÚêRAm/‰l«œ³U„[7”ÄS±nÉ=‹1¯ä^õ©=žjþM.œ²Ðáû­;Í]ôÌHõ¥ì–d`¹ Þåë߆y™
+îrbɰŽŠŠ9 ˆmæÓNÆ*)L>3ýÃ.–Ì°úñç.¦ðPïbʑéX×:åÞOq:¿ÜKîâ士OÅü4¡ºßʪº!Bò4¬Õ4Ì$ò§iðӑÜO3V‡×.ÍnñÆ$kõZrÍUMUU
Vℇê/ÕÝVû\6Ñ�Ñ_`;¸Š|薬ØQßÀ‹Yb"57*9
+áÑðñ�ŠpÝ­c$@2pxGÇəD³*
+w2ÏI¸T¼QOÆĤ‘È45‚ps#\²NÇN€gGŽŸ�ÐI \¤Pph$ÆíF£äQiKà•BàH65:Ÿ®äE|ÛÎ]T8-¬Gû÷¼Güd~)ÐïÌGý÷ÜKþòÿÞÓgú¿ãÿ§ ¹W!`dsSÀ]¨’�wñ×bÖë”%¿³^§,ùµ˜õ:eɯŬW)KwÑù÷“ŒÍ÷Šúÿq¥¤þk¿ÔöP1ךkñb(ºM)Úý`—ÑXï&ÔшZ3#Úé )ínïZ`<7ؽ–•DÍjþ‡ýçXUZX`
®Œ–¬,]už°Z›6›ºåLiëäÙòkÌÙ«$0üLLa3—ý(äD&|Áڙk¶ŽËßéRI<)úïkQr)‡T|
+$„‚‰c$€˜ª¬B`uÔ9óPßr¬gªÐÑ+Ožè¨§?ê‰ï蝧ÎAŒH¾˜ŽqAwG¼¶k:„Ïoj½ÔRŽ©ØIÕ/Çóյ㩚ăYŽæêéc–ŒN£Ç3®�U#”%‡!'†®ð“�¡¸öñû×tSó¥–\«äc½6/)¡]Åå®ÕRF;§û@9ø-¸f¡®&/3uÝNÒ4–*뮖„öÞÙTnPðÇêxQg]}#OµUu^éò˜ØûAðpg`ÁÏBà*4´HSƒ­í´6ɓg³£Í™Ñ
<#ínæáYy”6³=Á)ãڛï]7äw!òV>Šð—§;…©1ªQ+d̈ó‰Ù9)þòþ¸�ÇØ´ ”nôDž^¨‡‘‰h'€ŸúxÇè:0EMzUOàýÆΝl†n¾`Çk«»lÍNc8É
§²#ô>³ƒSÂŶA_ÉÑ%b7n@ ã䖩Ì\>9}rûäøÉõÍùÝý3১;¨WˆÃóL¿1ÛҌεÆNlêˆLq	©˜ª{Ö8žŽ„Ó‰P
+Þ\§y™tgeO£rØ!·ÍäéýÄÞq×-uængA.Ï4¥*Ån96\’¬çØW1V®)։Û N¥sN¥¡È*†Œ¢ºßŠªKªäTzdI­òcAwE‹‰3áÅÂ>ÅA†ÀÝSßʌÇD'Ìn½ç±¦>œÓ4!Þ”G.
Üݸ=\º4x#ÅyöZ|mÓ Zq1Ê4–z	§³çvXٜZMœWL,~rOôÚ8¿û£ÖŠ«ks£¬µ®š¢Ž•¦&U]f™´JV×ÍõÕ4ÖuÖ*4^Io“æšîÚåJ!”à$õ›¯™7³ÊZCî`κÞ»KÏÂE#q™,"yæ~t¾UÁe²–Ê5‹å‘“s.>è!G¬Ù70úÀ?ªhp'Ââ—,1ì’Ò—+­©AIa¦°E[7O	)ŽÕ‘,€MÄYd!rlu:Ó‹Pe4\ ‰X'µ*«õ¢/øé’Ørf3¨»W÷.™^={eò®6çWú'y¢OÖÕäm.L•¢Ï®Ðò ÒKյӅºÍä0Vr½&^ÈMªDÛ°ô'õ¦e_Й‘MYȀ¹lFi n•Òv w†+¿UìÖgã4»LIc¤'*ÓÇuÓ8qª@uºÚAtÖ�ã¦QãÔ±è·ðcüóýëÂFrLWdê^�T†¨ªÉ0U€ªÆª®jÄJ'o­`‹§PòQLFàf`u±„ÚÊA*¹Ñ’lKutM|ž¬¡’¢¶:Ð}ö-y0…åb
+nìމp‚l¨ñïÔ¨wj°;•›NL)†(­ÁÇ|à1à³)±z•‡$ª§	ƒaDhH‰´%G5–Jµp)v)eE§Ë>‹ÆdÓ00&FkÀÆXn=7|=>KOé¦çWAn!ÐYšA— ¼�ŸÂ6p‡-à¢ððøz|—žyÄÞ‰‰1 
+
†`;[ÑV3°mX7ž_ŽOÛÂÔ!Dð"ubæA´GOHà”“°zŽ'ÇWã³®™œ;1ž»Ø;ë\Ì=›Ø-ëU—»tX؜%7eÈíhÑa'ö܃…›o[ò–7y³7n³mòdÛ˽õ}§pCm;×¼‘cÞÂ.ïÝÁ]³=[ò^
y—ZîîÍÁ½Iû2ç1⭙·Poáފ|}E×VpÀ‚‰ÁtÅÂÁJÂ4Ϟ¦–ª#¢Šð²é!A—ýÂI•W ?cðOŽÞ½Ô»Ò9ï[îZéYê˜÷+7kµQ™ªN¥>•.¥¥5<ñ{՜ÔoŒT}I]I=ÉÉíHÍø |ÈmúØ¿—?®ñ#oºn¹pÏӆ—íN›Ý0¦XH±ˆbÅ≅“#%’S‰f’Hv•
+ÐðZ‰¯â&g{=(؛¿nóÕ_WJ¼‰ýÌü’
+~0”àizÆ+»œÓmÇLhó°cqgaäÉ¡g¤ñºc‰>ŸD×;å6Pmї$F»ˆ¾ü%m}&ÐwºÎ$§³ÍÚâ¶ækËKê<¥Õ9-=º?6žÚòZIlmyôÔ´xŸ&µ.ᬖ°V_ÀǗÜÀ£jÓ|‰—Á;ÑV÷øsÙõëÃÛ£_hdð7Õuř×ØÓ}ÌK¥~òº%:>:þw ×Ò³áÝt!žHì¡ ü~`�`:3>·Šê=—ÎÄû%TKv@ã‘u´(È$æì7ŠJ)YÀ÷9MkUÞVZú¦Ï~Àìµm-@AVEt0©D.䆨¢‰õz§†”Ñ©¨òǨ2K,Y¸¶G^}Z÷×»ø2·´<.̖|9“øJV.Áß]w$”/* ò\Þ8™²ùD:_Ë}yiqiiº0©ÖekâŠòrÒbl)i!i¶ˆ´.@،¹zx{ô¬‘Œ¯c®¡ª@).Õåj«*³Ás€ñOEì·\±ª•âjfMU,Õ>¡�ՃØÕUEQ¬æòÌu¸P¦Òm×Ìèʹfõ4	š)C“Kјi(ë÷ïõK(²­y
…65$ˆ­Œ<VFÞÓÊÛÌW‘NþöËfGn‹ÂOpß¡6``HÔÌFÔOÍl‚Yea4¦
Ã@¦H‚yþ9÷\’¢¤*»m³r]ÀåVI”D^žóÝdz“YmäÎdåG3?Úy6t¸yϨ}à®4O—hêã¦Zhæ®ö®ߜ¨J~Eoš¼ÚüÑèëƒÙïvïÙoˏ}„Ö‘l!èC²:Fš2Ԅ;�¦ø¥ð¥èåI]Ê\yKiKY¤%yu²|,âU\%+[DUÆT;QEžÒ闌Sþ!K=&)nì‚¥d‡)Ìõʈu¤©Oˆ*1Õ73vŽ`µrR‹>ïr•=¾÷ylðlpÛ¨bIfªTSæª1Óՙ¬úÈ Ý°Xrâ¬#oE択Ÿª¤¯ÀbID‚Á`¯ñTþTéz+‰ÿ!1pR™iÈj¥Ñí&:¦9ìlFMƆϞÑj` eˆ²Œ*Ì^4?&؅Yv¥­Ú{Ø\;šNCmii>j?=-h 
yZÑ(#†mW}i¡7­fÀô¨Ê`‘2æ¨àܾL’É”º—Zؘ:Ð¥çìÔZæý¶$æڎÎÝÐéÌ¿;ZxžÐö<­Ï¶?^nÆ*çD¾Fc6´ƒ‚4À=FÎhÀs.hï
R¢ýãpJK™Ñà±'&LÍÜ.‚{®pÈ
+íæh1-6Små±½F,IÀk.ØvŠÔa3¶Øsú°GG,XÐi Xn‚ž¨i
nÕa‹̬#V4`ž%xq…þw†–‘·Ç)r=qqf¼ñ
+·®t§„¥ÀtÕjљ°zs쬍ýäb•$rd‘L#û@bÀ[aï8Xf‹æíÑÓ}?á’«´‚#*l0‡í×bOöØ­šŒ4-i~B¢bÂrˆ²Ñ»Aà#º;­U¹Rå:W©\£b…ty$¯O¹:ÅڜV¦\®J\”¼$rZ‘ãz”«Q®E¹å2`$¯Ö`'«ß¤z[AzoÕ[Ì0ÿ=¾ªªñ…[|y¨ˆ~¹¡»¹[WÝ dzý¯òæÝW_þĽÝÈ«ºÁé}×êUõÐë_0¦_èªÁÛžÛïý•×óލ¦Ë¡ŠU׳ûJÏnó0¸fhގuÓ߆âÆ_sñáÑøìëî×x>pß\_øË.×;߬jhÚ<îÝù¼µëtlì~µM­Ë[\ÐNÿìl‹xi½û•—ÛL
^gr°—[ž]¦KÜ×5ߑïo—¹b’¾ôJÜ/,òfú¥{·¾<ÿüÇÓóÇ÷/فðþÃǗtè§ÛÿøÏÇ?þv¿?½üë¦GŸ~ÿQîäD†gÝb,Êؗ|ê‡áF*w¨2\´‡êŠŠ<ùÀ¨,!”U+³ì™»PfWã>‚}E×d·#
Q|GâT¨ÁI…“g%F}‘ËC-ž³Qš'6	VVùUñUéUá]Utš«Šë!¶*µd¶Ä×�iÝð.
$u€˜Îȯ´ƒƒMp®
ŽÕ¦FpÄöè@“`²z0JÈ÷À‰
+ù®e¼Á+c-R†€°€4èhDòpJ‡œn	bÉᜓÃÆì03=Œ‹WÑÑ2DԀɍAbf”&zÌ{5ØrÏ{S‘÷4í1YH|sŒ)ðµ9bl1d„"f¤¬W&½˜óäaØŸˆÇl§¹.g
ɱ®ŒEÐ8Ä‡g	Žá­ñ‚fëÑt-šÏ¡	+·¡!4f@ƒŽhԁù£eÖ¨™-4Ǔ#ãBÏPАü±é7þL‚Éæ
+ี&“ªúÞ
+ß[á{+|o…K+ìt~³êÐVí¤WÇ_/¼~ÿ×/# ÿ>‘yð…‘£ðHa€Ñŗ:cÉ=¹W½ÃØ@GÚi/Ã=¿J1ܹáÑÃÁlÀî3Õ¿âي!÷W~MõŸ^Ώ\,Nª{Óñhz:¹{ïo(ùď¯ˆÃ³Ê«^è~5÷J.T¬ó,$ˆ#73¯‘•%·$d£c²1ÁØ°˜P,d❇IÃ>ñ´Sñ	Š‹Å‰‹Iƈ@øµƒ ö™§HÈdS)¹&'7PTe側<BkC¿¤wc;Õã¢Ü‘È4„‚Èа%pt9ÇË@Ø[<ƁÔ{h>Lê?ÁlÈ,z³èu,XÇ™`$3e­l&5Œ/Óéa>FÓÓ&,MàM°F¹¦—¦…)‚}áadx<XF„¹ég†ÕÔazÖëĄÂ1#0Æ~ö—10΅o.pO¸3Q
GupÖSC‚Óx#}T<ƒŽ»èg…%o`Ï5LÚ	¼ºckaÆáß½N¼ÜÃÑÇuŠX¸üÞJ?[ª­J%�ƒT.Ws©öÕi‰}í…n¯ÞŽu-‘ú[)å§æíÊ)Ÿ"•G¬iE®Vμr"–³©%r‹Dp)ÑðÙ¥ —‚_v‚Ù&QRg™„2	fÎ$ ҐhÓ$ª1®IdÓáÆð&Ž!ŽAŽaŽŽ¡a'⎏!BOÄŸŽÊ£ð£øc�¤d¤d ¤(¤0¤8d@¤H¤P¤XT‹z6ÙHéHùH	)PGr’’’²RO^RbRfj¨ŸöQ:ڈO(Ñ]H±U’
+_婑LåïÀHw‘ùÄ:r-öUå6~B±¿K¦Ó|Ï™Þ/¦÷¼¼¦Ú'½OŠ?FÅ7ͧêK~”*‡Y¢þ›Ìîrðs‚†N ^`nà¹d“ÐWr1[ 1¨5Ô\ñ†‘,¢GOŒèJ¤ÞТÔTI} ô¢Ê?¤Ÿš¯Š¯j¯J¯:¿QáUÝUÙ'jºÊ¹£Œ«„›|›t»©ê¶i¶ê5Ä:Ë´	´§4S”-™µT—†
+ã¢ØY'$ELŸ¥¨ùZ’ÿ»‹êZª©hÒK½5ö)R@òRé‘A¨~}|Êô„Å3^žðøŒ—'µ'§šîÖx)©Aè/©xèR}*Nz­4£ýC¼³^¦6IW—ƒ «ëÐruE‡½©ŽÔDÕK[ˆ…Šö‚VàË-–¾R¿D;xêrƒ-¬jÐ=ªÁ
6³Ên@‡)C´*´‚YTî¡­êvùŠ6
8££pVKŒ‘lU±˜K}#õ°çÈJ(…Ê §þ%í«)ªzº#w½ÛµŽ*ÇEWi›û]õLuL̔+…>Oý؝8™>õ¥Ü)÷ãԅÐM¢$'ét̄2¥šr%V5ýJÄÚP³ŠÉ]#¼îøU¬§ŠÃNü·œ%óƒŠó´Jv£úwQý“ò'Í_¢ÔO…Äû2@ÉIé›"5^fÕäå[Pæ2‹—; ócîC&ŒaŽ�sÀ—¼”èBp‰Ü²S‹—-Y2°$\I°b¨’8Å(ÅÅÅø¤â‰Á‰¡É±ÄE"YãޛŽþù^?÷ûµëcÞ»FÂk˜.å/Å]"q³ì[æ\áR󥖽¤ØiÇÚÎu‘úúq­QVs©6Ušt›Þb†H1Óg(&åV)†ÉUÆðöŽ»ÿ¸ÿaf*f™d]Á/‰^&¥—°sK¤–D,‰V<ÕÛR­åÚ5æZM¶J:Ó­æR/·çxk×ŀ›"®7 ÏáFⱜkI·—KÔµ°»]Â.â.&=’ãoHOxóö†¯zìo–¥nÕ­FU7wkü[L£Ãÿqþ¯òæÝ«ÏêØuíõ¤¾òå¹ÏíªÛнuXæbðW^ÀсˆzRåôqÜÐéWÕè1^óßÙåÐëý^_w9îy3ýÒ½[_žþãéùãû—¿ì@xÿáãK:ôÓ퇾¼<ýûýóíC<t«”{ùváËñ]öÿß²Oäbül,z’¸–:càì	\
ƒ¦áÖ€9eØ2ˆÐ@iYr!?L$ˆì`Ü�j
†žÐ‘	”ïòE{œzw?‚v¬í¯ükþûÛZµ¿Û«½6k—šõÀnI«ç]¯£kDgÈâßerK	4ª·Ý–¿•ž²hJ£eÝéj1GíXb0MÑÔÄÝä} ÄPYDŽºžR*sªDáßê€Y€6 F`Å -!šӛ‘�æA¢C8ºD“Â>ôzÆÐùXÿ#½\v-GŠ(úñwÒLJ~¤mÄÄOÄ1bÐBªV«Ô�ø¹÷ÎpžWQ\NJ\îÃΈر֌C^Ñc•E4ê	ê5tj
ñ×ZBü5eÚ@­aÝ/ ¼~­Ÿ]ë§ÑúI\?»Ç#§lÃâé¹x|Ð'ŸøÅ'óØ᭍W¿ó$ ›ÿŽÉ3cñìØ<CwÚÆ3¥óê$ϘÛ2šÎìÁ³z�í®·Mç…KžQ7ϪÙSkõôÚ=ÅNϳÎ:xžt³gÞæÙwl§÷XçöÑüAOËÍsóôí¼HƒgêÉÌr¹ùs²›s[ææ:{Rú€s«Î€¸ÎÝã[óPN„÷�çُ=I‡?p<=zTáwž¯Ô7GÞù̦%2b‘”ç㦻çä“ÖÏZÎÝǪÿßRS¢NÏv=ݨ§ËÏ·aÇùsšݤç|¼Ãþz²x\áñ•¾dõ×¼~OíC&öל>¾1Öå²÷;žöû°
+”ïy8Ib¯0,([\v
ŸÝƒi“Ö±-h{S$Á­ñâ¶JÂ;Ì5qîú„¹ÝNiwŸ/ž0œ�•Q5£z¥rM@±¥€KA‹ðåhLC†Åø!Æd„23ę4i5½‘k‚lÈ6…n
+ߐpÄ8¾•	9Ĝ:Bíˆw‚xÈ<…z
+÷|Ä>A?äŸ  ID
+	‘…
+
r"BށÚg9ÍށÚg9ÍށÚg9ÍށÚg9ÍށڏpZ‘©?Þbƛðpqs‰—OÂûõxÇïɃÄQ&xïݰĉ(ˆDQèAI�ØwÓá~òipK'yÆ0Ý.lô€&ÑM€”p‰=Ð)ÇFƒË<q¡b%_êjºÙ¹3â~ox/>ï¹Õ]ó¶w‘1¯|ÖµÁÁtû½*Ъ
+§*±+f×@NFñÄ,zعÚ]µ.Q–<k3Ô¤.9X<T*;ò(1%	ÔèAŒ§í‡f;#EgÄB=mÕXâ{5q>sCcƒW©ž½kúÊüÕèkÂA-Úª)9ˆ×(>JS‹¥*h+J©Y ÐÀTAa‚EËÄ¿ÃÞðTpÊ«¼ûÄwX°ÊE)§¤x‚tcPË,¢zXuv·ëê®;Þ1Þ÷Ï.Ê»{ÖgžºG΁B°)-®%Õ¨cDjîyü§þ$BÀà›B´žúEa:)Po
+Õ é­ù`à
<GÞoÑÜOš{M>?Åð÷‚%E€B€TUQ`Hƒ5Ay€S ­¹ïÀ{:
Ú¾ɗЉ@ˆŠMR¢"E¤ÈµHV”*/*fTÜè€5&=¢ E*’DM*¢TT‰²]µÐ—hL»yR¸0ŠՉò”ÿ<Š
+E‰Ê·L‘ê=†Ð©,T˶š¬Š^•“Ý*7X°ÝüÍóÍЬ,Zù“e+3W^M	$xs&œ,ÜkÕP\ÆóÞwüA)
ð¿Gyo ö”¾ÊOÀxü€Ýp{f±[°5¹z45qº€t'„@‹ž· çVÌ<ˆ™I̛Gè‘NóÞk=Y{_ڃgíè=0{¹V¿ÙÝ/áô.m}¦zêÁC{ôðž=ÄWó݃ýôŽn=ê{´š7šEŸmÑcì°ÝÅÞÚ¢¯ØT)Ší´±•,:)E±‡r±}Ø<)msCž´„%яXÑKŠÕB4‰FÇ&|8ˆÐ¢“%€Eh”±rë1J½CLFÔɈ’àç&šG%êQ¤|NiƒËÿ¾¡î½|‰XFD…lÄ·sD»
±ƒúï(¿ùp	]ÃÁ’Y“�ºp´Oxõ¢º­Õ¯ª†¬[RMiU_֝Yz³tç՟)¢p®ZtÇNõ&5åàð¢OwŒöéÔÇFµûN}êS†Û¦`c¨•8›•c9År‚åôÍdAhåÀÊa•S%¡6mëóqO“G‡—«ú‘f.Š©¹á9Ø÷Ñ¡pCõ,ïҒ,3[-ÀL DCå9»šº*âz`.{]ª¼=ÓLá,2IПÓ·¦xÊúûëÉâyÈQX/õ›¥Þ¿9…œ¬Â‡*
+h;êÔ#šlUò1ý& áJvƒ½`¨ÃÈÄ8\HSà*&"WWcÚ_`,i‹1'…âëlÚq©µJÂ^Iˆåf±ßÖ¿SW‚ÐSÚÝç‹''@e¬‘ùŽ˜/ï²´âi““À
L¶nlùÊږ?`bq¬˜ p7ÀFx¸È)sÔ¹ÕYeµÐé@!Ëj£¤ÞQð¨x‡¨y=©ž“æ	Ý£ðå“ô™¼Oæîçö`£þ¤J¡Gh DÐ*L—
ðAaFN
+¡+!
+¯òè«ç룰Ze¬Ç_M•­•«N!ªÒTIêfpÔËP‹ŸÒN/7$¦©ÒRJiÑ	©ÉH‹çlá84œ$·¡Ø¥™%34
+}qu1Ÿ³Â2BT䤅’АÞ1Á4ØDV„æ‡ð3ބ‡‹›K¼|Þ¯Ç;vxO
+3ùÀ{ï†%¾Ê÷xˆS¸ß
W’-°—	vbÚàIž1IaÑÂ×6ëêÆÄ¿‡ŠI„'qKԞ¸šnv–*ŽRÅA¸Æ{nuקTq—*.b¿érDÓí÷ª@«*œª„”0\0lYô°sµ»˜;LòƳ1³!`r¸ä`ñPQ ä8ñ(1%IŸ#Dñ±iÞ§í‡f͇­šµ3b¡ž¶áÊ,ñ½š8Ÿ9‹¡‹±‹ÁóÑÃäÕ³wM_™¿z½sMC8¨E[5%ñÅFÍb‹¥*h+J©Y ÐÀTAa‚EËÄ¿ÃÞðTpÊ«¼ûÄwX°ÊE)§¤x‚tcPË,¢zXuv·ëê®;Þ1Þ÷Ï.Ê»{ÖgžºG΁B°)-®%Õ¨cDjîyü§þ$BÀà›B´žúEa:)Po
+Õ é­ù`à
<GÞoÑÜOš{M>?Åð÷‚%E€B€TUQ`Hƒ5Ay€S ­¹ïÀ{:
Ú¾ɗЉ@ˆŠMR¢"E¤ÈµHV”*/*fTÜè€5&=¢ E*’DM*¢TT‰²]µÐ—hL»yR¸0ŠՉò”ÿ<Š
+E‰Ê·L‘ê=†Ð©,T˶š¬Š^•“Ý*7X°ÝüÍóÍЬ,Zù“e+3W^M	$xs&œ,ÜkÕP\ÆóÞwüA)
ð¿Gyo ö”¾ÊOÀxü€Ýp{f±[°5¹z45qº€t'„@‹ž· çVÌ<ˆ™I̛Gè‘NóÞk=Y{_ڃgíè=0{¹V¿ÙÝ/áô.m}¦zêÁC{ôðž=ÄWó݃ýôŽn=ê{´š7šEŸmÑcì°ÝÅÞÚ¢¯ØT)Ší´±•,:)E±‡r±}Ø<)mSãÐ߬ùâdþh¾Ìú§›“ÿÓ͓ÿ§ßÍO÷14>Þù§þb?ýü?þÔú/ÿ;^|þß/ó­ÉßÛ4=þ×4uþÏè+?7N_åë/~òçñ·øi‡þËÜw·O¼gùÉϼk÷¾k÷©wýL5QËu·Ÿ–??ß¾þéŸÿúÛ/ßþÍ/¬¿üúÛ·ò¥?|üî¯ß¾ýý¿|ýøU_úhçßÛ˯~´ýÇú
ٌiÈÿ-nrî¼_óCµ·‡‚é_Å}T܅vâŒ
YçEse†aÇ26¦ˆŽ¤[ƒE؁åb„AÂ(™e+xÌ%!Û± Q´ðôŠ˜ArƒLˆ›8<+‚'GÏa9ƒ¯egbAcÏ÷Õ¡|ð7ןQgҙÍã«>KœõÍÙ^œý:Vÿ|Á¿NìâV!Ïê±~£jXWqG%YËRMÖ3™îñ¯QØY« wSó9Uf¢K‡R÷Z¬·WÜ`X¥ì³ükÕـd;ڀ‡­À#6Æõ:ÉRù:,ÊgªÎ\õNé û³Q8¯³Ç9ޜóûǞ¾€J-XÈ+�n/u«*wÕ®Tï±~K]CC	Pr]Æ@š0œƒ@uŒ!cPŸêiQÐç’öºþRV”6êÊʖêFm­*ïUàû×e.¥¾ŠÝG Þ%¯ÿxÆ7­ðâØÓS
€êýy
ÈÝD÷åý,^ux8 Õ™tæê,ÕYMìÏ^ÚB
v©Âe‰g<rýétŠtü‡ý²I²Ô‚ð	ê½õB° äû/œ•*ýðÓn÷xá73öt4ïIU©Ô—³˜ä|ÞÒÉ/Kp5–Š]í/u³Oñš¾RWW«_5´”¼ý@'VŽ æ�½�¤g¨kÂç€>•ÎÞ¾Çý%j¤‘£. ûy賃è7}º®‡8)K);á„æÓÀèÙ¢ZŸ¸í!‚ÉAŠøF0£f(@ȍq$Ðü==H‰žÂ‘Ñ
(þLŒ4XŽ¾¦†`.¯½Àfå³¦GY‘“Ÿf‚ÄbìX™T¬ö•ß¿ò³Öò«EìÆòVí,¸®¦®Æ‡ZIÿþàgR?“ú™Ô¿=©.q*àð?2àk¾ Ò¿üç5¦üÓsûúKnø˜¿õm|‘ß6OA_rÃz¥Ijœ¼þÐÓíïœÝ<~kè²ß·?᷒Ùô̦?˜û˜ËÀkwµ¿ÞæéƇ=Û7¾/Œ˜sÚ*Ï ˆ‹ö¬œ8vñ-Sâ\‰©ÔŸ¹ƒÅ’ìÏ7ü*+N•çʉÁŠŒ(7D<*¾rá+ö¼=éo»ÅÄÝ¢âñBó-3Æ;}rtâç̀…ß
+¦0Ëk_fT¦SrWÆ¥hCHbq«E­’²2——|•›{Õ¦º®™ÁP›k_²¦•”4[‹‚õ$Z¸ÛµîU{é‘b-jóQ<¬×ÃÏ}òv<R9í.L¶ê˜9¨žKZ.ªŠEáƒ>+|5†=áIÂ.:™®{Æ×,0dža 5­Ú9B:ºž¼ÂŸ#¼ú€o_8#¤çàð¼~…ñs6¶8ýã¸<oK,‹ÔkA—©åRm±J²º`gKöxÐ¶uåºö¼z­„å4âCr´ï²¶•hÛÉJzkw5ñBѽyÞ5ywmú'q—eŸ*ݼWì×Uä…wÄSâ¥7!Žô„ƒ£Úö„.vÅoì¸Gܦ	ŠTꞠÏ[7`Yz
︐O\Îœeā›bÁ7½WqŸŸgÒ÷¼S™àæ_A¸£Ó™.8JϧG¡™¬ÕŠ—­\±ÏNß^’–|»Þ‚Ö-cµTÕ§©(ÕmßóS—žn©éž—²;Õ $	©å¢ƒjä±åÕ\uaú¯˜%l7[(Î{uæÐìÁ?Y-Ó—8›ëº
+ %(ƒEÎNg.=$žæ¨sž8ñA=és&€ÉPÙ0Óa¢§¯:Þ	£öO?Ÿ¨xwJl#B)0*2fht„ÆQ;OpLRÙ1Ó#ùU�²!d‘'å¯Ù@2$½T–TšH“éN“ŸÀ¤Ž°GI¬Gn™)’I„ÌøØÐ1CcÁÅÍ ±!iPÖ©Í&Ï%r&Áæ‘g1p§Íà3:76—œ÷h^Á¼£òÜÎB乍¡²8{'†á‡5-7̳Y“5*7igVëMîËȞ$ë{!lEnƒð�OIpÝӋèì
+g^`Ñ3ìz Ðù°ö?]a÷Œ†îõ2攠­ƒÊ
+ƒ_pÇÍ8Žë�q'܃ü3b`+.×àŒ#4áH~‚*(&â­âgS†_w¶vsw%2Ü&-”iÏÆûܦ„Ôí´ìµí¶í·í¸í¹ìºî»ßyÛ{Ù}Ûë@ëAéBë;!lEkÛAŒ[`4³Óg‚
jG8ø'N¥²¨Ôˆ
+p2OWsp80§LEATµÑ.•]ui3m¢×pßD7>ô¼æ$×}b0{uOÜ/ÈM›rýÕ±ú/�ÑH²Ïè?ú@þãã{ZBøÆ»9	á2Ð(3Žú+.,ˆㇾ¶ŒÛCÜúÚïÿVîÁ?Å×Ì%y¸áUƱ}¾oÊÓ8%¸ßjcݹÿ¸s®Êþ“øôŸ+ú‡J¶…õáž/„ßè\ߐ7W_–ÞéWù7ð@Ð̘é*j.5ÅXs#k,®¼Iâl¼éŒ7•8‚ò9R˜“l5'¦ŠÎÞ¸3SgFèÑgiCéɐÐ)äÎP¸“V6oõÙÓ&?¿û*%<Y|l2X´)$³Õ,¹×:jÕT)qj´n"ìÅ×CO¯¹¢5ӛ|)hºÇ˜jº,jÃ}(]°¬‘ò-PfµÍ4ࢷ¬8ÕÜV5Õ	…Gѯ‡¾Šìæ&»[Â)'ՌCÅIqð_‘4vpúë:joEãYm«ŽmßÕuW“¿KGªvÖÝôšizIVM*/B‘jRþæNwOjŽtȓ<äQ›iƒ©Ì\È|¨ŔÕz³  TD¯†Ãü§¡È H 	`ë"n¾Ðoêès ûŠ×Ï_/yû‘ÿÛZ*”’ú¿kWÛKÅ[í]Ý#Bœô9î-ˍoYη,Wƒ\‹q8
b"‹¿¨<«»èÙwò-’=n­…µE(íËhYrEj35¨®hF£j*Ʋ˜p²` ¡JT!ªŽƒ?ޟý­b­­ÖZ+XQg¼à-ˆå0æ,MæƒÅ2Í©gš*r@Óla!M1–œÔx|ZT+aí=®½¶Ù&yÎl5²p_Û=®1¬É3¿× Ò¢J+ó#¾ÇŒïÒe£÷.´|[~\äž\~ÿ3øŸÁÿÏ?kÀüódž£ö
8Qڎ‹÷åHð֞iï
è¦öHír£I`0)ÑD·l¹¤f’‰™df")™d}ý€þõd‘¦¼ZÂÌÊ0fò
+È4‰ ëH¯+>F?âÂ7;¼²áWOd³ôXfÄf¶è¢ç@Ÿ;îÕ
÷k@Ç=®S‡«wt.âÝîhņ…\Ø·Ã%>N®õôŸø€:M꿨?PûU÷¨¢Ï’?)ùÝ$ªäo¢jþzÑ}VþFõçTºXڜyÁh•B>)Ör*rÅZ›’ÕΊž–V¾«Ùΐ“àº*)r|¨ŠŒ<r¿,a2z¯ó»%ß•¯«>¨ú¯¸Léa¸9«M1¿³œ£³­Õz½Ð<3Äl‘2G®±°xÎŒ (¡9åÚ­b­Íj­Õséª>¿ç—rVÓc·úk�‰ü8´
endstream
endobj
10 2 obj
17594 
endobj
11 2 obj
<< /Filter [ /FlateDecode ] /Length 12 2 R >> 
stream
+H‰ìWMã6üü¾\¤HQd0X€_
+r^ä”Ã`€næ>dóÿ±õŠ”,»í™îÁî!@«`»[¶¾^=VÕ3³9BÍúÇàÖÛP÷¾xÔ¿ÔGJÈ!…dóa\˜�ô².m©Kò’€¸„E6¿8À.`�íW ùê‹òÅgŸ€¿ÞÏÞÖO„ñÚëy%Ú\‰d"±Cᖖ?Ð77`wLÀ±ä/kØ\Sò¶£^¡ï ]B¹øƒ·¡î}ñ:WTÐÆKLq‰6š°†
+–ðkƒ!«	lz”Õ’ÁF⩲¤I詤$ÎA±ü½ÜËÙ«WPþ(	žlÖM€qÚi»ÚT Ø$�w¤l°¸´\ŠäáÛ·	0€¶zZ‰T¢™HD$аJÞ¦å
+£Ý¦ù�·Ã~jº½™ïB߆º÷Åë@^M3+®0ákÁ#GÔ¢ 6mZQµ	t¨§Gm
+PòVa€	…v Éƒ°à¢™Ý^Á犥"g#Ž‹ÌƒwQ…È5™¹F+Vl›WYÁXÇå…~ü\¡ƒdÉCL("™(@ z±.0Dg‹
AmqcÉãDŠ²ma ¤òŽrz	U»…õ{ú6Ô½/^‡w^ßy}çõÅ«;}ø”ÿR(ý`B˜Nø˜¢“-ÿhc>ίéäýƒ_NZŽû·úðéÍÇåÿàZ;šèða¢ìœÐ@WÓiÖ'¸àܯº¸_ÌhTùpïèF#·mõ1&9ôa>\ùOÀ«»i‘ƒ­ŽR,–kšyFVíüÎÛ6úðÐ?t4®›«ú~›?µçÇ_ÿúüøõéùï¾#?}ùú¼íúåôÓïÏϟÿ|z<}»NÁü¬nî=™“;åG4ÍG¥µ6À„ˆãO=–VÐQ'¢«nzÅO……ÌX¹‹	&šd²)¦RYt×q™!/".iÈK}Wbªm”˜£ÀPbD_ԅÀlòr—La©CX΢2SODK2õƒê±hEÑp”ˆe(BæZ—eŠçBx³8·ÇW²E%ÃI

X£Ž9O‚£ÃPà㢠&øUŒH¸)f$]AEæ]ãšPȄB1"Z
+±Ö£èfT–p;Îӂ¿ÀrʀºR…È×=¤ý=÷ëÿ“ÿì;®þ’ÖH7¹?_ý*Ë	oýüòêáð¾ÝïùÞòöŸº8ÿeÿ܁’kà£Z×µ­u-k^ˆ	e™Ï­ÁÞ¬º­­µÚJË-µ®4̌ÙÂ"ô›¦ëZ[­µÔ\S5(‚Gß9S5Uœ»´RK)¹$ô@€…x؞+³‚ÁÍ­¹åšKÎ9å˜GümÆ(gó¤²Á­©¥šJÊ)¡Üɋbº³è ƒÇ_ÑY–Ñm²ôŸG+:´ä„æԘ°V´jUèڌîèâE\]íÐÛz\ӘǯGX2†9šéÄal岩ɒ‚#GœgñžÓ™ó™‘ÞČָÅè3;}]Yt){eé¥ø™‘4„á‘žt̤DH±$F¨h!HɹZ#O•\	[™Œ%²&¼r'ìy2(:òhÉ¥°)€°)Òºö³ÕJz)ΤYˆ¢‡�OÖg2ïȾí!zÀ(iÁh†Æ†¨lŠÂÆÈlŽÄ‰l’ÀF‘Vñl—™-ÓazÇöY$`[çQÈþôývQr³å
+íâÐ6
ÐH	
Uð@
ËÃ`fµè¹ýЇ÷TsÃy
®âpyÛ‰¸Å‚oxS­Â£ÊC/(DDa
+Š5x݋¸½z1{AÏ[ß¿ƒÚ“!Dˆ¢„0¡OÈÄcu¹*º´îH|ðÉîO}›†S‰Wu8¾Ä·^ÑÀ¼ù‚/¯;Ca@aáMi†eð,qÙ3gFºšøZ¾gS47͋M´819±91:±ºe!˜U‚iؗ‡9üfÂ]i´|C38^‚ïøŸ‡:œg½k,††F+ðËë	8©ÇéÂµäšÆj¬•†[*¸µ„Û¸]+vøzƒàð`•=”ù¸òàŐúHÕ´TS±À…Ú*B,.ƒµ
O²t*üŠ¬PÆDÈDÊD̺œm‚&’FQ¤®šÊÖµ­²ý3®kTNQè6©±ërg¨ø+E¯q1–!}›øÆyO	tôæIQ
í¤ëaã*.E‘Åt¹`†’ÜBºB< ܃ÂÛö£4NT†p5²Þ½P8Q:w¡zÒhJ]ð°©qð5¶mœ’‡¼�IëSº§g¯Äü•EÀx=&¦0‹Þë,pÊËè͕lbëó]PL`}´Ûƺit[ö:¤/Îl–Ñ«d2xÕ¥ØeƒSL]’¸$oõ¬eFÒZ±$^!X1P‰¾-Ô6Q¶u_dúÖfî`º{	u‘Í^f´W'µ
êE&»QÇ@sÆP@2¸jÛ?ômÙ=^\^|^œž^pûî÷Gǧç«aûÓnûë°}?]¿ûþLv‡ëÓó=ÿ,l”6uCÛ^­nçð°î¢‚Dç8ÑÅ)z¨8Æ
+õ"Y\d‹oF‹—ÁO­F²x‘*öH±Šc˜A8”ç¥O†˜NÎ?Èò9Å”Èí#ä·ÅÕCø0CjŽ´‚;{rg¦~TxÐv9û >užOß~(¯'ãež5ó2î#ìvÄ`0±æóÅÞtT¿t?BÚñ{Œƒ<E”3gy(Ê£õá:o9
+×Aˆú~›?µçÇ_ÿúüøõéùï¾#?}ùú¼íúåôÓïÏϟÿ|z<}»NaúYÝ܋«¢TBó·äéþvO¸véRßP¯û’u-TÛì翳mñ«m±k][ØêkËVA¤[Üd…PŒäã¿“›4È$–ájÑ*0Zeä‰U+óÔÄ$53CuËʉj›¢[z•ƒ’xzU„º(MNe¡Ar´™T¥E‰AÍX9aXmIAûf¡xRÁò\éG3Í(ӊĆĄ’*ci>b=+òƒ¦Fä¡zFxN
+ÅòÕZAÁ&h‡ EÈU]×Mãþï3éÛ'Ò1JlSwæÑ{Óè­Y´1uATÑ¥.çÐãzœAÏh=Øвž´ 5æÎò¿ŠÖjË֌Öo	Öwbµâ´rªÏ‘zÔï­ðÞ
+ï­ðÞ
+ÇV	q苊žˆì‡^Ðè�Þ5˜ö8U‘3îhu¤9\{K	üÌàFƒ•Fpa£Q ¡‚‚ˆêϨ¼AÕ¥æ	õ–j[Vº±ÊRc©°ÔWb/íVØ^V­öª¾ª¦ß/©:TuÔu¯l¯mfˆ£ÂÓÇ<êl™Lú&…	÷ª·f
+«ŸÉ@Ç6‘õ4´e£-+óÓÈTjüq]·FÊé9îbûn<¤D0Nx3C\`fËÌiéÌ0•9&²žÆ҈a=„õ6˜z[þº¿òÀjdF›÷–FkLb†YÌ1-ÿe¿Z{HŽè/ð˜/H e‡~?È'ßWBDZ²Òn„Ì^ƒaïÊ\DȯÏéꮞîß] ‘"tÑÛu¦««¦úÔ£i[ÓDvÎ]¥©¹®‘ói0ó+2‚šg4Ÿ]bB(
+´5 ¯…ˆ¼ÏAêKLl¬Pà¹Û8P‰Ö¨Hç¨L—ñj…ó–(WeË¢|y”±ˆT9CÂ\ ¼]õN#,êŸGŒ¨‡gH.võj¥BÍ4H:wîW(¤9x†Âz{ŠI\Âk‘Ÿ7¿ˆŠ|†Ê|
+}"JTl¶¨à¹ŒÑUýÕýòòj•Æl¤9¢òŸfG¼ZL£\–ò¾Qá¾Q¡¥B~\‰!ýÉ!«ÁB"=}¾º÷ò–§gïŠ^z–þ艣±½æ‰çU·ßu”J»ß2›@ûìbuoýؾ¼<\ÿ鸹Þm7xùô—óãîp³;¼ùî»ŸmßìíƒÕÓ_ӝŸ<ÛÜÜl‡GÃýõá°Ý¼ÿ×°ù÷ûãƒU/J6ØP>àè{r–}ñ‘Ä¿àç?~Ìð×áLjášðßãkÚgÏmøRÝy’hÁ“N/IÚ0í'Æh]𥢦¨¿X㡽>àB_vÞ³d !­FcD$ôëç¤ÉF™ÓèÞ-­J‚ØDš5¼ãÍèWZÆv Yir.­{ÇÖ ‘D;·îVoçÎŒêBö•vh|=ñâ]L胕¦Å¯ôQ}Õ¢÷u:»ªÉÆë+°Žiý 8‹Þ݉5dl‡€MѸ[·{×qlÏŸ*)uo=D,bU”zOHâse¥éÄ+ؤÍJ“Ç•$ñÙV«ÃsY•5úS |´Ý;ö¯ßE†<`¥É¹ÎÝʇ¼XôîNd«šl|ò•zfæp‹ÞãæÜÃÌã)œ¬4-f§CسħK§Ò½øÄÍ°W‡Î“>ÕCC	ZR)Á¦ VšwWJÄ\=®Ïýewkè¢Ïööû×ï"C°Òä\çn¥D^,zw§4š<	m‰hëJOÎ>áCC‰>—ØÔvVšücX]扞Zäɖy¾ÙÿòþõÛ͛-f#PÓ÷ÿº&©>±I&í=}cÔïh+þ%é‡,ß¹þZ¡:µBL¯*uDŒ¡ø
+MPŒ:„ò«âðb³lßdrßì_
N>T·^“UL°2H[ª±IJ¶L¶e’A™lO"üÆÄj¦ˆÙ†q£ZÍ$6;iNÆe~-)bÀW O!­OBù/¥wŶĴ G·Hfô®ÇQaîÔ‚Ô,QâEA$Þ
ã=´”	z^sçJ€ӐV¥kÁBVrd¥†È˜)�ØX„¹„�8kx}‚tÿ`G«„]ˆnÓUÄÅÑã3àå.Ùh¤Ë&ò£À]c€÷.e|/"‰¼u9D½ÑðÂã±ô*Nä0¨9jþÎi¹-Â&8®Š£Ähà#„¬e0UEÎS·ðá[a‹¼•E8ïVåÆ`ŊO8ƒÎG–Û·ªXyqe‘oV/å&tŒqt±G¸.,äé|â#„«×եܰ b…(ʍ¸éمÜR­b™ŒøÂ
6,Ć̌1áU*?ú„ÜdLÅJJa'¬]ÈMF2TR–·ä3‹’¨0¥þT;¢’.•ª\.òbÞX.X¨]ù™ôHg*!Izš+H’ÁTÃà|v'T±q˜¡Z6Ðs¢9!·•„±;Ø´D›Ëmü+–œq&˜…HgœyÁXæK’©¼.UŒøFk¼5K¹¡l…
+«E@¢[ÈmfT¬dIÕ§¾›d¬V4>âRnKc¥”ÃåbQÄRYlQlmM,b±Q5Nç}=üˆ8X–„ÏTûSc”°g-ڗYÊØ-:Œ¡š•^GˆTRg"Þ2„qÆ0I“ÞtJõl!c.”"[©Xj¨>9•÷sQûQ®ãŒiŒ_hK%Ã9µUDÉâ†Ä(å]ö>¦.7—AA]Jc\@6[…
+:í\¶{\Ö©˜µÂ¾–7N.dãw–ÃL£®É)Âb®+µpYùôÑñxܦaqØÿ„:t½~ÜÒï큦Éßzg¢Á䃗°9ÄRiP·T{º¡S|âÐ9Ûq?AeWzÅÞP±â“å^³9µ8%é¯¡ßçŠl]¬¥¸.{±¦‡zøG>éÞáÑaöetAg(æQэÑ!7Á??!¨JƒÒiwŸ±¤1—¥ÕK£1jA!0ÔXLÈ+ސæl(˜êˆT(
+i5·š8å
+HŠ\ÂPps\“óҒ®W=R骊!G¤™,L¾µ.OQ¹-t	BºÙtWÓ~˜hëQâdV¡9&Ì]½žÊ·“²Ç’	«º—Í/sˁ½:ý-‘:±á	³Ôã¼-P¶Bo‰³"MÝcd…¸ê#O
+vê|^µ4tóJ£Ì£†LW²ÂyItN§c+ºo Sçþ;\˜íÆ5i³ý퇐ˆy:í{Ýp½Ð¿º=ÃҜ·„NäM½nŽ¡œê¾Nqîwx8Û­{))Ú<i“¢”…Ð<›úûœ&ñtw=\ÿ¤•Ý¼Úî޾ݢ/, Ab`:$”E…ÂP†)´qç-79¬ýìžÀ[ñÖ‹™¹'
VL6s£ÃZÝ9wÑtF4d‘¡^ ušÀµ±²ÎãÉûÔ¥MB¾³`ma…ȹŽ©XGQr¸`¸€[9ՋªMæ‰3(â4ÔUµ›Í&ìþ?\o.v?ßì~9lŽ‡G	šËk4òüS
n†?àç‡ûÏ·oÿ¼¹ÁÀ¶ÇÇïházÜ(ݏ†‡ÏoŽ»Ã›…æÅæfÓhµþ¾yõv›\)ðŸb^hA€©‰:‰‹FÖØ'Æà€!Rp+¶\»¢E1”˜zƒŽœŽ„aÐAv¡2¹”PD‘i¦mV1ěuA6ÕÊ´17úe×ÿ÷À—|,Ìÿ\Î+L¨ÑÐNP’Ó¤b3Me©ßKl.ë硻¤ï„¶êÕØâ]$¼DT¤ê	ÏXCeUCxsð¦#<C-‘kÂύ~½„ÿ"¦£µ¸`¨—ûPz¾L×U¡mf!îi8 c#·"Z¯Òó*Âéb¿Ž1Ú)¸N—m}½ÿ’j“¥QVƒ)÷?‚´U}ˆ”ÇheÊ@(GáP¦ÛuŒñv­®)׉'K«wŒÜ˜‡îNµX©\Å-ú›6ñR{gs,øÏ)Y4–:dªz?ªàe·Œ1ÚΛV•­Þ)–㺪Š2g\Ìå„1ð—.Tmx}ž6(”:¹í2Æx»FÕx8À#ÐÌ꣹Ž©ÄÌ8Ý?}&dËsÆZ³nKôTŸÍŒèŒµDŸÛ½SLGp\P²c:c-…k€Õe®èà®1:tëKûÕ±¦è×c™kfv¿^®ÿ/tŸpoºÝ!Z6Æn@G‰®Ð»Î>hÙäí²µ»Í­~½„ÿï‡t”ašFÚ!Ý">Þô±BáˆÚw#y»Œ0¯êv]˜Å¨¢°Ý˜Þ®»{´·jÔxÜÑÞà䌷Qkù̺-í¦séd·Ž±v¿¹Ý»H|£ó¬ÒŸ±–Ñ«†øÍSڞøŒµ„®anˆ?7ûµÿ‡ÕåêÞú±~yy¸~¶¹ÝC–϶ov‡‚<î?ûxÜü‡õ*ۑ븡_0ÿЏփµ/ŽÞE %‰¡™VÁŸÃ"YU·nµ Cî&§ºžÃCòþßoß}|r7}*ø¯
+ú¶ûÔ`VG@ýÞÌ?âë/p~¾„ËŸ.û»¹¼mþW/[ÊY™nÛ>MTtÃɒ™—?ÚÏj,°	‚W}2Œµãß«×ý^Fï%¶³,Îhÿÿp¸À‡±¾¾oG&æg(˜æÆG.t×ÿµ3åòÛCà‡MÛû¦:.òŸeR"
B‡MÎÔþñ·wŸî?íj‘‡
Qs¶Òž¡ÿ›.ÿå mâõþhõòõïŸ~{÷ñòöÝåÃëË/Ÿþùá¶u_¶:2%죨ƿ¿çoQG™é›•â—õÛC?çe^u±¡‘}@G|g¾Dï}&*kÔ¸Â-j¦—Üó‘øF1û‹ ßÐú¦F,úÂT(íõ–w¯_Üíç†üçvœOaH—ž\^ýõàùùááõý»·ñ\°9ûš
+àôì¿S²W$ƷۙOŒµ„Ë„‹¯Îd±Ô½�àG÷Óæý´q~'MžV’|t­1à:+ðYAÉÁùS®1„ڏ“Ï隋w‹¥ÇŽ_ŽÃUéL%vÔVÁjGºÔYòòá–§±+ ºáÒõê¼
‡AÒzµÒ5VL:oˆZì¡dGåï$ó‡Î$C™h1;ЖXh•ñØsµ½¢á·íÝ®-ØؔÕBÀ{]O.ŒeÞ`֍×èP…W3]
&¯öuÕ+F6 kñNšë5ÜÇÄG¨+_MLé‚Û'SW½CŽ‰C¤®�ì©yFoÏfÁK5W²×LÝe¸¦äíÉD;QŒÆ•]õj:
…¶·¨5jƒ#Ï°šY‡»	eÔÔÕΡ†�0Ý­ÛӁÝ'w‡;ª=¿ªûäál¤žjµ§Ð©O£‹=Šåøh|Ô¥âªÖ‚N'{bA÷	Q\‚2„x²gªu“Á…r2'2«O	ï Ĥ“=eL÷IJadb<ÙSFªKRVá•|VÓ6*ŒÔâQMZ›h°áBÃuÌpë“
èÎ IH@Rdm_Ä I–¤]§tsº°ººl >Ö°±g%QŸÄgÆ¢­öÿîcˆÀ™J8™
cæ…ú˜‰8d3RùdO\ê¾Æ·¶&SU^퉲Ý%¬A›µÚsftŸdOhŠÏö”êëJB
j©g{–õ‰¸*bŠ²Ä
+†Ä^›ÔÄ‾‘†Ô¶/¦#[¬Ú)]“ŝ›ö©ÏÑ8׳Bi¶ÚØÛÑôÕ~£>¨9ZV<ÇPq[M¼²Ž¸úBAѧׁN¤g';\£5|J÷¡~ÖL¨.çÕôùêŠê¸úü5F”¥ÉHɝlW!YZÔJåÄ·¯TåV›&M‘"õ¡Hٌ)4ª´«Ñ÷$þM÷Ù«wؗ&ېìÉ΀?E
ssažÍå¢àN5YWº¨¬Üh##ÙÿxñŸ‡?cFý/ÆÔ§OÙݺËùw/~¥¿þË~ûôñ_ºÏ/Þ}î=¦}rg.?âß«ÏwŸîìåÇ_ï͜v˜ØÜc¶ó)¢‘©‹3;ÐçþàµÀ'R÷œÜ�×oºuç۝Ÿß=àŠ†¯øÓ%EëFC,Ô ådèÈSkyºCêyR^‡×X<úwœarëA'ôZ&Z¾¾¨U 5ÜGãžp±­$§ƒ4aíÓö³ŠŸ6xCPº‡bÉûڜðLÞ@ÖêÛÙ	ž=»;º‘ìIc’QßkÉäÎגLhwÕmNÑÒÓ^]Ð
<­ä‹Y
+Pb7tŠpÕÄéBgÈ&³;óï[*.ñÃÚß)\(¥vFڞc8¿ Hd¼…ÞÚʗÍ	¨Ô]Ô`v¶+êLöŒMº ¼uQ÷me€™\VnÕøà JŸÝÝpf[™ ÷&ðÈcYÖÊĖ3oîރŽ'˜Dí=õmB*†ŒÈЉLYõúÈ1€Ú8ÆÔC,k(‡~d0}-ò0††´VîgŽ¾r|H’ùÎÙS)kÉf:L_78¦G-ÔËlÀ7¦XÆÔËÔÕ,,úgšj»m,݉‚LN¦NìîÒ×âeFžàè0ŠATˆ°wuP'ÉËÆ
П…~Ûâ˜Ðc}½>x~
+ù€/CúÄË3†þۅh}e‰è3¦ˆP6‹öŒØÕê!ΑœšâêNƒ�½Òt@º1h!@	3‚2³¸%]1ÕábêdÐÉ6ŸÖRYfÚJv¹8|¢\ht¢I…½œ‚…º‰Öˆœž€›ûýÅùFN;­ô)VjÜ<Ñ�¬ô‘p1}¡ú„ã‘«#ÞgÄE9\¦a±¡A¢0oŒÈI%Ã3Á,°cOæʞ‘OÛÌ»‘¥ÛŒÞæþY'Îò1¢´%à–ª7h½Mm²ìÂ|’-xg Ïø¼Ø*ÐV«vºö˜Ê‘×üdèG.ˆû”5%ù/$Ø6·»Ëî­l5ã¬/«ìÄ«ËÕ¯-Ü1íXô0Çk¹7‘
ζR…Ãr{wɜâÁõ¼GŸ’¹
A`U!ĹgZK-‹¬MCM†pÈâu«=“J
ψq¸¨ÄìH?0ïµã1N›"}x ݊‘=³GdpeÏPÇ­æ~<Ѷ”Ü=æÖÿRžß|M8¿\ _ÆóD„IˆÁÒHAÅ)Em=KçÓ 8¤Sž3%CÚ1œmå’OŽáœO•Õñi›hB¨Žœ¹k#½mžLq‘‹•!ÄIs¤^Ëê<n06€Jã:­M®eׁ´>aÍ'y°öqŠDî¥kJށóï(Ä'ÑXñ¢±•¢²µ•¸­ž…sÕÓ9J[
+mÉvƒ˜[oé¾ó-H¶à^ñŸ+ÅV’·â½úGâ¿'èç\èÐÏYÓ+֜a£à²1ÉCnØ՜ ‡ÓçMê{¦vðšxnhRí‡Õ·ÑlUËZÊÐ#˜|ßi
+f_´Õ	Ýé¦îh·òÌ՞å‘×S_ž°@¯^F8<"Kt:£8œ1{|)=ëÛÿ<&¸³jÞPØ­ouû¬ñgéQÚRhK¶ÄܒxK÷]˜oA²ïôÿQÔ¶Õc[gv5éñµß_°ÊÔ¯T#€O“[‡ŠCîèyæû¨2rR_¹f¯npÈô1ªLîÞ�Û£Ö–	kl¡‡á¢ýØÀÚ´NÔÜ_BßµtfNq.ÓMy}á
’æp²ž³¶è°8ƒ³²ƒDÄÔBƒ‘1DV¼F(ˆµ&¬çÊ ?ͧꓤé@ŽŸAÿ®æ!#ø¢‡Éióˆà9§ç†Ä
+‚#BN‚Spé€ü_.“œâ„¬…KXN5ëH ¿« aÛ<`­7xù¹‚X„_¸¢aíѳ•îx>­Ô
+¢¼Dt—/»0߂d´CV ½5ñ„?֖è6øãÈ Uߦa<cö½ÍCáºËЏdª½šÒ®ô
+yHÑin˜Ó¹H^_†‰£H`åzgÀ_£ñ¡°Õ°ójÔÚì¦|¬YÜÞpB§im¯ý¥q*Ê¡_M׎®
QÐîãÆÿK=ÍZ!ú¶Uª¹UØ­Ÿu{ÍƌÈF•sjË­j–tâ¨ç6dÙ¢[¤¿×:“PÇÜåôbå
+U]å|0pæ[ É³Ö>,–¬M£²3[½C³/zxY‹®:"±5§Y0sw¿¦3"fSâeÑiõ(!è¾1&YbVÆQ|Ú¨fL:Ç¥xm
YŠW&é¸Qè'Ž©†Ê=Aˆz‚\î%Û³ypßFÇ=¸Ǹ7¸‡B¡Ä$Ã
Z¿p/ynF™{irks•j¿Ø(¢)(÷t¥ö8r_0¶Ü }\š
+®Ó¢sØÀ-ú8¡J—<Alð?Ú«®Å®ãþ‚ý÷Å A¼žÏž™äIRò°‰ƒCˆ #dYQ`×°Y!üïSsºkÎǝë‡õ
FX.Ïí3Ó]]]]sÌ{êð	êðÁ«x-q	ïÄ`±Œ­âEð ^›³˜q–š¼±ÎgE¾xgI½è,£ÓÜ_¨Ó´¦ÓêŸ3åœ@ÍѲoB`÷w?V®³“çâÙÍsáqœ±jMÍ6À†@×X7ε‡O8h×SNÙ:cö³—‘�TµV÷{ˎ!Ðì•ØÙ,¥ø‹š-,Þ\ÓT7q¹¹î8ž-Ï»~X@ÕømÃ"ô~°êí:r×<7Ó°Lï±Ñ«9j!›¼Øi#tžÆçÛûó„ÜŸ	2Mó…’L˗C¿GÙºÇÒ½¾ækåëÈ_>ÍÑy>ߜ¥yÕ΂FÊE#”¬Ëš�Q­Òð‚4$”æƁûeK5èd£öNgàL:/ÉìT/ˆ÷\è§#ál|œO••€s¾O;cÒEÏ0PÂj}¯ôõçÞºÞªí$Éٔ°¹`%JÅ
à…Ìéû—$EÕrÔwu5éÀ¬@À¢Ä8˜gŒX‰êGúÊ¥Ô-·µŸÝύ~½É8iûÍ4+Ñ¥1—‘pÛ»H“žRë+n;NÒ­³)ӆð¯Ös`ΙuãS‹¾sœ„¢™i·R£˜å´uµƒî̏اŽãÄ<˜SªÕ¡xã#fƒ¥¦äR
,Q‡	
+î‚t‡DsEM+ìm€µW°ùršæW˜‘t¬ɗñDåYîŒ1òÕ F¾Î¸‹ä›òtÊèÙc.¼{š _H¦¸lg¹@ªœ· EZ>M3ð+F;‚™$§³áÞÄ.}9–˜¼° û[Ñd‚æÙ/É‘Œ¸qàut‡Óá²ë£-8z}´˜ÈC+b…ÑVtô?6ÌE¥„–°¶W¢ÿè†aHk�¿V´Ž‹ÙÇvvàâªή?ÇféjË6֞#xhE>øîf×Í}Vò~Ä
[8Tìù.âü‘£™Î2MÝ¥4ÏJ2-Þy¡õOª¹ÇúçµÔëÇâjo¶[‰¹yDP_½n¿IMÞ¼lSÿÕMùPÿ5À¦Ðë¿eö”BS²ÍˆùãÍtxÜïÝfÐLG҅ñ5uÓ¡x>@ÅÜR~ªS帤2Aš	׬c.u×´Ï{ö8U·~a:˜§#|6î¼ùûM;½xyzûüí«W¬ßÿáá‡×Ÿÿû￾{zúðø àë?=ìàùðådÿqòþå;½ÂŸ·_n>ã_åŸ·?ã?þ„¿üЗS:ýùôϹÓýäw£Z­W«55TF4ª5Ô
|w€ómtÜÝ!ÈxyX®÷-þ|<ÄEÝìó°tI	×ÇãÁ±Ï4À]r<»•¹Cb¿úþ›WO¿ÿôþéÓOï>ýЋ¯QRø&/OßüíéñÓÃÇӋׯ_½ÿùþ»ŸžÞõ³/O¿ÁÉßáϼvÚ-W±
GoØ÷¥®Ù‹]•m‹Ké,ígcŸÁ˜KR°KÀ›ַŒï7Àåì‰ÉÉÉÒQg�XQ¼±y—¿½±IäÙ£ØÇ jÉ®Bä
+ kqÜ øØ,€özÚëi`ÂæÀOy{×âÛG€P™±¸A±³Ñ	¯%ÚÓ�!Xã÷‡Œ_³œ¨E‰V ¼¾ŽrF/– Zbá•×ZÂÇڕCH¼s_>—…u)FKvVb°�âó Ãþo®úºb¬ìuFm–×eL–\
+ùy‘’CbIK$ØBæ;‚=ðT¯¬D¿5cûÙç®X)è}ò™‰*…o\á¾½*ˆ¢±íü2§;(Î{!þöœbpK15³AtLnpÅRåpKj,ß»7­a¢àj°[Ta—5«Óå·ah,ˆ0€`è19•f“Ù�c�¤Á`qeœÅbbmk10Ö!H,ƒ)µ²0ßõX÷tL/ ú0×b)_š7pÿÚý-uLz‡F¸‰·;´ny5nñʅCb¯Y³‹”Œi´\ÎÈO²7—D…-+ƇƓ¨>sK™ø¿²×ƒÂÔ5‚ÒËàI¹€Sà“aÑü€÷1®©±™‘ÚçݽÁip�\+å›8#{owN"LTES¸©8ö¨…"á‚5]÷êÕ8(ÈÿÐrðfŠyxno„E#˜øçá!{ښ¯§éîYÕFz¦a-+àæŽ±h‚`ý£Š ô!E¬j¡e;R×ûj°ØëTŠ0h:M¿ÍǕ¼tšÚÛú’Y³
eeEVݘ«dvà:ւÔF,T‰Ú¸¬›
+:ÉƉÚóÓÁ|›…ÙmFdø©Ñ4iHƒ=­óŒ}9´8~ßYlp§²‚a°·0Mz«Ñ
+ÙjJ£hɳ—#Üé`*‡Æ._
„sïý\œ]a±vsŒ¢#™×
Uìe(Sƒç“„A¼FÞµE³í÷Ãbgö`æQü¥Ú(B7FÍ+֏BOvØrˆß;õtÀBäœwbFáH£ëR>ÉÞ+½¨÷„=nê“þŽpŒ´¾y÷!®©ªÝøÒØgì§v¿
+ycÜq½é°/tY-1ÀT†·H,Dk¡ä;�pvec„nsp¦à�k¥¨Ö1+ûnà=Ønq)µèv0çÊ«–l¤O(êQó.ð¬M†¾Ì©{Ø\£òaÙ±Àԇ@‘Žï#YmF¤mÚ"_פÁ_Ó]ÜIB5þCa–)ìœ÷ož*F³ Ýt¥í2jQ…ÂRzª4�â–:ô&óúéT¬R®!”Z•Y9ðåšÍRuÖZpäŽdm]ÎL‰°½6ŠÙrÖøå9JSðm°&¦F=­ÎÚñuÒ2y{¸ÁŸ‡Ô‡Äù(¡èë:êH(Õ)€~PB²K¿D‰^Ñf2èË�6¬d<ùì×|89ˆbHa¼.¦X7w³¿^/©(¦¤)AòÖ¶M¿vŧTÁ(œQ ‰>¥Ã1Dj"‘ÄJ‚¶Šbñ(›ºÔ	°¸`oÆÌ[į÷™û¸.«v!@ÜÃbUWÛÏæÑ*ˆÀBˆÂ%¨¤õ£Ç9<ÂÖYÐԇg+֋5W›¨€W"I¡Ÿë‹
+Z‡|²¢7çøýÒ§3×5hÏr)òÅÎ&§â]òn±	È!X>ÚA8Ì¡R’¬.éÖyú”ìlüìO€ˆÊ$Þ$|SŒjÀ,“µÒ7^í´ŒOqçu¾ØT,iÔ%Èò.€>äqVÝ@öz‹­¸±«¶Hº�L³Î4ˆ Ý냀ÜX!š)�èMÊ¢T½öš˜ìK¹ûý=VOÈÛÙu,-CÇxzµêkî¬c¡ƒX¸û¨'ÕÀțæÖdh˜4²�­ÚxT¤°7„&‰|õŽfp>œÜêL%ÀU‚èX¶±ó¼A€6Ò`Pq+ÇzIj:–²½*¢Æ#ð.vÖ{ÏrÁpE ·Zr\9jåï»áKm“,åV'ê u†'’ž®Åj Üv¥iä,š¾ÑW}VَœP2A4CÚX>öÌⳌÁÛÙMe҈*-ÙÉZâø}©Zñÿ—w•žîfï¨ÓVP»È|Ó¢p[\ž˜­ŒÒf6ÂB;š„NÔ;mÎǒ­çʖò8šL6BßÝ°	ôê±XÁ:èî²ö,0©ŽV½ª¸.ž5Ž`éAÙ·xY€ÎѯQko-t5]
3Ez!’žå*aÿÇ{µcGvëÀ­x>ü‚@ì´·2ûO_@áöHGí—Iuظ$Ö§u
+š=lª›Ã9]%‚Žûâ(k‚Pîü½!¡e	=†q‡üJšïZd,€O¯íX›|Œ'3™é¼pq8
+è$ñÔÕ¢£sTš-¡ßÑ£K£Náf™2³¨¢õ$ˆ^?‹ë</€¶k4’\<÷*’Ÿ§
+ؑΉiZ{ªfòýn5>èc¾îW¢”FyäˆA6f¾ghð⍧3€‹>—kÂÁoAH^³œi›Õ]΁D®ãåôeüýYµ6M\7ÿМÿ‡ÅÓz(mMö¨t¦mº oaÊq8w^n,²@Lžƒ«Æ!…ô¿í<ž¶1¥á—Ùy´qÐVŠe—wµÓ_Í!aü迼¹ä×t⎕gg uéB£×û0ÎoÛz}ôÈpNù¼ÚZVgÆÇ(Ëg’P͘ƒ.qý+Íkl×ÊN{‰9È÷Òא¿~ÜÁ';ÚÊecw›m‡;?	ûÀÒgÇÌ$Í)œ;GÀ6X ÓÑÃ	~kÈ©ª¿mà³DõP㥄_™W–7ç÷bŒ©–BáFÂߊ|pº¬=®“#I°\B1ÒÃä÷�{ÆUd³ 2
U
¶p/;àÖÂbíj3-�žkpg“žB3@1U€&F/mޛP4hÍÜüOTXÕilaMFá¯(^'Ô@òkX›n®Ò0žúµB..¨ž\X`vZ�:€²Éñ[‚äÕÝ“
+£"ÖÂÝ1†Fa)|ó¡¯h’ TR³E×éemðf{Ok¸+f™sfV7lIßôLråžÅï&ÜÒ¥,Ðmþn%±ò(yÑ£Gü¾»dÒ0L¡Üx•Öbó÷j’t´×¬ßƒXò÷åžôÒâáˆóø­µŸ{yLÔ
+k†Ÿëá—tóWÝ¿.V?—YaÜR×úæ8[pøE{¬• 2L…”ñÔEva&›)±ã_‰h6N¡<Áú3.[;ÍááC˜o»Æp½íKö	Þ·-ÜÕ®…Ä@ª¹:öJx­M—Þxpهt¥b±ß”;ÈJ{ÄÉPìôlÃ:õšÓčeÖóµe—8<Á£<ïíÌ¢)$ҝkA‹ìÙ�JÜX`ûþ'pÊ©¨¤ÿñNiR( V®&ÂûvÎÍy¨Ž4¸bC6;v˜VõTYÀ9Éà«ÆÞ´tOZ¡Îgv’wôÉT’aœ|9àwJ5Jãm|ÜP›5_†.’"®z²î'úžt�b.s»«Å@?P-ïå’ó?)+­‘ææŽûGÐZ‚xL½
+tø3rWøM€Ooî-8æYì¢N¾h¬=£gsÀ©ÜíÄ)Éÿƒ÷Ã[ÔÇ°ä;ìÎAdåne§Þ5§Ÿ4ô“~‚3™–µtæN´S@žo–HtûǺÜ´aå²q‡é*Ì՗í£e8‹¤­KbÇíOL»[¾è®F¸o.%—b¦2`ùïS#ÎûïñýCéõ#GÍkp¢ya�në9RHŠV߯>‹æV"=e˜ÔCºòÔÈߟ½îÕ»v{@œ<n`#9QŽ¬µçÀ®õVò—‘"ÝYuž"±–$t˒ޏ‘ûïËì]Ïà„Oɕ‡îÃÞyxsü=ØÒm˶‚F›	µÚæˆW¶üZ|˜Ë$Áe=§Övç:MÍ<-ž@¬5ÖüX_Óœ&éWÁ‡, Îê	WÁÄН\»òp³t¾c34Øh§–®¼oU	ð²A'[Õyð<ILTӟu"å$…és°RôÜîª^ٛ‘éÛ
ˍy<ûÔ°»Ù7àªÈ×ÑOcYw⯄ñe:ËT”8ƒG»&,ë¦îà`]9´ÃÿQ¾úÒX ]9ËcpkÓf‚}<ÛíBÕ8OÙ¾¨º¹­G{­ÁUIPÌx‹ý͙m€á$)Â㛕:‘jêó¢à(Çs³”üž†j=ÉlZøƑŸLu?:U°”¨Ž	M|%<GWz)òÙjk™Ú¦{`îP{ËÙÄÔì쀜‘“MŠ¦#§Ât¼MEqÑ[[šX>äö´úË>)€îR5gÆ\´~ñéÏA{í!é•0ÇÖi ¿Á%m¬†óÒâ&{|ùÜçÎE*Hò‚4xï_nàŽˆú÷žIc°Rí$xÙ(À–º•‚GKÝ¥;¥œæÔCÎ<³
+”Ç„RðÁçRÎáß,—®1³«×¨G_Jbò<Æñ荬îµYð ƒ0œÊ•'¸p2‹Fôú
+.Yú׏wøÉMwº½Y6hýíU¾:åŸtY ñº(¿nÿÉߋr*‘Œ„^χà(_sÓLŒb«
+ÀÍ
ÀŠûÝhp„+ø=SÍ€ÛZ¿Ñ©Pa²jí0‰µ½O°¹²®Ík¸Ü}æÚ¥-ªzåv|+ț‹™Câ¾\šhçX[YFfGI2N¸cåÒUE/;è$ïg€eò¾·H0taA͂Kr°¿»Ñ2ÎÕcý•µ‘¯Äýi€(ŸÚG{°Æ(¸÷>¹ö9×
+ýwî+}6X@l”—½™¤w°Ç¤)¸Q3@‘Í€i/<‚7ìua¼©®Â©»²àài£¨Âî…wˆ‚)/qdFu¸¥K÷î§áé†Ç6Ga뽜Ž?uˆ}è׺ÓÙÀZdÝ)+[ÙY)7‡©aÝթȸæ‘u‡	Ös�LßæuóÀpÎ}AMíāñÞ?ufËa¬ÏÎ÷t”{Ÿ{dìwÐæS€/ÚMý¥\¥ëMø̧N}v ‹agì;ÝÝñX|Om&øØm"Y@Ëûbnöšy·
+-dàC@‰“!¾5àOCêÊd"Ði®eÇ4H!@Æ-ø^;ô‘ãºÜ8n[t3¸£-—uh¿t¢�&ÁãdÎ(�jߔNÈNpO’%à†ÒhÔ㝛%±ÃŒ˜ôߍO¼¨×Z<iÿÔiJ—µTˆQÔïŸÈÉýÃä/揶[JöÇæó'ƒÙì9ޞäëxøYì@gÃ}«�9ãRUiôJ‘ÇP©î¶85¤bQ?óM„’%°ÖŸí‹êº9\Fñ›a~8¯¹¾(ÐȊOTÀÄzÔx%<Œ¼XšÙAèçK|e·óõ}-]TŽîÂ¥VE‘X¹ÒC"¯²Ç3E¯Dw£dÁµ±,v‘GP÷
i�pJ%náLòfϏ¹¾.7ÛÉ]mœY÷%ÅáJ%FmÌ[Õ\¼™e	nå|_7RÙ,[3+DH„ˆíÔ'½./ýòÔ/¢½qô}†³Á[“QH‹êú(yÂږ6UÇæÇ(ý_7ðÁÃ}çÖ_	ƒ
+¤VZfd[*ÀÁ£
¸ôÖÈ+S×N:ÎMíÿÚ?׸o€)è>~}1_Á&ÿþ0è徬ý¡*[ÿ{Ñ]keÿ]ö)æ“÷³’|=-l«û9‹ªÐÎH½ü¼æ«k¯Ÿ‹¼>·ÃáZD)=7xQ°®š;qxÐÁÜ¡ua2··"ï}+ûÁKèX;4Až4~%|&‰l§r8˜¦Ñ
SH-@]Z`ðÂ÷ªÜòö½ñe[yÍ»ƒ èÛV&1€fLbøÌe¸=\
+òæͅóŽ¹Ã›bsœ•_	Ëâj.¶»–Å—’¾
+õ¬W½Î]·|¿ƒš�6Àü_2©l¥T•�iÃ@²C)òö™åÎì¹V,W*¾âÎdz$—»³3à‰º3î~Hò´•që‹p	5ågè¢i£Ã%ì¶Ú©Ô"@ë8DwÙqßòâ� °*ÁñÇÃNk`Ђ{¹µæ %Þ3' ˜F>‚ö0!TußÐc�›¥’èvo0pÂ-ބVbÆ[[w8"”Ejº^Ìu}苁ákšTäÕÇDïW¥¶Ë¼C=Öbßb6.›…
°ÆûGê fö9Ÿ<.À
»àJ'æk=£1;Vèß…³£üZÛA[’sÕÃ�èŸ.ùyµ�׶´gÖï+`¥¶BÁ¬ý�lŸøͨޕ9Ùûê`lÉòÁ–Tæɸ7è'»Ú•Áä�—™jm­µU%ò؍�Û̙z¤»Ö¶ôoØ;€«©ßš ؐp{\ÊH™«߱/g¥Õ}@L=ëÿøÜi¹/iõüÞö‘YZÜß^ÜéðâŽ�ËE¹îåÆ)À¹TÇeÄ&®=ŋ[Jp•þ˜\é_7r~‰6Ä2K…;Z¦o½˜Pë!1»»ƒ­
+*Uw‚al*ìLšK™ºÒ/öj'Fíq¨ñrý;â{´F§…1í¯>¶)&kåùÅÈP½uæÖSÍÞ֔yW¡Ç÷®B«z{ѕõúÁ`M9˜@ۋp_çóuÝ$mAhJKIÁn£kÜ¡…X×ÖöT€­•$þ(Êá°›íìL»‡
¬4yËÆr8}aëa�›Ï¼¨µÇvpå„@]­CCxU‰à{1‚sò°ÝvA­ì{Q:b38¾lYC'3Ÿ›¾g…½¨â–62À\*í3£}³µUÏ	êã¾Ü6ê
+}«6.ç„xšê‚Eü�5Np	NÄ6àlu]ó„¿e€’Ã׫?ÂvØÅ©áµ×­úVSô£<Gx[x†Þ«(ghÖn­HoDÑÛsñq®<&H
‚·3yPìµIƒÒ¯@s±å'SE2»ÈَRõYi&*‡¾‰3á¢ë¨9K³¿ÔŒ€Î­3ÅÐrM†¸ÿV�¹ç;àè¸ÝÅ``½7
+©~]w%uxT…ê]†-"ÓÃâE­JézjÌc€­.‚V3a¨°F÷
+p´Cæªn§Ø 
ðÁ¨�;a¨ƒ•Å¹³6Ày[õ½¶Ï¸½¿>™Š~òÕWHnöx«º®NëŸM–Ñ’,ò®Ûu*3uqé.•Ï08Úíž!°<ÌÓڐ¨w­,wIè×78Ù8À(ü4RÝñ¼àÎ|yÞ�ÇXZéÓOÜ	ÙsTA] tM„ё`Ú#5"В)8…óè<ïeö9¯Â°glÂ¥ª©R—1®±4cÍ –»À¡s-W‘ŠÛÏ!/ãT©H~•í[‘o€Æ|;½ïçfwîD€¹´ÙtéFÐZF‹ŒÆeÑ÷H›“uµ\Iˎ»ö¥Q£¶ü-ÉcLö²š^FŸƒâRVÉ5`e-k%©Ï[ÆlRϙîkëûÓÔHk‡Áp¹ÒÅg…$p¥\èIG€ùÈ<4ÿ][YZUO]¶†ú°Ö'ÀœRq™AôwW ²*A!£·Ÿ\‚‚‰3×rÒ­§ž©Fa+€'d©Á—IÝ
V÷K˸¢nªîUŸ�Vëk'½£®¦ayÇb€øÝEgÛ(å{•ÒWm¼ùâãŽJBt‹Â°NbÍÒãhTvÊ«)×¥¤O?2Šm­ñj§„Å€õ*³È6AcKˆõ|ŽBÒ°:øÕ6•'¸»„ÑM’Ü-]^}‘Gô¤ý¥d
+Ë�à)">xKŸÙSõáÚFOÚÈèH¬ Aن­S;êôžô¤Ò<
+JŠ nÀ­.E�“àyÝÀø㓆Ö’Ú~W`s­+&ZR(®2¤úf?Q³ÒØ&ÍV—Œ  öçí´'}äaI—8œ-¤NzÛ±1Ý|͕ƒ(ÃöXÒzëxúHQ36—Ëo¿ú×Wøç·ßýòñ¯ïüøþçŸ~øå¿oþèë?O­ØYß¼ùöïyÿÓ¿ß|ýý÷ßýøã>üíç?øÚoÞü+ÿ‚?–X)ºI÷îý@x–C}R“CtÕ&Œ”`h{
=Î7€xø¤Á.ð“í¾ì]>9]ޅ3ÆóÇc`æ½É´ßë!ïa­½µÌ˜Éûƒ>×÷—Ÿ½]óös9ûbWž-™óïá]•eê¨	Žiz$Ö1°F–
Ú»'*O„Ú-Ñ7$‹pöÙÞüæî_ð5ýly‰k.>F-É8¿ãÏ™ì~6µöÿù‚É_>£âÁAà‹{À³Õ7iÄÜ%¾#¼¨µ°€žvl9ÁblƒVßé/ÀXIj¸	ЊËlî5jo€£»èS�’
îu(•Öˆáz×ö–«¥TÜ/ðbUà{Ÿ;q/כ›a/;XÂßÝ°6QA¸ìTºÆ¬ì/À*¢~éa³ðmñ!Þ<BTŠÐéa2a;ûÎakÌÍ|âú	}¼SÆ9H-¾SDÁtÒ0€gÕ&XBa¡µÓ@q6¯ÄÐSÎ�ÛÙ:€wR„¼öò}€³j$­zuq¨ïPâ
+ ë‚4ÄSÍ—”;ˆá×4ü†«´ø“zŽ¯ËxZ»§Š¹d€<ênK7¨­cÇã@5cµ
+]9à¾4iûHÞéSôjí�!VÈÊҜ¾2¥ÝΗ/ԐO‹SÑ7†§nв™ZÉRœQ€„»Jºù¨I®paº–$Û	uŸv©Nòéz	13•ÄzL`h ßÉ4B^2‹2èRŒ0~‡›|¯N¯ëÅi⻁÷Ôl)’·ÝæÓCâêJöÍò9°l¼Zu‚U:9pŠkug?6éy3S3J¤WV½Ëâúéë *œoF»ëàVƒÝcé˜e,ºZM <DÁ`>‚(	õœDxÒÅ¿>Ï3¾Uåe•@u�0“¿ZvNã¼</Ây·°‹�Gš\­Ö‡O:Š2úïxH¢¹FW�’Ç@¼w�[ŸÑŽDòáoSßµ‡îewK€¶òY0�»¥ÉAß>ªîµ!3îZLïjj—ƒX/‹yúÈé9÷⼂nûtÚ̐ÛO
D€ÓVÌðÆÀBã6Ñg¦�[4,
+¹ó½æÄ»œþ–c¿ì:eú})K½¿&#¬º9
Üò:Û<×­y…=0äßýì£jZÁ†˜À_éŽ/¨º ԐÛíP
Qx±ÿwÔÅ;­îE#}E£YÍ>Aۓ`[™h}‘²Ëø‚Zg´«š\«Yê`K™p6«ä®xäRZ+¼ðÙãÍo^ìKf
\\ópøɬ¡RÈÛ¸]‰ùï ¹Ø…ML§Vv	Øe&ÂÚ@­ ÍâÎè–#Å5’œ�7Ófb›këiJÅi·3
ònª‰ö
�;êÝÒñ®OaǤõ'æQG?zõ9ºäƒÙóêxŸäçc\+EÈͼ´Yu¬Yžª”Ý%K¤±ÏìÌK9‚ûI&ÉÅÈ–8øÑ~c	÷1+Oæ º2RnŸŠz鉁=–àÖßl';äÁDÊø¯Þ’s`ï=µUó.m-¥¨
--[ûï2´DùÿX/·•b ?Á¾ÃÜí$™/·à…¢"‚X¡‹p‘Ú²øöNš™ÑR𪔅ìМfÿ|ùÇIU±î\>šk÷\À:'ÌqTc=RÒ?(ÎS³§‰�Z‚fËJð×ûÇ(w…‰ÇAdÔL~ʊ·zšæËÍ£·ìk(ìñ4æÄÿ5‘5Ï㕬ÆX1¾R¾Š)r_¤NL°Ì
+ŠØLÑîh¥>ÿV×ÃU(µZ
+Ø©òš»Ê&Zº3†¶î$urvë‡h9&·Ò)1•SŒUl‘Ê9«žÎ‘ŠMl=ß6þ‡­¤©Õª’b,§³ìù"óc–Ræ`Y—GÚò]W`6‡å=µNúóüt6®ëí×ëÍóf3¬Ç\/oã^xv=LÀ/à杁žžåÔm;ý'µ-˜ÝoùM/Ôx"'Làá
+
¬j‡Ûº;¤B­é¡–lŏnO%áG€�ö)ù
endstream
endobj
12 2 obj
17342 
endobj
13 2 obj
<< /Filter [ /FlateDecode ] /Length 14 2 R >> 
stream
+H‰¤W»Ž$¹ü‚þ‡2%ã
+|%™4…ö„d	:W`½äôûŠ|°ººÈìõ:7;y3"22³î¥óöqûcë{ï6Ž]þåÑ\qâ›(U¿á?·?naûÛñŸÜÂ{J[Ø1ãG«A~ÿj—ÿWkÏÈ%o¿ÿû–¶¿oqυòö?ùF);÷‚OÔ²§ãö¥Ñº×TäË5ï)Þ~Óуiçܺ[Ú{jÍNRKy»kša'Ö£´÷ˆk5!ܐcò0ÅVå
+{­¹Z°EÖo•¶S'½O©)nŸú®tšžmHØHòÑ 2kÌøg¦bpHÍ.@8PMn”5àÜZémؗ8’åu
+ã)˜jbxB?Â9d½¢¤½u»–ö"gWxÞ~€È$<r,ø!%”ù…ìGªÈ!…Ə¯ÑÒPÚ(B ár|‘Òq6A)øäo*({b
+ĢC
d0礬ãÓ¡
+g-"†,cçfÁ ;E‡úrÑpƒðŠë˜Ê^[÷pˆN{‰ö,á¤d<àE0ã¨Ó^ na•›aL"w–³Oü ˜$x¡m�s¡í„׃6`[C6M€o¾�¯Y2áÆ^€d
}¨Ÿ»°ËªmÄw#wʁŽÊý,%Ï <B²†~Úse‘<ƒÀV•U(%£>,¬šSâE7‚ŸÃLU§³ô™`ܟÑç²FŸMmýA`—$i{¦šµÎ€yÕ¤FR!â$ÿCa^J]~ÉÆOøm¾Jl€?Ëq-ÜIä†þDÊÐþÌߊèUŽ/ñX!7£<ƒ¯œ\ÁTϺÎ5ù†eÄåÚ–\´¶`ƒÇXì6VJê„›îþ÷ÄÍÿ¾Çä_ë¡ù×:ÑÀ=µ@lö­Òu{ð‚ûùl8ÎÖ£N¢'Üßó÷‘Ø÷Sݜ*ì˜ãn~‚^+ÚGsUwÉ-+$?r"RŠ3ø^Âü…,ýbò–ûmIÊÇíK¢9¾Âã'çógPþÞóÞ7ö~ÒÇÃ[f
+õ¶‡Û:̸®©]h°8Ìx9.˜;È-½º–Þ³…C墈tˆ!(%ÝŸ'˜pž4kT>~óHþ”z~ö†Ss¿`ÌS!cž‹v]ޓÜoKL‡CÌø/™Z%ùt3ÌWôÝ8®è?LfmGëzg˜Äˆ^‚«‹ˆ««%_øŽ’ϝÑÉáŒJHžujjsT+õ¢¹lP\²-·¡9È6´^]˹$Å
+éì‰`òt~îým_œëkÈH}~Îòás’sîZ†#÷¹d—Å=¿÷þn{ï\  Ke”S22{­>È \JeÛ€X–k=æÃIRÁOOräþ8‹u¬FÝ#:BÊW³"[¦®àåÓ‰{»¼]ï…^Éßà;%‚qÌðS¾÷÷Íj*Ž¯5¤»ù9§‡“ñÿœdYÝ÷ËaºK…·Wõ9½öþŽQè+�§�€0|Q:E?./n¶èŽpó{Øõ_YƒvmŠfņ5,hO{»ö'ÝVßµw³l}Åލ‘iuJ)lSâ¼2H'Q�D5yDªÛ«RyQV¯JpU«—tßÒ�&>.$×`áaq6ëҀ¢dyÖ£âý©"¹R´Š¥®ÕÝ À¢í'Ý´A¬½u»·÷ªy40ÀÑ?Ö¢	\V“®[V®Ð`\‹úeÅ Gì:¬0V:+æÚFc¤X,ÖÆÚiÃiuoùtÃo†y=”Œü5OË.Ð5íÂ:ÞªU`÷Žðë’ìzÖGðóðj—³| ËæK¾Þß"&¾nk4W ÏümÉM
ã5ù -¦â7pnÇ�ïÁŒÒr¿;UÌP®ÌŒ¸äsî¢Wæz˜GãAèpܙüµLfE½Ý©Û1
+‰òpE¾â&/:Œ­ŠG­ã…‚o}LÕ-¨XspyVÙÿj÷³˜ÑT1mŒÑ†h(&T¯oÝxÙçX uïßO⤐û$d
^¦‚ÓÙ§ò8šÄ¹”4xê>bA4ºOCoÕ6qÆ®ÓrÌ!ød—ÁÙhá搶 s³àÄÃûëΌ¨)¾vPÈfAµÏæDw`ù§©lD”0'ö‡GöX-©º?¸ód$Œ	>t{—CÑÙú$Â(lA™Xµm	’uMÃE=9’¶?¸‚’ñ‰ìB1,ËðáÓæ”Ó“<&l{’Hڌ
@Dٟ^uœ•Û½rƵ‡®ývéÍkŸnÏãЬôUM¼¨Ÿe­-«rUÁ?þtG_1ñ‚µ%ÁK%Lª11M}~Tëb&XNëIc9•ü´š²¹ô¾†Ngë]™ôÊH^šÎҞ&+»‡{®ËQ€‹¾ú?XXÇÒcV~ôƀY¤K¬îƒoV$öš“5tÌÉçŒD-[P‡{0µèA-†/æ¨{QHmŒb: h~Uj¥ŒZaé¾ö†ŠGúôaœ	¥ÒúǤÁ-U»·²TÄñ‹ÇÂ4"öåZ‹o՚΋’Íø—/‡ÍªÙbD#ˆ}¤ø[Crڊ ®JÄë±réт=ÚS'¼a@„ºÌF.ƒ»ŠÇ#-šüÀ]Ž‰œ;éœÎ{Ÿô–63:fęý¥NV9¾‚c…Û7“]Û¤vÆô㣂­vږÀüÂ4ˆË¼´`‚°9\¦µMŸÝ#%õPh®”žÜă`?-;§œ»‡™Æْ5îó`¥Ì”¼­Â9üiS+!¢A“pªÅ ªÂ,)dîì&|G‹ƒ»«¶ˆJ°‰­e¯søá¿ê~Ù`y4†Ôp:›§-n/%Šèc°"GôXòqm–ã{ÇDØûcãœã×íkäÖ ¯øX27³<È÷†$8fk\‘‚n‚ÒÛ
+
£Çq/çt}ÖC“§’maϹ–Çn÷À…Ny¸§Ã‰OÜ?.8‘ìÁ+÷ìe<ëo)´…(ܖýäëöª÷,»ÔÜÑî·eu~ܾ©äeÍ/ýaå%+ÓYÉýei,jh.·k£ôþù\…§V»îɋþýãöÏ[ßþò×í÷Ýþx׏O{B—µ“G©³|~x4õªg«F­½5‹1+}lg~‹lcBÄ[Ž˜éÚØUK©l€a„‹LÅúü«­ÀDoÅ-ºœfɘÂ'W=«„cBÏԊ3z¡<�X´ð˜“+¬Ùt?›`]öØ@}´xp-(ïútSÖa”3fK.>:W;Ú1[vï^W´ßš2QP’W%´8–R2»BqµàÃÂ)j™ Ì5Û¤!K…xôr–Ú³m°Ána$=pYkl¬éÈÙÓÓ5Ð9={n˜Å„ý…‚‚®´ìVáàSPoËtïïϲb¹Ü<Ç/si‡\y:­fÆGó¯&âæ[àÝ7ÎÀ‡´°ñ:ø0î¬÷2¬QÖ8	"á]*2ëìÐmZQɟ±“†¦žÁM^HÏ4]Ò}¿{Ïò²[Ji)º‹@ï·%¢#É%úKž¦$¿d†nBy¼ë™‘ñ¬YøëY”ÓÕN2’”dî͇3E1BKœ}º‘«94vS
+éšÝUo·—Ò\Šxü}ýڏ_(VøyÔ®‡>ÒdØúò˜jꐎÌcµ°q­Ã10xã,½kkLö•ªÊÆsEã�·P/ˆiÂÕ/Õ'5cGñhͯ½¿_k/HŸ>ñÖ«­ÅÍäˆþý½v_LwuW_½"	ʅ@ÈÂBðzsaƄÍÚÆÿ>§nßHúZC¢
ƌ¦¦Õ]—S§N÷ÜY:¾‹ñtX!ä|¸¦%ìvÞ>4×j+¨òA3¹¦”EwÆ ÅøEµ4šsèQNބWUmø{ºePXý€Å0i/j×
Z;7“"@s#â©~í­¯s2s')ùÌE];IˏB̊ýaï^x>ÜõæŽß×!Fà× Àý°ìœ]—ÖÞþŒGɸ›4€À¦ìJæšs³’ìiêÝòàùFM0f]-®"§ÕÐd2êqõ	c+ÚPx©RQâFms²Õe¢]NkgÏ÷÷þ‰ÀúÂãn§°W‘—ëtDàlL}Ñ+˦ºÅôiíêù‘æÖ
¨_0ŒúÑn=Æ&P9º›m¬²3dß>Š±lÃý¬oZ‹!´{ëg4çî…ð{ï^à~ãuu”Çm¶e7jdµ4»@ø²vP<­}¨Ta^Œö"r˖BŽPzE~mýÃhQŽj@‰o>°5£#È¢mIëÔì@Á÷øzg®f¤ÒŠGJzrØwN¾=ú<ÃB0rŠí	�ÍuûKƒ|}lr¬Qì¤N
+×;©ìqf¾Ú_ƒ@^ݲ	NjBBÙ%Wƒ…„µW•®ÒÆl{.N’-™¸‰SÄ“éw#uàóá^.îäì:½‘uªÚJ­h1#é.­qAe›M]gÿô—œ§àa‘Û¥CÁÍWi÷³iòãÛ¡¾+Æùp¯l¯×÷Å©‡g˜ÀÕæ,פžÝ\‡æ­1åb1BHy6"9Œ­)kK°Eu£ŸÍª´Ðne6ö³sfÝ) f´›5–@lB°½sŽ¢]8DÇ«ºÌv*>mÆRfLt Ë.³œ÷iÚN#·nscªnŒº]ÖH>÷[Ž{±bà­]@žÙ¾p«/æ¤y9̑xk#Y=@Çe_r/²	šª.HìÁÍWTžyDݲÎe0cbOæÝbB­YÝE¶ÛKln 	RfôUVºÐÁSA:™uO%_ÉÏM.OÒkN=^áß%S¯I}Oÿ¶bn«Ó�ºÁ´¹§5 ÆƞX,·ïÏMâbœÍ»æÙ`ßkànFNÔ3Ç­i¸Ä­‘¬ûÈOšm¸Å¥G¶=Uôԏ+´ðVánt•™’5†ÿf„–'‡S9Gbp'&{@k7VstaNož;³ê*Û[Zö…Y–p_í^i®ef—5x…©v¬¶ä¿;\¹`Õ;ì{§¹—D° Œ^þw}&G{7æÀèÔR-
+|J‰}V·¾‡±'—‹±Åü…Ÿµš€m-Ú	ÞUÁ’fh,½>Bå	ŸË¡ÓÀ…wÙ¥m¢»aZÑ=¸Ã_ŒM
+lP(Æän¶“#_4CŠ†–úòh~”ºI´Å
+c1U£âk“ ¶ôð/ûّF6a9DÇe¾O«4¼J*=pWrz^—ô|xŝ¥ã÷‚$+¾Œƒ	âºÞÚÇvÁc§Ç5€RÖy$Íæ[$¤3s÷A}v3•¨9£tXõGÙÄNæÚnñUcf^á‹C\t3ê0–^05¨²vƒ}³Ó¥Œ“º§®V“ÎûhOë£.è«iSñM\ ÷‘k‰Þ¦ dd­«$£ÂH7
dNéÆN¦½Ž¾Íg\ºÌü(ÓG
+;î=Ñï™äùp—u–ü´ã²ÓWçÃݪܩ߲ÖK\,t¶ðëšø‚â¹dÓóþpøãa¿úúøíŸðéo5þòËßóãÇÿý÷ýé§÷?~0ã7ïÿöWæ¯~ûþóÑ9}}HÇ·øÿíçÃGü�úôß·_ð˯ñáŸ0}>ÖãoŽßý9¿—“÷x k[Öᒽ‰Qÿ9'_˜ÏWfè‰ÌºÝ±¶^\ñAûÝÁœÛœÔ¦(-f×7	Ôjž¨Wô˜™+P…þJU,臤ý
+^Q¼ø´¾øÉ�Ìh'f_{3ÞЬÅ*
+`…Z..J $B²C•øƒõmNSÜ$àiy±?ø’xªDýìB«’™;6ÙÐ\@ºé
]-¿¸¼³Oë™Öjĸ»ù%ƑI‘ˆ»¥8$'æY8”ò¨äÆÚ°×FL:ÚÁ?½£žÖ7G”]T]~ƒ‰
Ù	ÅZšµïžtšöíÅ"’HÉ©$Œý§åÅOÿ¯þiéÑþÑU7"ˆ`‘ÙëùÒÚÁ/}7¬­7Hó|<äãÛÝï¡úFìi“×2_€z fᵤò Ð/°«ÉöR„$C‰RA¶ìÊ—BZ“˜>"m`6µ)¤�eŬôª^+H®¼èNô|?6¢ª¢cÚ[e˜KƒˆV¯*ÅJèp!²� C†;€«äÖÜ6Ñs¿¯$µ ;ú°³½'¦b)nU`‰MÒa‰A\d{Zˆ_­«Ê`Ãܘ¢"ò‰`춾ˆ-ÜeÒI´µ·¸�€f™trÎk`0öÁd‘7Á<ÙÜâÖ«_А™Ù,âið`ήFÜßXK³OAäFv°ª7ƒq¢[ñÞ$K@ëëŒÐ2žrHRMyÅüËܼ86ÏBù§LËIóÈ(zŸZ èJ”ûh<ÝÉoe¿�ÕËp,ôÞô1°½I!y,±-²¬2s:d	‰’
¾d“Õð Ù=¡­d¹[¥ÀSÃXô†–‡è‚®Y€¡Q(ÒÚ=ÃHïvÇ ¡U“y#ªO+Ñ;{Õ`枆U­SÑá1È-ä
w‘Ó[—€|»�\Ú2Ù5Æ`ìU1†Çª§f £í DÖãû[$ªI"`6yÂh‚¢‰hGáã2žš&ÂW©‚d•i‘š‰÷ÜZÉUüb»·È¦k™AÊYé8Íܱ"y un…ìÕ5žhQ½�'1½è˜·É°4_ÄXñI*oUïH9h¤¯h:Չ*N£X�àx?|m[Cî ™IBÎø+!Ž¢8•'™]UIljÖÅ9["ƒ$ò>Ÿ¼µ‡Î@q°�3_êÅøÉ÷‰DÝÝÆ䜱[Yí@ËX_‹Ÿ•MDÆv­Q�5gEd“ÆLø¢%â;MŠvk,`›$4ºŸÝ̃‘Ð>ƒ“öà�’ᄝw³o&)ãðé3„Cq¡»»ËbWN‡òž><Ætᗹ\G%iâéÝòˆOZ
+K/xžÔg&gòñ1T¶'T
+*ß漏6'Í:Ȯ٨ٗøӕñI-'13°žõ"
RA¬gÔ]ç›QI[ˤ‰e‹´“ÆOY¨ƒ!¥%»Ìõ,Ó2ûYì›YhEÄЪê« ¤E–&÷n˒<fžÔG3b“Q#x©T#V2ôÀÑ?Áh 1¬›6?å’ä}œH²ÀF ¦áPóäÈÛJ§r>öE‰~z!âØ[بV”i‡)ì®!g¥ËÙ46”á=¹Xh˜›š0„^³®j2Rzòï#{ٖ†,6}ƒáÝ´w$KÃû'‰tÛT&J´] Y#¨®ºàA™º®
+ǺhÙ§Às‘éi¶%Ss#¢i€nÆÔI´¥®¸„ ã݈FŠú¤â$‰{;'¶”ž‘D

$eF™:“<à,É×TøÈ¥¥Ã˜Ñâ–U_fìVæèpo}©!ç0éöhiÅöˆÔdñQñ¥²É–D2ùØÌU—gñ{+ºÚmŊSly緂 §y[²•ú»Z$‰ÚeÉÐ!zWFž|£Û^ó|O¥µ41kk³—Rf“eÑ΁ÔRzùzÿßÕ¶ªiRCŸ ßaßz¡T%uH]:ÊE‘afð�½/Æßޕd¥þÞÝ[iþ^]_*I%++k¯ôŠBy=è9®²ÔÄo†ŸyiX!z^§ÎJµœÚœÆlœå™+€ËH­⢑–YŒiwÉ ÇcÓ�†Íž3_Qµejüç	n4=
ø"×ù
+ݲƒh‚ÝpSKZ´†€ÍæÃ€í°«QIîî½Õ+ÅÞÈÁ«ÑŒHf€ßéRl9]ŒW`ÿ8‰È
+ÿ–ÁÎyÐBKizxZJ5”ï6ëÿ~—!b¤Óí³£×"–|¾þ£óìÊ΍a*sT¥âÑý²å}©åZ¸R«†fe³‰¥ŽY‰¹xô˜¶vÚ"m‹„‡è˜8é¢+æ=*U+qR$爡Ìuœxr(No\&Ã{pËp9[ky•L(‘ M¨.ü§WIt¡îï.ø†°/]#WgÐø†yÇ2ÖÂÄé°Væàóç}=–k(oL©ðTšS#ù£Ð
‘賿˲ÿ‡^ÏoÚ}~÷òÑõ_¾ûÙ¯kýÍË·_|ÿã¿þþǯøá»ï_ü⻿ýãåüó/_^¾þðÝ·O½ÿ¿ú	ÊâǬæöԟZüùê?øÇïð㟀~zO¿úó_ÚÓ·þÁŸÞýrhÌðìPgôµÇ; *0…ô#ôùcTLR˜<¿2ñ?àl¼ÐÇ?¼K÷®›_Ç`4ß>`(Ê%]¥šq hÄ<(MЁüà1…ؘáïùõѝh¬€ù9èm&‰0	.´F‚¨¯øÜу¢OþLpíã
­Çï§Ð÷©NoôÞÉ8R#(yàNøË2é7³“pÒf€´pŠ¯»	"­	bâzk?„Í9%@Ýeu‰”U¾™[Å­×@´iz0@Ë4érЉæÍ*6ВžøЭ¦6	™²„|Fznu¥À3À‰ÙG×Ðê-^Â'Q=Zw½¿ÄÌJ1ëE-A;'DmÀÓf¢#G7”.:'hSn¯³úþ,ӄ£üMÏÉh÷ìet®
+Uvg�’$¬Ê£0ÄÏW7yz3ƒ•Zäà=ÒÖÒÎÔ./¸pÊg£AYgä,&`ëð¨&•½NbpfÑÝéâhòsð/­ÎÔmô¡¥Ç3Çuš
y” 
¥]w«ìbû£]k,1¬§Lèéƒ T‡$ˆ¸i`¤üxz÷=î½NïƧÀOS‚Ž‡ ڀ—Å4,»}ìp¿\wçYõÅ/À1dÈÈFî9i@±…œ€¡IU¥.ºÄ\.Ç\^—­e`Ïc<;\¿Ç;µ©UvшƯ20™1W½Rv?O,ò•'C2À9Uv1©»–oæðÍB¨NüÂ@…°)«=½E—úNUڐ™0–Ûªóyº¥ÕÜ2“'vWžÔÉÞCŸƒ4b$èÝ YŒ°¢£‚¡¶ÌÛ|ÐY'aímò.=› ±	.ôij×�ʲ'\ÝôH˜µ·Jˆu$ïußv¯‚T¶N–ås±[Ý?P]÷ûcÂï÷Zë:`çêõ†cM«�ºÝònmD°~ÅËľ«d!ϏY‚±m”Ý²mÖ%y‚ìk¢æÊOÇHpY<3ù´0Ðr·ÊBكþž62ÜD̍'ŸÙò$–¸ÕóUSXs"²y‚V«¼÷,3	DØ÷ý~Á:T9GC³¤ÛƒÌ±³…àÖk ÇXpžs‡yë쀚šÅá~Ç€l6¾uz�Ƴ^àÆÂFîšsÞÎm¤4Ym3ßÅʚ-A°É$ÓÎõAG³"àV¯ó «iå %m¾ßsØUÂÓ¹šôFª¿ýñÙËéÃÖ÷†üw?FÔÀñšà\m˜ßk‘µ1 ";ÅöcĈ
	 Ã>ñ8«R3œŸÓ�ÚÊ7aZ€cÑ�Úõ‚ýŒƒ='TÓ¬ˆ½êèÀ#_#^ü|ÃÁßrÌ°¬ï‡Ò¡SÙÇ©"ÁѳBPÝÐ.¯[¶H©[íEzµ5ús‘>ªj nõt6y·u¿7(à=…ÜÇ"!H1ԛȩ&G?¯o¼,v¶áû9hÿÍTÙÀ_ª½éecàÝ(Çά›¯JÑÚ$bs]By;¤WÝ )èo¨ž
A{E× Q9ÁP�e�«*á)iÀ½Zp÷,$¨kÉÃÀÚtŒŠì„rYî•C³i%Ø»”=%++_­.T·+™õ$VvõÒEǯÑٔ˜fBÉx«_³fs®šÁÝ®Š\:é™ë2)šÂ_&Ÿ”2܇¡¹ÚªÈ½X¹ÏaW†JçY䋠222EÜÂ*GÂêVWuÊ$€§üÿ$þJÌôz%;¯Ž7û@X9¢0.…)‡òÛÙì£
+:ÀÞiàì^¹ÝT¬­	ÏÆóÁZࡁ™{c€J´St¤ãù]NZ@FæØ×n/Ðòg‘=jAzIó®Z(Á*\!þl£ÈX|"èÊ'	vŸG1è¬95“E¢šDi`%¹%õ=7·æ¢6	º?ΒšàŸ¾æ%èóhuÜЫœQ—å@1ü+ð“Tnð°P¸ù ÍÁÜ ­»^s¹ÊañM£X®JY|\‹`ÀÖ¹±õ>¸ÄÈbn–ÖJ°OÅ6åjrc;ÚyVǸ­êNŽè*HïI£œîªv=ÄLÑ¥6Y#•+'+z
zrúým‰V¢«B€P:W­]}NfEƒ6Ø«¸kn¢kÝ^µUŠiW›|öõ:`Å䫎A֖]i“;áyÍVÙ.Ü·^µ±žJF�„¬ê%걃\d^Á
e&*dm_:„_Ÿ)l!Úppê}1ìÖiIÎx³×Ip)Éãf™&¨Ò‹ö1åhâÉáe †“ rZ ÍLoÝëÁ<’ð^¶^‹G}ÿI^+á:ÓؽSZi9Oˆ°)×ØYK!kR_;'ڙÅLí‘_ãáþ0Z<…2ù'”Ö$³ùž[߯‘­çšzU74™9Š4W·ðétí·™0×·¹UTˆœ7ð+P­„¥õ;ch˜BEÙÒÙ8ýnVWÜÀ ¯¸îç--­À΁UÐ)Áu”óA\U”Úa±‹_‚ˆ¾¾öYVµV…i­Ñ©E5…#§¶¯´·2ÀÌØJyOµÙ”B´¥)+\¹¤a€³%ÙAîsÖ¦àÂGY3n—ÌŠÜ5ãQ#÷êQóŦÎAˆ$û�­Ä¶t7ÁŽ³	jVáçîø\qç3‚.°¶2.»Ԃ‰û”`ŸÉ•Pl“P)çL÷žŸ—ÖÁç¾e=žÍ_ÌM´²zUëgnÑ߅3ŸçbNKBeã°:W,;Š)ÀЍR˜8(>]„ÖL‡—÷þ$Jð¹àåÃ;àždë`¨Æ�§ø‰_,œ=nŸ´FoR/™�f§ä\)b€x=ŠÁYË
"ѦZi—³6SXûDEo©Ùàk´
€ÖÙ¼lü—í*ǎ,‡aWñ	ú‰µÅÖ-&®û§Š€~ۮĬâ§ÄÀ0žÅ)AŠçvŸ ”µ(‡KÙd¾9&rOðhJW7‚}[™dvÀÕô­”wñûd’£²	Õ¹8»kM¿öYµívî”H5$V.š–m`;äšsÖ'Àì…Kx7×Y™VOša¢ZëÐ>v¿—)ìJaˆD‡S‰�êdb>€£tðØD/V¶Î.ñ±ùØF¥K<Ìel
ãP‡¸iTeóðŚ'—ÎǨôKš�=JtÀUåì�w»Bg
}«Ï-=›(À?Rþ'•ðØ$)͋¸éÒ]F«¼˜•ª¸*¹ŸáPX_*˜Ìåå:®¥iƒà<Ó|«¨�â†0S¹ðgOÉö9Ø#;’¡î'@¹ '?¶šŒáÙz	îº93.ûÉZ§ß«Ìû0³FÀÖ3F8z6'©û0%gZʸq‹-îˆÙ›<’sıõ`VkÙð¯KJÛ«§?J*r㺝,`±©t‘‡Žvdÿº§[ý±«Ð
v	
úâëã甪Dñµ'%ہe®@£Å“'€°¢2ƒeãÂLþU€1t¶ºóì‰Eµ°¾>&ðøÎ3Ø63­œ|'„Œ'­(-·v:;iŠ§ ú³uÅܶSö̾Ž ž2`½¾õGOívkXgí¨v0Rœ‚†‡f‘ÐòuH|¢õøÎ’U=«¯^èûǔ…e'd‡
+L²XhÛ,\½¢ý• CõîNüÜ%‡¶˜b¯Ùô©uÁoßW^ÐFk‹€û/—Тë»v°äòCSDx¥ßî’>€±s5_kjÆ˵ŸR0U-0*àßy=	ƒnٕh™›ï(NÁZîÄÁíAi|¶ê…¯Ã¹”°Eÿü“Ðef쒂eFù¹Ø5]Ãrµ™6×ÿµC#z´HtÏJ.,ã�¸»ÎzkƖ칪�–}Ûw’ÆÀ…)‡1bH|)Ù-pZ¹½Ûî÷ñJMҌ\g.qp‹Oˆ%GÙpÍÂÒ¬51$ !‡I�½A~Ì´BH/ñàlY€yLè>y¶Í͇¤!€r©RyqtH»h
Å·h?ÛU>¿+«¾«÷Á6xê6”‡°Q*>¢rçL$8ҏXA›\[S Ø$µÐm£óc«,­€¨±œŠS-š-™ì"Òà>S÷É.’¬­ÕR\‡JŸF€‘4
+ß¾‹¼–-p4¨],ە*UI€µ*ƒƒöû
+¼[ß©öýØ¢ ú7áÃπaéZ;©uø*šÃðy¹H�J.Åu:‰°Œr÷å:;óF*¶ÑôC”ë÷âxPjçAmÞ9ë˜þbÌ)¶rþzÞ¤0+_ö•‰Ó"Í3ü+%†`žZ{à¢àÄKÄ"Jp÷:¢.ßgƒô¼ë¹G°ÆÃHϺÒ8¬»Ÿ.žÜÃb÷Yæ̍‹
+
Û7.¢­„+µô9«Ñ©ÞªâR‰0ƒ¿¬7ã–Ízóg™˜ç”¸•AÁDÞ�}-^bb™ðì1BùŠƒûº`L¾b
}­�>³Å×!Ð<jk³¸Û«}ìX)Èdç÷ðò[ðêÆgÈùvÜI>#ÝÒÕüŸlsÈìîlü~f/Ø6ƒZÍþ‡ ¹–J¨¼¿LàPMÂay˜A]'—þ¯hJÑ¥69Žsàoµ97lÐÍV—Í\9§6êòºÑë.êÊá'º«…COß0ÞX¿£R^Ÿƒ(z¸¬ä\6ØþM¸LgsÕÆQ€Z‹ öChê"¬Yu\GÅNöîƳu4‚Ðkëëcoj¢½ýg@PÜÔfk,&z~é¬ñlÛ¹k{P@kš»ò¤æCãøO�ïUωm|S›Ü3c#wkÓlÝ
„9+Ïö•k¢…ŒãԌz×àY	wO9Ýû­/p ÀYù`½ŒuÈyí¤“�AEQ÷´IC¥-Sï­÷x®¦ßŸBç³,aV:>B¡çÏ!§Í4 fù�vWľÔØC®k<c¿Ý�cª£€^„u…}`|¬ž‡	å�f ˆi	©vãêhmä Ãs6*¼ÕP²n›—'/¬p[ºÃ(ç
DC„Ï ØF؅q§:	áÑ+!îÎ�÷óùYÏšå¤$¸²‰�®6¶
+ӎ¤³šS�|öð‹å.~Fp…ñcX"mC`WXŸ«?í2ó]!Í6'¦åö:gGe´Lñœ4ßÏÄXö[œì
Œ‘fu5G*o'x|Šf֎ÞºŠÑ—ö!^Œ+pǽ«¥õHPe5ÌF›¸ÎµT­”¯qãÉÖ°¡�Ö]MXn¿
LÏÐ.’ñŠÃuJì'/RðÎ"}\qÿq÷µ+æVö÷›°vå’Áø}úuú/ȳ¹´BñˆáI/¿Ïùë4ÃT*nŗê"IŒé'\Ä5€)ÏRêgosøú[E’ÙŸÕ²gނûQ8€AQ©ÂFª¸FÎØÀuÊ©nµô€IøhÌq–LœuêzX‡Ûãc«Ì¯ˆ™B	¤Ã¾ÜF˸›žõ4ôëóé×
Ónõ£Š¾¼{”’H fm<Ÿ[<Œç_x¶hëdäÖR-†„tEýžÀs¿ÍqC·£DÌ³Ó;w^iËîýö.½Ç~ÁK{™|BŸ›·ùCX
+5Î2iô)ږàXFpr}iÀÃ=ÐV–ò€¾SÅýþ>/íAe[ÒÙûÍé6Sõ…7{–ÁéaýÂ?‚èÚÈ`¬–‹Ý èÉýtÀžK`‰}Ðóí„ƶ³?�Bñ²›=|Õ}À‡3@MÓPV0d™�®ªgËb�Œ@c�î%ƒ´ôx¹Ò'ÓêìôŸþPʁ­e¿ú1cºî0?Þ@Oß։-ú&8SiI€–Û"ª.ž&ςç ÎÖJâÔvwWOàlÙu¬v6NRË�þ›¶§&ôX^6	Ò$~gø§kQü„·xÖÒFÄ|4‚lG.ñ¦�P‚¤S”IßJ)¬í­œÅÅ¿—×û{ÌÒüQ:\-‰;ÀTÕQE·qŸ€V,Φö»´¢¾ÅQí¢ Èj§r¨¥ÏÒê„0¶'¨°V¶÷5n€ie‹âSPEÔÞ$'"ÙMô¸ßGiUt:ÈñºÚÀøõ>@},¬PNc}ã"㝳a[Ò¹ÆÇʑ•�Ëؒ4¢– þŒ`ß³þ¨öw=U‰9Í ­_íáëhhäµfçіf6r>$觷έæ£]Ž‚8°y—›;¢ë€mÊýxA-Zu»,ŠûfÓYOsÇň÷³ßcÄâ߯Ï!^wãÑÏós—q%vÞ9!JË’7M)@Š-€£ÊÐ8‹Å•ðîìFÄ,gtjL[U€™[1ÀÝîï“Šn	›S¾Ô¼Äj(“I%bƌy~þڛàà³>#ikÝ:éëîð«UžmÃS~˜ êøëù¨+A½õd¸aGà7a/Y²»ÔHRÒ�i\bL9»x·~©ŒÓ~¨öº«;’†]eŽ /%ÅN}€M÷Mìû§’€Êîö>'3hEI$�zéû]Eàך`Ï_ò̶ЋÆqŠ{¥MwzÊ©¹Ï™õê`Ìv€#©kU67!e„쯠ŽGH_n†•Ø§
+¬ ‘Ü„|]8‡©S˖*Þ³éÒ�R`ôküà÷2<–TôI˜Ò
¸‘\Lyñµ%çÂ÷¼¾¹·Û¯½ïs}åjY©ë^±›Íe×Ú]f³…Ãr©¢bÀ{ÂjdëØÒ�콐ñš™ ó{eŽ=¸ÖöeíS¦»
+ʺŸvÈcøïæJX™A;©Ñï7À«éð@㈚<Û/»	=Œ!ßâmµJ§êYí0]}(ÌNžÉXÛ¸Ó_¼ €’U¬$¥»“œÔ`[in°t/£?ÃV˜ŒjíÃÅ°}ƒT:×ÂÅ
®-ùlï'à
íû±Ó¿b²%¥Ý¥–ØmŸ:Á2.–Ž§¸#7'à¾r$ÁqJ’ÜîÒ5ÿ~%g�ÄxÃ�a¯‚6h|5Âquâ±,“Ý·x·×S\
@ø?ò`©žp9ÿ *¥àä	¼3ªýˆÚy€³ÒŒÓpн�,I/¾¼rô¹5¸ˆ;ˆ:í
+�¬¿Mu…ü¸[ãm[OñYç¦åŠ7‰µ’$tÒ7Ç÷€ç4•õîՎ1«¶sÀèz`0áM ÷(.×±4¾ˆº8i�Ü¥äØåpžÒ19<ëV�Bc¥?´›ñóÐ
}¾†¢nK׈¤Š¥®×ûFµ³o!³Ïþf‹cB³dQX´þ=‹A3@›·ŠQ.M(M æ//â9iÛCXÕpóƒ0Ñ[£vç¹ÕE½ºy[kÝï
r='÷BÿŽ*3­¬jÈdÁ€0¿Á‹¹ÖJÕH5…±ß}¢r‡žßƒ¬v圤YAË®S.=뾊pœQo¡'ñ†‹âÉr|C‰­›Õ>‹]`¶ÏÍ &Ϭ7RÆp‡Ã‚¯nö~ã1)�ÚûdË[:™¤n<míT؍»ûõfTؽójì‡r~À§¤^èPNe€ž™Rõä.çõHYpúœ¶|u^YçáM?{ÜMCÑÛ¬	‚l¹ôs§Ï÷µI&ÀD†è+Çå3%ųU'¸*Î0qe]#íSDÉ+X8A²©€’Ç‚÷·a7Àé{*ÀÐÚÚÁE2‰¨¥'hµŒ{�x˓ðžÅ´Ù°Cê®Ùî ²í¸ýÐ7ƒœ~œºÝb2nwyIIY >J-…øšgV›m%6†©pPGºÚ+"oÏv¯ËVo�”›ˆž3$ž±ŽÅµñ¼í%ßaUƒgŠ~]êT2%
‡i´�¶Ò$ ˜X	ê͝ˆ›×á¦íì|«Ð²;S“õHR	¹Ë|½ò¥¶f•çí>µÂÁÅ	‚€7ëÃR¬Þ[O=‰{bÅø˜=yô–ï7	0¬'ÀåsZ²À#Ñö�Þp'[�œyÞ�é‘\[*W†‹T€¢]½{”�9™UÍZx?ÁÇuŠ:Ãv—QDuQÎ|nÉVJÙ¼<ê -®|Œ";!P4š,ޗ®qÝçÙS;A2þ2À˜‚Ç9ò‰;_jCAæïç*ò¯Æß?ÿFDhۈÇuiX‡Cà꟥8,µéûêÏ·2:ã6ñª‰›%ñuË°stbrڎ-b’gX=žš¥Š èڪّœVb
+|Ùþÿ.Àé�îŸÕ½4uÅ•ÜcùTŸ¤¯’“m™çgBÀî¡>ý¿×å~H«ùpûE¸yÂ]ÖÃ)µ…auë<Tó3ç¤WVè?ò2ùœªîðªRžÒµÖœ_”D@£*‰a妕iÖ<&}ÙûþObýð:Áߝ‰a“ºEC¾î-¿¬þv¾³(r}ÏW½I’ùFVFsŸpH‘c¶*0­«ƒKÞÛãÎ¥ñg2�Ž=™1×ëS%kÛÁi‘"îºÖÒHSM7ür^,£ìAËQ$ηë¸éëyük%}{ã{°—N¯8Þ$Á0Q	Ö×D‡%ŒÔR™Áðy.Áɒ‚U‹Xd?Æ¢�(âŵ•ËÑÞZ¢fÆ�˜–±½ÕæØ	†ÞfÔâ|;	ŸôÅ`M‚æ:‘àñëȕ>†*À^ùfãºÏ*F`ÒE¿�Š%ü5^ð¹>¸má`ò©ƒÉqŽ#¬×}¿ „ϳ9Ænl<¥Òy¶iO€S2î}t%°ŒKÇ(zm[ú~LYb¯¢ä^O`ð\T.Õ§œ3¶R=ºâÒz,—â.[º.víEzp6¼Å_~o7XpA>AäG°>áëI ¯Æ*lô\žÙe\›NðÒ]2�¸‘ÕBjÜ:Þyc^±§5L6³º÷K`Ö,Àqºæ
Èñè^‚H׸Vº‹ó!‚¦ë"ZÒySKéå,MàË	Dº=g‡|J÷__„«iŽ	¶üü}5Ij3V&íOƒW’d
Â{Ï«Ma˜^ߪ	n ̺Ç;‡"ïñç×ítœ“/?ç£øœŠæý$|NÐàÝJàå
xÚüEä+wÕ@ð²Ùǽ¸ã0\ÇÙPYXk4˜eÉøêžp_ã†>–&«ÍSˇ¹ƒxF‚>
+?_>&¤Á=­h¦ÀPÃý'¨™>ðYÜ+ÜAåTŽ)ènAÝq,q¿¿Ð”½=µW®…e¢ç”ؽߋt
»Y‹rƒ¾tVól:¼ä6Q(uj±Ï[Œ§4©!î³1$ÞÒ,7됆§$´zÕµŸ7ú„ѝ,chÀð˜鋰UðZÀ»½š¯ÞN²¹z·þäÉ]ûâj{Û*ç[‡ÍÞºŠ‹%T4µöÀ¯/^X´dÂ8ú7Íý±úó>R»Þ¡×oaúµ	ÚŸƒ”çpS±¿ÑE¢9¦ŒEpÙá‰Üäb²|íàŽÍµ–Ø®\Øüç~¿Š‘è[Ñç°¦˜9~¾ïÿÔæ:F±ê6ú=öζs¹âûÃ.àE«¬EM.DÖy¬…É1´Õäcö¼›-Çó’ÁÇó°´ÒÓíw½}Ɗþ É„ª§¨S¢?’�@¦¡'±y€q´¶ÖC!ÞK®å%ûšr¤>%žç1g¡K•üüuñSpZŽÚ¨‚[·ngé¿Ô¢~Ksîîê[tP­×~‰­ña_’…GkÞñ}i	ÇÃçڙs¡ƒÞ	âÝ؜6î€äN~ìoql{2ÀÐç/û?ãÂö.ûÉNŒa{›í’ÎØæÞËb`´Ä3¸aåÁJ»\§|XjÊ[ObûĔWqœ5ž’†0j¨òt¥G;VŸ—t	PŠÅuaeT……æÞñU5÷%û–TÖƾú"ÜÃÄ�uÂtüÀ
-‡"h+k5KG‰Í·¤gkÙ£¾Õnª—ýŸÄ8 ro§ÞĪÅdâΣ `‚ÓõÛ­hqpŠÝÔ^â~>odç«µö»aÙv&üÔÓÕðܱÚڅ_‚<Ñ׈Wõm}<¼�¾ã¥Îu£`àUê­öþCÁ§ÜX«Y<_„·­¦ÔSÌ
+H„h¼+w0aþ|eÓ+º
+;x×ØëlÞuX•_øøò*Y±ì8¢_ðþámÒÂMÎÃR*¼°)cccDO¶áÕB–þ{Ÿ˜ò¾›™·A4E§òFFœˆŒ81f¿ëU[j6©=fí‰Í—4f<·ÏE‘Ñwò�ºTd
Àº½SÜݖ¶\¤X+Ð˸XÝ:&™"
+Ñ~{>¸O®lFhN7ÑâÐü-&“ԁNJwØõÅÎú,í&Bi
«“FeQ½i:[C\²›ÄŠÓ¢ÓŽßÉŸP	}wë÷¯¾¾ÿwüæîøÃÝñ¿ïÿwãÿ>ÜÊøûqòwßü±ýóo¾ýé—ÿþë¯?þüóǟÞüöã翝௾{{ûñññÃ݇¯aóü|ÿëíüçŸïú~ù _ïéþçûÿp÷tòo·ß7_uÁBÛ�O:¨2
+c ¯'ÔGt­&SôÉÄ|Øxcßþ‚ŸÏt"“ˆB;ß½ ¯¿	ýÄ8=p-HÞ*ÛCárV˜Ô¶€Ých3ˆ
-ßÍ0Dݾ×ûrHëYæg«QDËáÁËon	‚¢£7ƒvùùKaÒk‘ˆ)ÀaÎy_mpXq½ˆÇ¡…ÎÁ+hÁ7šœç³x#V­6±š0Ðk4ªÆ¾PbÁoè» z›”m/R=ñõŒB
+Uet¦Ž	M]šP¸F‚°iÐle8%Œi¹¡wsÆgÏ|oŒ”6Ÿy­«.)ØkõêAìQ)‰~½]æd›½‹Lo«b[?3_B(í“BèJ1Sæ‹=TKSÏÔEâµ.a¾#9
+²^ÌÉÄ£©!N)hDc&‡é,…á'£‘ÝešñLëŒ÷ê.©ž×Û6+o2¸ÍõE]lkhWm+½’€\ñ÷Ï{J%ª§Q94L}ςm†SíL
+™_(@V3°tÁ0ù½…Û|à(fbA
‰ç®diiïÐ
|¯ÜÅÊÜ=Ÿ-4݇Õ&V±Ô̓ ܊Fcov¶CkX-/ S –¹^ªe[V%¸+×ma¯“œVÚ&ÁyâÎúþÊó6#ɃèIc‚†R±È…Ì *¸å¬ 9O`ÀÈmd¿Ä\ålïÅköCwšïç´ìã§MgI͊²š½–D–›=ÈuØ%oSÑDçÎiâ¸ô=^”϶ԶE¹)`Jf‰_ҔÇîsAȖºkš#º'Áž‚hZJÎKò<5«¢ QGõãºI…"í̵býz[.+¡N1
+fÝ4v¡ã8II™=™L#(ºÞ÷ÑM1 ÂÙUzvÞÇsPWYÞVĶv6uöé¶æGâ0‘¸ò°#ìšÜYæ4êØÑäˆ6ïF®z&–'Ðèuݵé,Å^8Y½àw›‹]ÒÖô~âSÜE
+99Lö¡ÎˆãŒœÄ>,ùÞêÓiӜ­³'€1‡4s!+X²I³Ð{|­k¢—é,‚u¡LV_Vµ<]1–‚;Ǘ ‡®uì
í¦ù`$ûŽGèöXS®Sè
+Zè¥ñ(~>ëLZ°Õh…˜”$ò µQˆ#¦Z·ìmxÞäd’ËsèÓ?¹pèxÔ	7˜,…â€ò»žB²L¶Pæ‹4FbÓY
+^Ä.[UYÔÞeyÃìAÐík%ÊYIÝÓ‘ªmZ·06ëå•;£o\á„0ÕsŒ®Ê¡€|ÐÜøŒ•£B`D#5®s@
+¾W¢ZãÆòt–Iå
âÉ*FTܗ؃XƈJ!ÆÙß5/Cß/9Üfûª2¶U´­·…ßY0¯œ>TԚ©HˆHÈ>¥úî.E[µ°f¢^~`™g9ùÕ|£ŒkƒCƒM=G1ˆÇÚý9rÅ,Q>’`smXŒ"ø²I;º½¢‰Iš�ÇÖÍQoG?’§ˆN G/ß/Ù?Ò¼TÊ®¦.êo_«Ûª^²µˆå™¸ÇíŠâm..òeRÙC¸…JOz֮ʴDµZ]g«eÌçÖzockUs¢OrO ’:û® e=VçÏg‘‹êC?[%IϝÍî]¬æbµìvdŒ>÷‹’Ù–×Z†›zÔñ›%fÃÖ±•X„Ô:S€¬9¦Ù*Ú
šVM\Ñ0„ÓQ!훼1ʅ9÷):mBùP¦³LN9E[@Ï�v½„³³`-Ñ[Tº,‰Ý¦W(»¢:4ñØãvI–®jÑKšôIĈ4A%`ˆRŒ‡Â4ШÕñtñ_ëÙê·›4lóµËíÅ¡ÂJc
š½×éÒ;y+@	}PÇP}
ú€£—m]7J–&(`h1(˜¥�bêû4_¸®½5=ÛKTÏ\v.îΪ84{E-HC€º5[r]ô °”ºzڊ‚-gÝÅj®*>׋-ô“á\„¾¥iKèD¾9ÖºÓ¥BX•	hðºJ!ýŽXr¡	V6Ñ5kâõ#TFÅtðöUá^=Ý[ñVQøtI$éÃϖ6@£‚-]
)⹔¢ŽWíÝ1¼sÎvØԅ¥dKe–|µ5aM 9¶MöZF®É[I^èš%ñøãvEҖΕz¼'îT€ÊF¡¹:º®b,ö6P1Š²¢3{©Q0ÐjÅB
+¾+ؓKâBŽU•Z¹…=£(RI~eBZÅË;Wº&Ä«»dW¥/slɪÁ›
+ØÖʦ®ÎŠxèq»Œ~ËÓLé‹2Ò+/H1¤ Ýœ8'�‡T”(¬²vCÃÀôd!¹ev1T¨0*f?zÄ]/ã]iW3ŠYlRþ³%
+"®DMJVÎ҉ⅹè;•èÙ÷"`	Þë Á:Y›ž­½ˆ¼²A=IQ°„hO'85°€³)–mYmJð,Š×Ø·–¶l^0Ÿ(4/°¯êLO‘ÇžµÆ{æiN`imDî;s…¶h²²1تTOŒUÜÂ|)<¹ájƒÜ!˜‹¾ô\-MÞó$¡ž ÂnÍM0üÑR‡<fŸ”{³žu­)ØsýBê·e²/¨MñõñáãvIÆm[ŠÑoC3¸g¯å]j¯’¸|ÐêL‰•3%¹Ôbs¼	Ò]UŸ'̀¤E‚’ÖÏQ-êiÆ,Ñ¡ë"¶Ä®ƒ˜$ ÕH
+#TUl’£€¸K—“²øšÈíP…NÝÆ®r¼)‡mÝlJlÈä5¸Ç튇-a[n©ªè¹óQ?i©õ*6ã±SxäYbÃE®ÚbˆÆP¼6Ú±ÈatÔ�[oéKäî±MÙ.½C%S«ˆÜð±ŒðÊÂôàó"óŸöÌj2™|Í&¸;eÔ`�Ï:\@lsIÀœ¿F\×s.ÆâU‚�naìº41,UöK|²“¿³LFššwºëê…sLU`h™»`¶ÁfÜ%}š›^À�e$|¯¿Þ¾àä6œmè[š.ÈÇ º“×ÕÌQz_ŽxhwÞ­p/3@×RЩ,\	›…òz…PJÒ$ë§MÏ�M…Lî¤
«’ŠÍB×?šG„9¼§¢Î´„-„ÀV´µÔ;9[:]ÕÅÇä›b^Z!‘Ô­m®ù{½]æz_—Ô]<±5ëä…8£ßFA{@cÇ)ôÊi/ä™=EÀPäzñtŸ2u\ÔnÍÜ?
+ú¤ç1‚| ½4‰§Tî”ì9¸ãÌå á8MS3^
+Ÿ–·”…æBÃÐhâ{ÍɈaNß6ÏW5±+Ÿ‹:;3û2)䕍Ç풹=ÅS6^”M(6þ$іôª0¤E8‘Yâ!+˜|R–¡?ƒ‚5Ôa·DV/ýbU
¤Îs>gqoå%ëÿŒW»Ž\;ü‚þÇؐD=cßpÒ»ÀÆ6›pÿ‹déôL‹§q³qù´$‹d˜Ýð4£×ŒÒɜNS1ž¦“0|wüig%ðç9Z‚)â/8ÒEvJ%ÒT ¿ï÷|ùçã6ʐîÚÇθ€Ö<m‡X¤Vò1‹Í]Í£ôç©šéÇ_mzƟ6íW²Jç©¥˜õV¥ÌÄ_Øh·Ø§¶üŸö…´U=#kLcÿߒ*H&_€ ÑS÷e¹Q"LÈÐÏ3ëÊd>Á0€#¥Ûô‡B	DõÝûž‘>nY
+ù¼áÕåZ2¥¥É0×lÕmuî ¼JuI½n-C/K[â\ÁzݒŸ‰›1{ÚÀf±Î‚¿úrã	ôâ V˨šä~Mˆi\ýîtù8•g¬‘Æ›´‡‰Åï²¾gxŸ˜…“©RÑJç¨þéÀ»™©…i-¹,FÖuòB-ƒnGÃ,65ºn«n±•®UøÎÑÖ|Cm˜†8aAr/Û[*–>aaeÙ#øŽ¯‡'ÿ×ê Gca-b¥�ž¾$i݉û€}vZˆ©ãÄÁ¶„´8¡�«ÔÎ)ÈaPjGɃ`1©õäTž/ýÇQüOÓNj¿‹ò£0ê´M
`JQcÌn²�&»ƒ½’ð’çôËkëpëÕ£„”|ÈrÒÂÊ^Ž�éTT_Új~?^Xúx¼á2d=ÌO˜É0ç/Lý~±á'i¾ÊÂÄ&ßpEkœÐ‚fÙûEÓ*EÔ4-v&éÞåbí-¬)ÜçOšiAKiyˆ1^;AuñªF´ÜLNŠ?oÒ&.Lr(ˆé¼0öjÅOò6§sìü|º ëÕ]kíÝB°6sÚš‡IDžJQeƒ"¶D¨§ÑN÷‡·Á¨篵餖_CÒ;èrϬXÍ´ŽIu¢5)Óû_E¾êÈʆÃ¹¾Ñō†µä¾Úñ“ÏÇ-yËGBœä½­-I‹¡£‚ç`Ùæ¹l®\iðÛÒܕT3‹U/”ú¹Úü2áÅY)hsõ\:Fé*âä«sûC¡ôU'G%U®qy¬Vi4þˏ
/<ª–LZwW„�V~[dL‚Õë	 m;À ¥4-¥à«•Lb]]p Á@«®¿›üƒÏsH]DòMB�[®	ñOáÐA\<ФƒåWn»Õڞ¿—ÆûqNãýèD˃iÝM’ŒËÒU¿ß
+sZ+‰K[öÈãÈÝINu,žZ—µw$¤b‰aBÆ/¿.›½_zjL]O£¾D¤Pd§¿ù3ÀÏÇkwãW³ó÷%§ÅogiÔPE6ØRw½„¿Ï['º-?îoKÄßZ`	æTiCñ¼Ý­Àaö’¯%¯]ó͓…’KØ`BU™—Dðö̒IþX ¾ˆ,Ðå}†5ÜèæÐØeæÏð>·T„¤Åüê «,ñÑG秣Ôìw5ýÖAé~,Ѭœ]€SrCŽým¸]Äêpµ"&Iù
¿a.¬E¾ýÐ3íôùu\ÅØ,ô_
+b¾8˜×,Û°Ž	0¥=[ž·–^:AÀÂQ<7åÙ†+œ#ǯÁËâÉÅӁ“gòáz¾÷ϋu>¯ðˆ»Øf…âí´Î€ap·Ò,ç�gÛ`j¼¹ïÅhB<m;UÀeÙ8M×)À:†~;4#"»˜«:];¥t¸)	ÉÓrPò†¾èÆ^-ôIžsŠ.%™7ȜOGwrbô-¥`(V҇Ú*gNÍ)i"…O‡ëɘš0/ß^¡h+¤1~­Þ7Øý÷¨¢>Ù;N¦?o²æ/Ìu¨‹½öê OîœR´€bCp—ɧ£5ÊÂ
åΈ¤^‹¿®Ád2†¹¤ûÍ)…»dÂ+ðép…Œ `ë2š::‡R€´¿ Ü²ß@kÈJn’­€×´l4Ì`ë]Üh(PÛÁ>5þÑ"S›Ùáš÷ª‚v:»…¯D«øiý¸fK2^	+iÒÑÉ6zõ «fþ3•5›&ÖÝm*ëüÃ#›>pt
+f8CYޚ>ðñx“¬3«7ÅÉê$ì÷‹Y=CwJCšBBò-tŒX¼æêz Ìs"˜{^*°³Õ]}×ÁìAH­¥8Äâ:úÇVŒ|åÃr“ùƒ}Õ3Fl‚´(süaÜéncyJÐşVK2&iðP0žïƜêèÏÖ¹Gr—át¡7×psk{K®~@•ÞxÀ¡•ÝN]…
+ŒÔúÝà¡>nY
+ù¼á^g’ÃóZ|Õ§Ý7:Ü0Áê^_ÛúLû�˜­d½�ߖêë^‡Ó¤ßöFÅ x•F‡«fcϳ—§ôýmíÌÞÈŵ
+ÝË�̵µ§|š5«-¡‚3ŠË1üUßg?Pʍ¦^åwÜ3ºÏÇ-!g7üæKZ˜zÞ4?½øÛVg[À|“Í":ÉE֓™a;î.͖/V¢üžÛ w{Íîÿúøùë[ÃoÝF‚Æ™±|Q
‡ö2¿À
+Â;9ýù}
yál¶…ú„‘g£ùy$¢kîܞ·ó-�µÞ¥û²¶íÛöyOäÛÅ_àç#Ÿ'~
çÝ7€¿Èìyc¢q*7$LãžÈëJ®äŠ²—,l,‰î{)Ó¹ÑÊõºÕ÷‚“ö2„QÐ2WµJ€t\¾¿ÍÄîÚt±2Wª…¶¦‹y¶¬f@Î@§'XÇ´[GÂÔêïŒFÙ¹Á¸+ÖÞñN
+LC?eôr7tÅç†/¸}mYÈAÌWÈmœ…8aan#Ätm9a¸Œ"o͋ž^ìÍZæ›	Á|sYÂï5‚½\骔u=D.ïˆ×í¾È~£ ¼¥ó Ñ¥¼@c%¿óÉÜe$ݖ(òÛlP,š	OàfŠÞF´ÙZ»6îUúˆ‚W5=§ëy×çãî]q7цÌDÞðç&Ìâí-1!…Ý_›“u·EjO]Nå:HûÝ>¼ËꎭåãEÁ¾ÍTªs^Ñ¡aNNäå;ÝL@àZ¢¤‡NqJý€tQ	XçwN3¤8ÀrA=¹#Øzžbã¬ídâÔM†JI[Ž/PN[BGˆŸßBü¿��$¡©Ý
endstream
endobj
14 2 obj
19311 
endobj
15 2 obj
<< /Filter [ /FlateDecode ] /Length 16 2 R >> 
stream
+H‰¬WێÇý‚ý‡y±VwWWUw%O°ÎC"G‰¡ E‘…≵D@–ÿ>§.=&yChaöЗ꺜:Õg?›™OV:—Ê<VhsI€ý\ÍA:[;înnçÔ6
+ƒ|-Û¹–Œ<€Z¿@™q@;±ó�‡GSÀj°�×æ©*Ë-ÐuµYÌN–`·QÀÚ©Lk¾`œ:L3ã¾AUI¯…ýÿ¼y~cÇ£ÇNj¿á뫧X?üþþÕ³wþ󯿼|ÿþõ»ûŸ½þñÍý'ð£ç÷÷/ß¾~uÐã›v<ÅϋŸo>ğvô£ÅŸ¿à—?âã߀~>øøÓñ÷´ã•¯þþæ	¶Nn:´Îa¤Ç[ÀÔÚ)2õ#ø»OáÖO"tÈÿ¹‡y_¸éÇ·0áÏ7ídšr´sô1ñ-¬GtÈÿ°­Oþ~ñ2Œ8Ññˆ}‡ÃäÎçX	s5“ꢥ¯�>§ÅãbÏíÍgpÄ,A£• ,‘ Òäu5ºX­¯¼¬áVÇø$6IŒtjJË썤öž#u—ÚÈ»ôœ6£ÕG`ó\³‡¥(
+ÕYû‘ÉS$aí¹–}Ť™›Ky·Ō+t̋9Ö¢Ö¨ËTÓ(;»Ÿ˜ùÂ4`Ê½§±,EÍrªX!ø­ÞdGÝÕîáo	¯p·½1©¨Îe½®§•Ù	p̕àU"TÁ&›ùTœÚW 5
%Û<–ùП‡ýŠŸ£âÚZ‚§†µ|²RœºPÀÃúG©�F®„¥Q-õg$ÆpeÒÓÓpÁS{¿Ž½¶3Ë^k+^;OóêªSᣗAàÆVmÐ9ªôŠ` Ó^k#ATÒ("²C)aäÛ,ò”:€œmô{£¬Æö¨H€¹Ð"\àM•Î	¶Êk'CN£_ۃ♎l,¹–Ͼ:å]¥0™­n'ôÚ/ðû6`ˆF´Dá,-°Â"øïÅ£,ª8Ì\WMÖ¾×fÂ\’t°[¦Íҁ±v”Ç¢UkQƒå+Ôx8PœAcƒ\YŒháÙR°„±Š†Øµö¯iQ˜ê<Éæ µò `äw»¥&s/½ömûP·4S.nM“^As‘m~kۅ
Nï`_Ä6ÁéÔv{“ðZFUݍG¬E^zŒI†Š+j˜;…£…´^),¢TkQæVyMmJ_vÏð}�Q§ÍBÂ×ei,Š|EaäÍ
+t["¦PémC½P䀁’uVXš®páBäÙ*[С$Xzå�²¡•ùœ-†Z	Â¢exº«2òµšÅ© 
+ʵ8U²à$ã• ü	è¶Z` e†ÄÚ1ÂX<åayhƒ2ª Êz—wáق£í|W° Ö
+¶µó tU¡ûÜj¼°K¯ë\KI�˜\5%¨ÙMú8MXD?šöJ΅ZÐ,#扌v y¨ÓrzDÂÊî-Ȑé0ù
¾_яã«ZdA%ÍKrí
oR‚ìôêñ^	?ˆ„ŽìJ«®&?’Áên«ËN*BIŒ	xáÈÔðn]MŽ³µ'8Q‘ù€æzr¯í¶¹…wÑEÐðÀæW)³’i
+ÎRt*’JC$¤¤Ð
if°ÑNÑmŠ!Ñ!¦ÔZh\)‚k+àEp|%!Ç£s?ÌnÑÎz©ì0Hmªý"©<csÖM!¢Óƒ(5ˆ¦<V¸$™+j«Bêž
®þPÿÙe±±¨ç©7Zy+xÕU¥7ìèým^ë´ÃÁ›ÍûÊ°|Bë™f/¥6FÂë^›f}$˜Q³Hè:À5A„¦ÁZÊ6ék5 ¦ƒQ`*`Š|©ýs+M/ƒd3Vï\e
ß]à½7IE¯VM†Ì•Zut‰¡'‹ÇC• û#·ŠLw!‹pJÁœY¨»äË6ë™Ù¸Ö¹þ»­ÝDÙãðÿ“g‰ÒGŸ´^Ô潚T„0ː/âuIû]IM©¹�íÔêýé�ÁÄ;à™}S|ìG™ZãW9?‰aCwã&—Ÿé\/Úîé~`%(vK3 0òzÀmÚ×Û^[äJ®øR&}>ìÜbfüê‡ož¾{ÿ훻÷o~ºùî—ã·€=—+Þßüõý»7÷?ž={zw÷áí÷?½ék¿ÁÊßáã×·ÑîÝì^Œl>µÄ45A¥ÙP:K¶¶¬G<KÒ@Œ²˜ºªrTÈtñYEÚmnՋS„€ðQõE->AכT)²À>‹ªq=¤ÉÌÎî]¢{ü|)}ý<^¡Ì«J0ä÷ےIY–|Á¥³¦Rð°ƒY@Úi˜ûéA©û„¡›\–ƒ‡4ʾí E²9‡¬=.ù™Â€§ۗY䫃-Z©ƒèñÅbÓ¼ÛŠ¼ò¾ÌfFßµ´¬µbႝ—ƨ�h™é0õk.*8\ÃN©Tö´é0f»„çâ}’eßßS{}‚»/âLàa!_¼Öœ6#¾ÜÜbìÛ/LXÕRKÛ”ÔÁAfcÆJ8Ú;Çg©¥{ÑSK(`§(AÖVç!¯û$°P•ªÍ¡yÅÐ8˜Ï9Ê®Aº¬rÝ`qÁ�èYNÿÆ\³fÙjínHxÖÈ6ç+)£Ö3@wu@§ÔäÒæ¾,	54yb+Ǻ\èñ	È3(óîáµÙ>hûÕrÄu¦6v¿Bb”TqÐëܐP˜íCЧ)¤~^årW¡©ïIBja6r–s,ûr ôÏmíWmÕ硍¹Ö¢¡V‰Ñ¸À_%ї"¡ÊݏëàÙÌÐá£A†’¯vÿSisùøЗ§V&…²…£#y^f.e»tq&½–6²­ãTyïwËè¬dƒ¸K9'"ˆÆÙG9"T듘4Y¨¨J<÷¤*Sʽҳ„J)²Rhƒ³Àœé®Ísì0ìiÈ7»!ɟé¿…ÆÆüI¹žºˆF’ç b5›­ë:´ ªy.—†,Iï9kGƒóª­7Vvó8�ùªŸ½zÝVTǚUª{)Y«HKŽ®®^FFzíÇPZkQ½{­©J•2?ϟ/HŸB»FÉGäÞîäàð:
D9–ú£zb“+<æqðä]Ì+5 OÑ3]"RK‹¦ª±¼PF4,€÷”ãÇ:cLט¨ÑE�m:ع°¤y½§18àQ£f<)>Ü¢Ϗ.̱f‘?à’Ý×H	°ŠXurâÄ‚üokð4À’¦ŠFv»«§ì~åÿ/\ˆ°Î-*-<_ÚÚ°ù‘ä4nVµGêãՒ-A᫅{±¶í‡q]þËzµ­hzÜÀ'˜wøovÀ¦OR«/í!	&!„%»ä�³Ž“·O©UêoÆóÛWaYv¶¦?µº[ª*1@ÅÿّÖC™@Óۈ&HŒ{É4}BiÙ¼Ó§½€ /F°>^`ñ9²6]‰’£—‘Þo‘
%#^Ë£c:€{Oޔ¾m40ˆ¬%Hæ@Áû”–§¯.DÏ „:˜Zi²„j?P²³Ñ8uS�\[À+H“ÚòЮðLê]³ÐÄZ##{Û0êhš,ß3\ˆ‰AO{¬¡	£?òþ×ä÷6b¼@©¼SuAË
+ªT	©/À¾’Ò!=íš-Wòsõ‘‚6UmfÙŸ¥Ðöc¾gL'§ù•RY—Çü‚–e�	k±ŠÛ8ÀùX¹êä{…vùT~ÕZÃÒ/u^Ð�÷Ð,Ʋ€m—k/»Á	ºˆ+£ù	ùî×¼ê]w—ójMϸ7@
+â2¡*àìÚpxiãÚ±vgœç{n{ñÈï{ß]xé¦3«N~¿l‚pÒ\yfÌ­çá,²«±Íí`*.#ȶšAÝN8E¨2k;ánA¨Ë_|ñi'.œ¯¸Õt?„<dhKKzÚ²Ú_ån=LÀ[&ýÑôwëöŗ·wÆOåV¾¶[ÙÞý÷aÿóáAÏﯕ¿úæ·ö·ß|úðí÷ŸÿóÏ?¾ÿᇏß
+ðۏÿøקWðß}úôþùã‡[ÿ!¿Áßw?>|Ɵr«/7û~ø7 oãöûÛ_þZn|퟾²ês]…Œ[Cº3{~…ÂT‚Ó0<9Ü\
+P;?gŒ§»‘Ÿ>íÜþð¹ßï (—«è¶Ò3<}î
xzóè6%@Ÿpú¬²ÁM£'nÂ.ä~+@Á8y7Ÿ^{Jè™ð,©AC3X˜• ËÍ/¥Öeå†3eD…eØQ1^zEßÍ SCÎ&û K!ÞçÖp?°tÂaµÈÃûÕÝ[€½3Ä67wã^β"»¶êõH}U|x¶[«µ€ÁvàW!ž"2Œ{Ÿ{Ç"ñœ¨së†G±ýþ�™7†œÄ¶wÜ zŸwü&jî椹aê`¶g²¢0dØ6€¸ €v€`k¥óû梓A%×ö•àOà
9U›ù¤€ÓBÀºóDt—C,Ö	l‡.#±ŸDåvtž¹‰ô»…¨JÀÛÇ(Ëöfp"0ú‡F¥hVJÀÆwó1.úÀAŒ|'&æVœíd³|Òã=8<µٞqn³ÜïlØöˆ _¹”.¹ÝûxJbJ”U‰.}>p·waœÚA
ZB¿–å<\U`´tš°W¸•`°[K~¿íUuS÷x?¯¬a0̬¼zr™0`]	WÆv0®^úAx•Ü£
ßn.ÖÚg³aõ‰Ž!KBVÔÉÛ¼òIÁ~kòíZU&,>Õ©\úŠ·C>al­šŒ×nE€âÊcµ쑸WÐ°5Ç_'ðòí³AK}ñò5á¦ç‘TûíÍ:'¡ónc$oðör'æ}2Ù>‡i½(}¾TÞääÙ?F­#ÞÜë	ú’”Ú˜B¡G&}&ØÑ@G)ãEé'§¶¬Ç–$	ŒbX"‰»	ü2étø„e¤D>™ƒz.v”`­I³p™LÌ×bIÂ6’_V>è¿È9íŠ;¶K~&ÚtÑBl.F—š.Íz‚=-ll
+=ðóQz®¬3z}p,¼³=Óò©¦÷Iâ]KÛö>à>ì/ô?ût»c‚ã€MowÃæ~·2ÙÕ뇏îg“�÷`º4.pUwXÜ«ϳDöVF«nNîîï‰ýú³GQÌR³…'ší™0zT¿;$@B^˜!Žº°Bvîä�— M|_»QV�Z•,TL/¸Ì«;:;QMeŒ²vùazUH)åfI'h úLl°Nƫ𗓆›B*ƒ¬†˜Il”0J‡J8-ót=O%,Æ»G0®ƒi™¦«tf1Z#ýûj¸ÇÜ.l^ªˆœ‹èĒyñBÚçyþb5óÒ¼ÊéÞHþŠ)ì`ŸJ☳FQI¹Á;þÄW|n#u
JžîÔ
+Áì9ٝxS9¤Œ
ãF]î\¥Rõ'*.A›ÕÊÀÖ¾0ØL ê1£’�Nk3Àm*#€Â¦Ç!�¬4×j‰I¢¹êEgèaÃܛ ³Æ�mä݂¿Wåv›É¹Ö‡€œ:�nß¾Wú'vþÆ÷Ssií%oÆß1@Ü'íÎUO€=ËË�P{&°tl©™Úx0\\Ö¢eÑùÚÁH:èA+A³ÐªÙÔ~\Œ¼¯à‰0ÎÃÙm—×Ú¤, Ì á"'¯irâÚlIÿ¦‹„ZKÍaՒx1úð{b;ßÃõq¢›°v‘KÅYJ6™tS,Ã�oÈ;É?éØW¢«píöèPÒ&v™ãÄ5¶ž›7½DEøµùóóÖBQ™îÀx`­¤ùaç!7çuåË°iÌKeä5µ�‡ê¹›*\éFó</Jüf­”¯/Â4÷½ûq¶Ž,í¡–¸Ž!YJ"`-ýz]è03°2•k[ÂGÖµ-3)à%uçß×<-`µ˜]– ÀÂMF‚|1§æq¥£ËºØ;×Í3éÞÁx-/ß«æ
+kWmøÄÛ[ŒJUF¢Gæé;o6ÉôGïðÕ%¿ï-k`j»ø¤H†•2›qWîwI”(^vRkžë²kñ{á½JÜæ®CwùɟmИ˜±”�R5Î=ÎÅÊmœòÚ¥MYˆNdL
„á	…yô†°ézamù=,úLÓÛ	[KÎbÖeQ5§²¿†ØÏÙ „mß´š¢+ðÛJµôQ£Ibr	1ìãa…ª�už™ªÆë¦a$—È1ðàlù^ÃS¹cXJÞʉÂm�ï_0ôzhkäȖÙDs’ Š¦=áTçTætüH“",1ÅÚAÀ³¯š`N<»œæ®‡á Ü#F€ÙF=leø±9s+x­v¾‹>ѽMÖTºóÐ=™-ÁÖäfÈ@{R¤oׯ¼FxBê‡x+Ы,jðh(p(5E½}”ê)¶M4_…1®ƒ›ÇÒKÒüÂò¨;Î|ïâ&“ Ù	ùŸñ°¶SVN/ÚEËÊ	P†±0íhàzÊ`x™…¯vÚLl= µ–Ú³b€rpËAvåÉ�ðŒ‰éˋ±P{õJËÖjÀÝ æ9º�¤¡õlmD€q^÷Õ²h_õYQJP©©rœ˜òǝA=v­,£s3±.™­Û_…±(/¾ÇWƊg-¼BÞw“[iy‡5m¶ºOO­‡zV¾Íð9¶'ïô™!L"ݕnÿÅöˆÂ‰«=áÝc inJѓõW¢/#@?šà&$YÀ
æ’ÇèaÊZѤÎ6x¬dI ÕÏ�ºˆÇg‹ ÂGP§úÀ•§-#Óːe%ˆ'Â¥Hò<¾c¸
6n‘Çõ¹#÷úÛUs¥ÙŠÃR™fØæoý¶EçŸÃ“±Ä­î3»*}àؖäñҐ3Ž*Ñt,ЁÕs¡"XXاŒï’¥¬|ÅóV�e1£¦\‚œUP&P¿
+0À'CògQÞj¦ùÚ2¹4X)g¥
+ UóJÌ}˜‘ìÓe¨Ïº…°U—­’¥‘ÒßĞ|ð™|ðnÎ¥€X2²AÛæËÜÚÓ~oÚw%˜&ÚyªËî	fî;£t3Œ"ÖsÂ)ðk›³Ú"8æ ]ˆ'쀲€ñÕ¹öôz¨u`yª9hmPMóí_hí²‚×Å$ˆ4ÓÃ̒‡?¶sîª�ÙaF“ÞမšlýÍ#˜yÅE×ôFß'’+›bK6¨¸è¥ÓdÛòb¿ÇzOSš¶¨zž©°¶\Ms4CmnµØᱎKZû5ÇþÔq¬E¡‘
¼ÙÒ½ÚfÕJ¯�ʊ ”óå Îb‹n(Ä]/³¦pT3§g›Ê8J—ÛåeÏ.M‘¦'††ªÉ�ž}I\£Dp€
æ0±/ÓÕÅdÉȑ–Ñǹz¡`¼¦++4þpٞoÿêÔµC
É»ÿ•€.޸ÇnÐ9~øsÿ÷TÁ‘ •Úb¡Ïà©.Åhÿ˜òxjòõNzxÕ[ºÕõë]ÀÞLCádz}?Ëi)…Íz·è]|ØkÌÀæ*µÍ¹¯ç™&´dòÞÝX•‘j\®1×âR	y ÍÉò£Ù0hzÊÇ4òi®îí
®¸sÛT½ƒ"pÈy³b䀩"ìUTÔûö•Ê}ÀÆÑ@QÌLÖ_Zæ/l“¨ÞÊ­¨ÉýSøZ9Œ¹Ð—¾3ÆÖM£ëöÑ‡4Xk¢R+s÷îoÿBZ˜jX€¾×›‡z'x“Áv=û€rÈFe`³õÔÀN—ÃKûsµ·ßtXëš=̪‰"3ÔedSÞ`›¼FKèǎ8«9Aô¾Ëj(Køр•HÅ|܂S5w‚®¬¢›ô‚•¢Bqrf5åˆ+õÀ­¥àÆ
+Š…ÑX?×88Æ|EEºHtÏ£²ôïS_¶N+_–Ÿ²0(E5›dlŒ”
+‹Öëò¼¸ÊaXÀ¯2Üʛ޵ªaMD�79sT*®¬ÊÌrX/.ꅩk†£Îø2}�kOødC§	cÎÒ~3ýâ!èCDrÕÿ eÍ|}kÉ7¬áxoòš2‘¹´ï÷/©¶™2ŒãƒÏk/2D²o&,ÖèÑ©çç9iÀ}­Ç°¥Qºy1¬ò¼�çl²pG*›ðÊÂ1}2¨Q€>ö®|³FD“ki¾B¶5¢øè“`	S¤4×n©¼m€ÈõOzˉG{w…ÎCN ½�èÐRxþ-›ÂNHåS×´Ý͸ôÃ_„ÇxÞÔX1X;&k«—㶛$fø{WÀ1”¡3Ø¿j¦tˆÜT½gxó[G¾ìzò{.¬v
+-»Îáä›ìRg‚E0¸ß¶ÝÓ(›|²¼=ßSÓ£·š±�ú³:ޕ/Ä]nìšÝª:ócY|$#†Ä
ÙºÓß~yŒ4t/ôÚc©Ë“†}ä¹Z›ªØ<À?àCæøΜ~Õ½‹¦;š{æ9ä
é,¶oÙp,Á¨aÿ?BÝKÃ븚ön띭ˆÔ3íŸïX¯6ÂÇxÂƖÒ{haXý„ߦ9Ÿíåkåsq¤¼ö¼ÖJUýgelû ÑāÙ ùÚMÞ6½Ľ8™{Ä{Øn2qÙ4õ°p´QÕU½Š$gÙÀџÌáeæ ¼ë
ìœWÔCÝ+°oõ‚ëº^cýB_\6STó´ýð
œ~!O»Õ‹˜ËÎ0Nq&«ÎwSuÁßn&kU±µp¶Å…Ç.m8Ü9d
«Q ÁSî4Ê|U€^Ñê\»LŸ·šðž”Hˉ7Í
‡m•¶Ê´b­†œcœ|CÜ«¿ªo5ÜñfvQ÷îœfdæ®­‰rmðÙo€“*”Ÿ„b[Z™öÌ´¾i†|?–FŸÜßa±ïÚîÚÏçJÝ~–œ “€êµp¯ãöŸ¿Á;?dY û^½tΪÃ&%»nEúÏSíU.;°ì^P}„ŽY“™¥Ä¶.IÐ4‘kOix%çÒµŠ¸€AaXúi¨Íùc?Ÿ0íDix^‹æÊþWځ8¥s8þXßýa$ œªŠÅv6g¿Ó›ÞU9LŽ-†²x÷dx4gnûj­qíuÞõ)ßs½�2WèiÚyóG¸Vš„‹Øˎ+€½2^séf^.ឡµr,�ǎ!Ð÷ëoËÚû‡îØś
ÓÚÝõ^¶tÚÐÓ^‰ÿÍýU“fO}˞9I[]ÓÀ[;%¦¦·+Üu­7§˜½¡*žþáS6ŽŽº‹Kò¨ïX0Šó]ËÎdÅlòqF%Ió‚<�'X€ýµ2Þ0Ÿ�zØi,Î9LǤ´ëS"£LØP}ßq÷áïì$è€u®¼~ŸñÚ£·Ç‘Y´e`áñªdJ]Çk®n'o¬B‡Ì³7;¤È@Î÷¢q™íXl±æ2R ¾~ªm:…°õEøN¾‚×ÖÝh]-½ä¾_ƒ:Ì!š^­ŽÛ@Â>ß×ƬRl5‚%¸+7ýqÌyc]/²x’Àc5Ìåc®Ðîß1—Déðü3½—öÄùpö÷-öösxÉP¨¬[¾êhÌ
¤2úfujþxÿ¬gYãÉò¢
Áï^åÉ7Ám=ƒ:ú\2˜ãz¨æ¹>™d8ý°²‚8@º
¨šßPÒÕ»<Óþ‹©VƇ<>‡éɕígÒ¥i½ô‚N²Aôò=otX*yg
å谕n2@‘w+õS€1•Ú+¿S+zqˆà㋑[óƒÍyãGx× zañ:†¥©ú¾…öß;W¡	¹ð†ý­)²½L®rx9ßá6^ajœv}Säzå
›œxA½2&Ç–3dÔJT³saç“E©-°h%÷­ü:æÜÇ4ªºâêq•Ü3Ù�E'YrÔ) C-ÞÊEêÚäas(Á;¹Õµ\‰KUۓÅN®½5A0†²år7€Í	.qŠç“D
+gÛ*]³¸­¢®¡�³œB¥+e£@Y©¼nÕâàr逿&ÍßûÞ%_Ø4¦À×z›?òo#X±ñM`i–ûm¦XxMÕKK¶,pm­1u¨Ÿ%Ÿ$˜
+Û®Á̶<éybä�XûÏÓàöL즧:ƒ§:ÏÅ´2b/@yI|LSÀӔÃÍd‹[Y;#I“FÞ%Ù<lç/Â|XÀ`Éþ`ù¶V¢Qà9×ví]#E‚I¹×ºÜÛÙ4	7G\\‹‚áàÒCàr^ÌÌÖ0«ºn€*£}ˆÆœ¡ Ëý6Ò9×~,ÅóÖ
ƒ€öÃ]Á~æ—2·
+0֙@Ë°—cÈÌ4î§nËäµäÚõX|ð‹Kc¶(pxñN~i¼­ áÖt€é¯Ž¶.�³Ë€Ò×Û¿\Äç9¾Tj='ÀZ|_¸0¨‹¾ï¢³E •˜	¯vìX{¶‚ìÁÈô ^µSÎ:Òyÿm@àŒ=¾7¬áGQ$`2¬;¬Ã{…/À^µGi¸ASo
kù{ú”Hæ𳱁�/µ¡ce³•ÎZSÛW 斍bÀ­ª'Ĩ1ƒùқ‡¹‚æ\q´Xø€»loÉÖ\"/!Ô³Ú(lm*Lè0€ýLRÛaW‡ëÃÂVúœlÙ›D`gTéNd0zt&Ñ´ê¾(¦o5Ž¬Åï§ï·Áۂãx1Àe	ÞPô°í((÷§Ÿœ‡“œ«h³É™ÓVœÎbÇ´½2²¬¿Œ‰ú'x8&Áè·7§‹ÍÑU>W⒎š0MQWiì"Àjäò,à†2ÈÓúíƒ	Õ·âmWпƒÐg»±.V‰Ÿ›r`j•q!ÆFççî.xðôuâÅqÁgAÑìÐeM`¯,„÷êħ­*¬«‡ài]•Œnv°tÍèè•`Uó¼¦ÓÌÿU?þ£©lC´0À&_vÞü¸ŒÚ9—j*œöú“/ȍ�'׃;ÞÍË<wüŸãZYâÌ^jÒȑ¤qÕÿk¾~™_‹p¥g˜g”/z„þTÓsòƒ€Û’%ÃP7ºI 1NÖ²M G….éîwþ¼ì&Æá--Ï·dñ7Ý-ün“ÅŸšN·JOûÕa¸®>eßƒ<¢" ‹³ÿÑ}ª¿?£_/òŒ"<šœ€aþøè‘^}ýxö†ûK¢Ï5á—ॹÓr0Eßtk@,¿@,Éœ:‡{û[ÌÙüþ}±D™Mk•Gñº3å=
+À¾åg`&-_£BNh; ¾uLή;þ”Àóѱð¶î±}Z¿–(nø>w›àà›Ç9S8´ÝÐ+XJz¦�£o.ø>GSÔµ_
+©ß•’YŸRSøÑCŒºË%â‘�÷£YÉ¥…÷‡…ý£�a[Q¬PÀ®g¾Í*Ò%ºŠ§^v%i3áA8îOº<-„ßfôz°s¾ûž»æ�ÖQe†¸N�öÔ{י¬1Ï>-í �%ûë‹àtßÓKú©Ø¾7-ñFÕ·+°rØÕԜ^ü…Ô¾¨vQj—Ú´}Åø"ÜC`aŸ@}‚ÆRXôµUw]©xØß-FI°æ¦Æ“åé±;h³Iínl—ÝR³ü¸†:£½0ó)ÚRæø®
;Q¹KØÌy¾‡Ïycæ,ýÉ�—HïYsà8ªEZ6՛QjY@äÛBÇÜ	Bv~üz…—»•ÂbžµùvÖ¥‹½j'l„ƒe¼ë3@hB=èê¤+»zDÜ5›ôu@µ0B�¯ŠÔzÀÎd6¼)ÏÚ]ã…ßÒúüýf/KÂm5ø-’®-À¾@Ãs
yŠ{eç‡<x8d
+Ãj{9ùù÷¸"¸š½	pŒM–³÷–ï§÷“;Օ¬ñ
»‹Rúò=òÐáQŽ˜v…Ì�Ø6ÁSc;½‡ýd�ËVê6Wƅ;¿hf±uoøÎþ§¸¯S«X
+}5rÖÆÜÁ, zˌ
•„~Ø¥ŠÃ¼Çý^À[‰hAøÌ,à9Š튵³'üR/Áp—>sch>Á¨£f߄½ó¨UC »òžç³¹|Žj·™/­ªç]8Ür48ÇhS€®k¿‡x¤h,”·WQß8û)öu”Â{VÙª#áA^Ƭ»�3þ¹[‘,\ÅÉs…r°åg÷ì©À.Í?�©$ÔÁ³3Y¶òÝÜcÈìå÷®=í§ê[|Yü~ο²})× ²N‰gÑ9Ë)üÒý·Ô¡½üt®}rjˆQÿ¯ÅXåmÞÕðû{”``c±ëÖÖlTa¾ZyÙþ"Fèxºå‡ºìÃÖÎTËZƒü–
+àÐÆP]Žeǎµl÷±øT¬0'Æçæu\ý|Á}²ªo	ääû„RŽ fus¼�ÏÆ<Õ¨cì$K5	ðZ¤�
4øРC·#/Z[cv)ÕJ®Ôlžš¤pÖv~l«è§–ö÷f¿2ݯ�å(ššE÷:{üZIƒ'{¡1ácY›š2çq9R1nWæ
+ŸOw²Znœ'ZäËâr/)\ª–Ìî{¯ËÂUDå}Né=3œ53홊­Jøԙè	—BŸzÕ²¦¥Æé[÷?yöüïÕݙ©Ž';ž¦Œ¨ÁþLJñb #&¶œ(–&È®’¶8k®›¬g¨Ü–î„èº^ÚÉii±œýc”â#T4£ŽÎ¨¢ô™ÁTëµFùâÒz’W3¥µ¡:ÙÎó<3Í4%jC¯4nSóeå’CE›qßJûÒU
+³nãòEx
¡˜l‚³[¢{„ÄàîœNÀ¢ª	ràóI÷#ùô÷Ýì%hóMðò~œÄŒDI�C(˜š´WžmÅØugœ_àØ®‚yŸjWj‘Ùq·Ò8Ÿ«Ò5^[“¨E‚°HœÈÎJÐÀ/L؍É'?gç0ÁƒÏšq7¾'õBÂËeðz·§¿_‰1vâ~è4C9#¼ ßcð¡ÖÝOœ켞Á¯
+¼ð Í8NÔhþ£kû‚?*P§~ú¢zÖt5ÍÉ\¾>¾[‹Ùā©ðÓ¨`Àw`¿х¦L2bí°^ŠÞû&´>¢ì�k©âˆ3ânì<Ø#àº?xܤ:8|¹2Àu>{fù§"�êSã"õ`‡ÙŽÕ:3(s0WsÉ¡�g‹sÍY”QM«u(ê\âÎë3ƒ^tæZñl[оƒ=¯`àíY¬ûÛ�$3³^}3j¯öŠ¨uçröèºVFvìÙ¿>£æý[¥3ÎPó`li$C›k{km–Æò
+Eúäï›FÒÀ@å¤z¶àydh¿%¥ v
+ïPèo�Ž¥
RùàHe.V«úVÑï5´ÞãG·ê+v:ÒDŽéӓÌp™€|šÌuœlOäBlnŒê«&3ؓs,#qÏòhßsé«3¾ö³¬iG4Ò¹6ÖÕ*Þ2u‡s	ÔÆù{aæ"±ò	v=âéY­1e×s\ž¯”)zÁ¹Õ#äÂ/Ïúde')ѯaÃ$Ï\Y@
©ŸdC,ϙ²È°=zN²ÏÒ·ÑdŖ÷Š¤ë¢/Ì {Ùj«¿æõ²óç̹o¯CKXËє�ǙMû%ø
+ d¬×2ºn=‡ããàÖ®¶Þ'œ#•9
+—õÂxìTÁ…"píÿ×»2€·ž3þ¸ÙbXR)ò\ÃÅJÖÞýE€Ø‹ÚÔ=¸àA_0ð`[4ãT_ÌaG­T~Jôüö}åå¹™YSŠ¯ÃØÿ)µDbÈqµ)0ÛÁ6yãÛŸ µˆ
®“Z ®N}H¸Åãâß]Œ5®1¥¯RG¼åˆ³ØrŠZWVÜf'|îÕçÏk_õïØ+VrKãêeAöõ~+áËtΒ[­=·Ð3b6¶y!MØ­Öy¸ÙU±¿Å¶uRŠ×‡¯±Í¦r˜Æ¯A�J™–±x8º%ijÆ߯“¶²ž
¬ÚC»@¼w/kœ544@WªŸüüؕw³zÏìÅÿñ^m+vGôæö‹A
+‰Ü]}«Nž¤I&88ˆ(„`ÄH8
+Ì”1ÆŸU·Þû\ì§Aš¥ÚÕÕÕU«V9(e`ì%�+Óî u÷‹Ù[ÂAk+¬6~=‚>«Ã%¶Å
+-£¶Ç¸�GfÞ# #IlçÙ³€‡âÊ>{†P€ØoSÖ¤ã½s,6€¹‘ÛÛÜcSD”`KæÀS5òèd¯¸õÏc<%Ì¿Ôü{,
Í@kÞ®žd`Âø·„Ây)±~ Â|Mb4iÖ5»Ýsç+,Àh&d™Š7^—U0ê'/õx¸"îMVd048{�˜¹Ë+tÇIŠÝA±‡NÖyJÛ"€—Àž"?!¶ð}èÐdÜápÁ'Y«‘³lݯ7Ž|%
ÇÚ¢¥ï¥ú¬þž¥ê˜ä	ÏÝ1ç)`Ý쏌”vM
àØpHT­TúŒ'>;því½5�f£¯Ø{›Ö;Pî©z!Î){`ˆø�×᱕DcÁg®¥Þóv	\i­\û–ˆ·¢‹\ã¸}Ÿ²,´޺ΰ\ù€ñ¯Ž<âk¯o€·k‡Çœ“ª393L©=ìe‰qnnkÙÏgd:ÀD®vUŠÞÆ÷)ÖS—û‚r]:;óvõü/8Lِ`öt	ÜM1ÜlÒ�lµl¬6ª¬.-.ñ½¨/Ǽ7‡©s½TΑ÷ïOãrV£rØ;êâ�œ¹y&ˆHSI2±³/ݗ=™k€MzéWl«G¹”Rß®F๤j]lš—³?2à2“ÃÕÖ:’E%…rª&…frl$§±Ì!¤U)»K/öâøû•²Ö»+Ÿ6ëX)\\‚iœ#té­þr`°dr¯XzØ?gύܺµíêù‘°aÍd™á	àœ°Ÿ.˜IŠ9Åq²ZüÓm£…E9tr[ö€A5°h«†V‰ÍLÎJÝáu0§pژ¶«ÁFz‘‘,’—>FÀ¤-�f
Ûb3GÀkC^ãA䨈YrÛ²œ	_ž»C¡s¤¬•²ë
¨ÔnbسOòƒGá¼¹®¸¸‡ä-Ô#®>"ˆ\¼®Dæ¶{ uãb	ÖJ*¾DºÎnàW+}iq,G˜vµÒW�žF[�K©k)–‚^–l/R$uCáïÆ:âlVœ»€ò|¸Œ+æWiZ~Qg£8Ïƾ¶ÊÏ u«´5XÔ°ú¤‡¿Ïsu~ÒÝ]?ÌɳŒW3Í)Ø0ç'S8ø.à:š‹e ߧµ˜ˆ_*Š¨¾½~\Ä13JIíÁaáGMÞ¸c穁éêaØ} û\ºõìW¨&kH±
+KìU0DÞ¹um9æT›=óᗩ˜ùÜ]E€‹œ^«TŠZl÷©*RÐô!X
+äð…÷Þ&ȳùìBp/‹¢ˆmÀ¢³ëôÖRp'>!ñ�3(2ïø6ôēúv5‚Û]|ÒtU”•µ`T—êʪìL~`‡¶wBµÛ̺êW|{3·/·wÿ8ù×W¯ÿÌßýéñÛÏ?þï?{ÿôôñó£o>~ÿéñ~ñöññýÃÇ[{	±ø¿ï~ºù?iË[ҟw?㏿àÿôÓV·¿nÿúwÚ>ˆí·7¿«%‘˜­ÌnF<”€ÊMGøîF”„îN|\G.=¼on,¼æ{ýB6UŒý¢çƒÂ
†éX¤”@ä¼c]R°É¨R è£fåg‹¤uP¬m”Á«IJX±3˜%‚	Ýaµ¥¶ªxjÉÓ6?³Í9ӐÕN-™§Z‚ÊD¬†•
+'jÕTY6�bèc¶n'YâËøJm»)’S±„ÌzªÝ耿¿±Ô¨šPø«Ÿæ W‘§Æe!¨|Ès›E¬åH¸vÀ†ÄøÓ@o°Öޞ>#à,‚Çžœ„öÔ+µ6„¹EPnjWYVÙÃëøa¥LÁÙì ÎÛL¼"àYüf:¾
TfH
+©9HtÄîOë3ËNÃö}‘%"›ÓTzv°¦T �RÌDæ�Œke@Pú¡�³íX&Œ“
îpPSž—Ü·0¡:w¦æ`ouwIKFª¯t»m²•æL].‹‚À0GHXb•ðö”=É:ÈÞ>qu°azmš7U¢ËfpkZs4§MYué2°Ë
+d//­&h²µ Ózæ�ì?õÄrT‹�W€‡å 4ó+º¸³ÛRÕg„•jcï^ÃA#[¥|f[mz…
+•Ë†ƒDä7ÓfPX²{bRʎõ©u$eV[¤@¨¡G
+f\�­æ·êI60€èÏÆÕ^vˆ2µïÑ˘ƒwåâd2 NT‘`–`.wÐl«RX—s÷’ƒl!€ƒmΈ ˜0U˜‰ìÁÑlÖvBL¢“ÄôíÉ밈º1h¥RÇY´h뤥ö 4cl”Ö^÷cp0í­ûY½jº�ææe(ZQé,Ú+ÐÆÞý¨‹š‚²Y
+&ûǨÖômöïX0j`ÈNãÈn)N•í”Ñõ5ÌTt–}îëH”oÂdš¡,ö9zvO*Œì	€KIT§ßcž@èÕuý9¸}.œæ¸ß_µÁëÂ㓼á„×L%]Öl$NëÜû³B&Of/7ÝR”Ö3KÍ¥NõŠ^/ÐP=+Ó¨»­‚J)'GѾ(œQ&!°]†mx͈ÖßØÜPIq•€e†cvӕئá]´J� ru´aÂæ`¶é‹Á1L’š“CÅø7e¥: ¸¸´äpύ|r´®M€mµ¹Ö¹Pf÷P°_}÷õëÏOütÿôé‡Ç÷ŸÞ~èEÁ@c——Û×úüéñûíś7¯ïï|øö‡§÷búrû-ÿ€_—"å2¼*»x=•xGBBb[ƒ²«Î˜Ü‚ÊîtwÝÇÝsƐ±'Ò™ècÖöÁËu.®¯O›®¨(n*_¶ Ÿbü5 ÌÓ¡¢µúg4”ÁµÛ%ÆM–ÙÉæµS•«9€@¨#ŸV?ø`:T4,µm÷+hñÁ¶ÙÀ;Tïhö™‚5ƒ^æàöËUϘ8{ö;…Ì]ë2JÅËd74.PwñLÅc:q^„·”ª„W8âÛ­ñ]øxÆø ¯§j¥¨’ˆ¯õì08ŠV›u4¥Ámô>sò¬îG&9ò2@è¥y%@ºw²¸Ÿñ…{V¡Óëálò¶¾»°Ööº„ÕÉ3¸o5`QÖ«CjLÇ,XͰÇ�/œ|)‚eðç¬.”ý”`ò,Ñ<åG?Ê"¢`.&07‚\;×',ۉíjƒlz Qr°f“,Ò¼¸À))‡ðîÐáœÙX@hE¶v…„+7÷:Aëî`‡Ñ¢ƒFÜ+Îe¾ ÁB“¢ÕÏò¯ðž+ˆsk/ä«Nž­¾åjí|ÈnÈ ÒÏ~nË)Ø<8ì@3×õ¾¥è"1ˆ×(gUU=Cjk%ü‚ƒ»›S»Ûº6Ôòå͞éÙ-æA­¢xp¸Pøz•;‡‰ºßÛ¨~íYÇùE €Û쇢¾½9‡¶qØ	xØ3^º¼*<é¢T�ã¥þÏ{µI²Û@äC[0AžuÞUñÎc€¼W‚�ªXÕ½/t¨˜ØËn.š…o"q›äݖ³"'Á€ À":ÀC£PÒx¼Ù®}ôà¹èìê—ܤdÊó`<œe€õÁaŠfÌCö4œ¸¨Î3JynðHçvuà±à–bBæümûHÊ�°e?ѐ%]ƒ¯‹D±+·Éˆiÿ}„aàÐV7ÛOß°n`*ݾ÷°ÊØÝø~ƒÏ~Àç#€ã‘û¦_.P¨ÊG»•F‹Ü9Z8‚%Z}Öå«r=Ñá¼âèõ<kÚýÓ·]€ÿ ? ċ.¡IôUr¦ªÝ\¾2°Ä…×m°Ù(¡YÀ÷"	.Œ1±'×PAÉ£‰Øá!ê¶äýºö¥”¾N6SÚʎõÙc·€Uº%	ґ¤®ù3J©k'Ž³®ž-
›„[üV¿Ê\sÊi†-n õí®#ÀêÝcóƒ¶óÓ­Äm]œø8îÄE¨·In+EÄ(Éâ@€ÝD”{€›WYýcK[9؆§à›•šç̏4S[þ{Æï{ߞG‘$O©ðXÍWQòBá\+5`%ï1ÛÒ¼î,‚"°_yúU\c1áŠ8êÇÕw¶ º�eºP$ÄÒ_ŸúçïßRn‹äi†;ÄÐ5÷}PÐ/Ÿ£k)\'¯ÞýØ·gí@k&ý𠧤²Š¹Ù–/c�¹¯¾É±õõ
¡Ñ+;ÜßLQ·+ý́_ÓáF•µøiQþ\|Æ›˜ŠAÏQaPÖÑòCZnw´ú|ë<ÚzÝâüèÀoqð¥lgè€[­m‹èû³õs+¯!®@ñj_ž´CêzÀ�«ÙԐt٘Û@ck
+–3Õðé¶lgé[îì[ØE,BÄ9>Û´™šnq?¨þÓ:F»9lþïpžœãÿï›qj“éU™k$ZAðþ¡ØoN…¸SuípÀ<§¯2ä9@Ëu6жF¸™ãÙ"=²+÷øV^¼ç‚}Ïþƒ§~Q)²9—=VzŸ'5|6~ðœ=¾xi1À•(’GÜÛOÊÔ¤9biþÄ<¹ïöîƒÉÃ14ÞV­Ÿ€åðCNŸ!ºìž„m¡h˜‰pPí[tÿŽ֐ys8ç™Õ;~‹ùͯçbfLò¶ÇB„ñ˜y`šfh..kaJƒV¿„8A.®aìâ՘fÀUJÀ^ìW#ÛõâÒˌJ:ÍH`…JŒ3CR³O9z“¦Û"º¡xµNè¼.= ZBZõ4³Eyz[#Óÿt)¥�™,RmÇï{©êßbqmp4Œ6@$ÜòÚ]=@�Z¿GÖ)88½¾°­u‡¹â 
{üHþ¾Þ¯J‘®ª rå�¹¨:ØävÍ¡‰eŽ±‡õJ~(#l̈́ÑyÝáR]šk`Û×ڛZH\	]àº2à‚î~ù6®ÎÖ�'WzŊ¯i§0Dߝ¿Ï(ê5¯kQçÏ,V¿52Þl‘¬bY¶èDš™qc8h’ùx�¦Õaü+mµºÙîMg ¶‹MÓúzbLÉïô—Iþ…5ŠŠ!Bˆ›—Ë>4þûÃÔN͞•jS³tۘ|mdµ‹GëñûheãÉåÂ\áÌ°)(ºzìR§6Bs:ÜÈÅ?@¦¶S#*›VOQÇNY'I+¢O<Ú¢syÐåXyUI¦ëXãÄ±Q$�¬Eã[J²èèÂÖ3[<4@·ôȵp¤Àl—’´Ê¬ãÒ@”«Ë^.ý¨ºÖ°£ìm\ܧR÷Ö²Cöjˆÿ5º°—¸ênхݶ]mѱNëmÆ¥h†'íøþJüÙÜîk·Ä¯	/ÙÏR8µn\)œë²1:©Á1…ƒcFwFUÌÕqWF
AÉ\§S_4,0êM®tˆ\7ÕÁEŒîÀ™mêpÙ[ÓNWê퇚7î¬G
Ýv'€Ó¦o=°Fúêêô‘ö ™î0Ü*ïˆÖ\9öX‡lc™%ˆ~–æá*(WÂ
+×@Dgï9°ùªŽ5¨âÜ4ƒr'M?O*°`!AO*ð	·Å:sƒ–¦Óñ–DZ¥X€\0Bz»Þm~ý�äºn*¼Zk42(„{€\$˜¾KÖ¾/rYëZˆc!¹À	ÂÔBï}¸—QÖY$¼u‚Ã-“œâÿž»7\ÓÛ
+ž®P:4ík_i‡¥;p
+»7x„b)…§ƒT¢2o2è9‰Õô«·Ù©Jym-UKDטÂV\_A͋èI€üw5‘°µ;åüÖGžNjDaíZ‰à.peùPØù
+ãå×!°¦9hб‰=?}ªNñPxÖM'9è§èm¥ù`á¦ìﮎuGd|LÔi”>õd»¿ÃV%x¡³†eÈTɨÂ1E1þ3QUêzª�ý`Øéã=Õ¦¼ü­?ýǀ¯à_ÿÍ$·Ë樕ÆW–4SxÇF�é–%¦#ñØ*ÿߣD=&Æïû_÷wͷ䮺e$Ê¡I½f˜]"¥ó½Hù!T)\½úhŠ)sj)¦K‚!yçÙúm¥ۚbÂBO[°5Ä:Ÿ¬±ÞàÙ¤X.jU8aKÈ\>+o¦VfÝŌ?�8¤ùgœµÇ}ô<„ÏÒÔéA5æOÁ
¯§	÷ž’«¬…c©].`“ºžñc¶ØôÛ
ïæ‡|B赔êØè¯ò,qB(ÏOùªajÚÅ|ǖ¼6–äÎ×hN3îl–¿ï!QPÍÖôø½Lç-,ù­ío”dÃÄ‹Nìg¨­ÃXhé…úíׂöî@Šs‘ÛǶ6\òyùÀàuo؍[Ç|]‹…„æ­¸ ú<¦4¡+o öo(UÃ==Xª [6‘a+óÖZâä:Xõè­ÃƒìM†“·Äµ€¡l%_Í憼읎ò]ÈKÓ|×0:³$ˆ{e|ð .µ»<¨.¨H2ª€;­æØÆ|²ËË÷,möpWŠ $ƒ8'AL¿%ˆ{t"åÙ	»±m
šï–æ=ŽngNO[JžÚA(Ð|×N¡ŸƒÍwq:öÕrvðDéI6ùnYKòI§˜'Ü{m´^n:„‚$~o–êñZ¡ëù{Í,hƅO™&野ˆâĉž…Lò:֖…B¹àR[¼/€_Ýî©L 4g
+³c:ø}q6Ɂžüö'ž“ÆÓqO‚e´å¾DíZ¯›F¼ó̺]œqd<«u{õ!ÿŸýŸ=›ñ䚸0w,™`½kàÁ
Iƹù6â>wܨp@LÉ4]lçPޘÿcϝæ\Ðá%;»Ï„ñ<$ÀÍúÑ*þã(m´.ýÜø‘¿fÖáä]€R“ŒËlï+é¤Í÷Ÿ¶õ\Š7~QæN
+ÞaŠ5p‚[BÎb°m峉™ç-O{go“qóàÁ<	:VgF'½É›s©°ÿs£î–kÿßצVι¿€ùê¥5°GÝ[ÃôçLo!ô^CxtDoŠ%G4RÀßo0~¶ÁÇ#€ã‘_è^Y7Aýs›óðô®Åè]]ÔqôG[`Q ’Âó̓«¶ë¶-:\€#/ÌMöÌ:Æ͹$o©«œ»’tuÉÙÿx¯–KnúýwÀ^¤!‰”(.m#‹$`ÄFÆÌ àö±áßϑHªªî½Óð¢ÒÌLÏEñqxxãÁ;ÒUô£?2zëÝù¢—hÿ’twú屑Ó4%ŒÙ”]|¶¡Ÿ¯ƨÏYv{q8‹ÜÃwFNaXl÷‹Cô†v¸‰o`—äynTbÉÑìыÞØÎέê¸Ñ추;Îë
A߉Źoñ:Àµß,’pÔª�+©Ö©0›‚å•
ÌÚÈ×úâ{<3µ©¨�²Ñ!´YUvŒ\ŒŽ§Ç÷•¨·*ܕ96¢°ö¦‡à¸³ùfÛã(±UßMïðá´àöŽ¬6_·
+˜ôê°v!yp:º¦éGB·±z¥©‚±£U
+Á˜ÊT�€sõ³‰{7©ËäڎÁš§xÄIúÂ`26›5XëDGL´e÷ª9˜“ªå,ñôv„Š‰o–KŒèJr\c¶Ô}ãìi­¬õ™:ӑ%ñ‚’Ùٌ²p…äIã§Í€`Eã›Z@`«ªÇ»‡wI8/Á»Îôê½ÞŒrH˜\þæô‰,µ©J‚zˆRÿð>‚'£º_Ÿ~?­„2yÀçâ=Å‹»çޕò¨þªîüàZÃ$sßYtDÀ»‚„¾îvÕ®Ï6£†
–êÚ»ÍÃA|Û©ƒ%«c-åvKƒ€‹îà‡K«¹/”Tô:(­¼ñ^-RèÅû_Ã×íÉxòØgƒÒw!Ø$HG%ףؔóÝc·pƒÁT(rPºŸM`}™ï¬Þ²Ò!Z8˜qÛçÀyY<Å^o‚¸?«Yn^‹Ví¼Ü)–õ®ˆ´G¶é½‹€×v€"tq9¦Ëié¶&q|s׋YÑG­=/{Ô\ç)¼¢äÃø¾:œ±,Þ¤Ð9 ßã¤(9Þ¢ o#MŽßß]õý{ÉeTnM¼KU¬
+¡ô‘mÔ¶Óè¶A˜ï/mœ¨–7Yl7^CþÖVoÜ;ža¼‡Í볂{OõQ·’"Óâz/RGo[sWô­aÑÁ^†¾<ݞõ ß\õ ó0§Y/==uAÛ
D'´ÔöŒT ºlôw<}žjØ͜›ÅÔ(s8ê°]Ö¶ùvèé;³ç¹½_*é­Ë»Ý`sïzúBóüæén+úÕÉÿàÃÜ:v"÷BrPT÷tîzÔ+ÌŸX0`f	á¿+˜ýXÅq�£ùöԞ‡Ê‰™j¾éI|ß"ôåƒÑº-$w~Ú$ÒzÛ¹ÁÇZqÇCûÏÑiâT½ýÆ@x)*;R¹:,w…PSÞ'ì屉w\›n-›"»Þ¡Σ¿6Þ-öý™˜w;ÅÕQN!6š?V)`ÛKN[!†såݍKë 羇pòŠš4oŽ±Õµ÷VO£Á¡\°Œûzîæê°Ç°¤’—Îñ@ÖBCZN°rۙxh÷<êfÐ@Oƒ;‹Õ$ۀ§K€3†­é^€í8@$A%;H³)¡Z|\1Â,³ÖE±Mnd˜Ôˆ¢i­Ït¦R¶S~ü0¾%<²2´Ö:?È]ì½Xr‰Ë±l|ãߓt=ºI24Û;§³“’§�(¯4iš(ïú’4*l9™¼އÓ#yˆ_·jòÄÈhÊV,1sTÙYØ®öâ–l¡8Ûw‚y€3:’ ™¸2m µ¨ah.:
+?h:¹ãø\J±ï‘œ94ã&Ã(g÷i„&>/)¹ûy°mâà\[
T‘lïg’ºt»ŠäLÞ<¾aöŒÝð¤ä|û¤—/¾¼|÷Wü4FîX´:ÿúøÔցíèo¾ú}ÿÇï^?~ýãÏÿýןøé§O?¾øõ§þûõ�ñíëë×O/ú%L~…ßßýòô3~8<]þ€þè—_þxùÛßÓåã8û—§ßö<ºL‘ÿžµ?×4é½'0HRÄb¡/G:º‡w&>/¯Ó·?Ý׊Þ(ã4*–
+›#@;/8w2@¬IŒT˜rq¹ûÉÜy.Z.
+&·³µ¬ï«Oc¥´›TÉ¿M6aÑæß70Á¦ÅA.(´Gø<ý¢¹™Ö~]—Ã4$rïÙßF¥{p 	ºÇàÒÍ
€›£ab»Ø”xP­Íњ؏®Wä!˜ë+ܺ}Ý#°»“Ô«„I¦ËCïOŒ¦@c	äàÕáå1Ó á‰QÖ8ªžu”tUQÇõË¥µ0P+I€$—‡œšö6ÈÏjoä-Ò.©¹sÜV䥦¨é’"òÕÛxtOÖ1¹îà¤+ÉØÃîÁ™ÎQéc[4°˜Úý)÷·¢;Φ™à¨Q!õ貦ry÷ˆnÍÁ®Q‹ªî²õY&Ö-´´ÂÐ)ÁC_˜Å¡þß/CØS›ùÅF
+q»šb®¢Î9“§(ÁRs4sbñòâiSðj*7ªVwÐYc€Û]­
9¥IøŽõ©)&Ú³UÝÎeÍ+Œ?ÀN1QóïËJ£†zˆ¯ª5U�pLêâ(
?<™YnqV”ÜU’æþWâM-lÕÆ«l[%²ûU’ÄØuÿkÎ1ʐ»Õ§Ì�C]æî010X ;mëÀûú2°y`j^†Ÿ¦z֖Ö0ê¥8þئ¡Û%\ËAɲ…°ö–/Kè¼òë‰DûÇJÊÌ*ë|@ädú1$-²ÿý|GzN\¬˜}Î$sÿØgc˜³÷™BKx †äæv™šŸ¥$Ròè`fi#¹•à0\&`À©—ðÀÃ;¬¦°šS<WqÁ2PœïÊ`ñçMk`K4éñ‰?	B5}hlq
+Ïv˜ UYéò0à§&3'kêb¾‡€Äá©ÝÝ@ ÚáÍÇAh{Ô+‘ö5Ձµ´‚#F®�»öõ=”QÀ±)uù¤¥;Me}M˜sø
+
+Äíò0�§w0^ñ7L¸>ãQŠˆe4†Æ†äŽb0llQ¯\9vã4«òÑ\rËþŠ:f¶­ê
+‚l‚òqWOäguÈÂfÛ¥ƒ©V7 K¢bç93°Ï*êȞƒ¯¦Œö¯™âl›gÎæ—Må;À2A‹ê2P*L“3

+Ð3Á¾ˆ»À¼…Û¦N£$òEZZ|/qÓ,äp G+4â¸*µ8*¦«f|¾L¤ëþDäô”Â�¶.›d}ÛN5h-—xA­Õ
Pž:@)‹gZÞr ®ÿq¶L5Q±k1ÌÝê`¥h±¢½»!3£º°:F¾¶„ïÀÏxPW¼J)r‰wi9ÖáUàBzTLŠ„…JÚêp€«Óú^VÁ¤Tü±Ûú…,®øoŠuBStbOäýd0ÆžêJ`
+!>§Ø7 )Å»2Y2‰)j3›7f£T—d€¥Åº'MšŸíVïuåR^ÀË�¤­ìì:È!åEû2P´lÊxû^ýa—†ˆ]ä^¬1لKøßUvW+pi †Š¤	o÷ßC†âP$oýc\=Šâ53 O7µÖ˜.p–1HTYP¢VúO»—ƒõé7ß7X|WÇa•b5ôè‘J~ên¼ÌQ&žµ}/sp‚_<{êœu<kèÉVKÎmG/ý{¨šmý­Ò©ß³–bõDՍÁî¢-aμL,ô)ÌK©±WžjXv숯§cžÞÞùßãKÞ¾º’‰áà]@±}©–²îÝ«æ,Ȉ•ÞõÝy—™–�ƒ0ù>€ÿ+ôXÊÿÊþm‹üÓN¿?Þ¶Þc“¾ih=„ëX×\•Xé^|yÝl͚Òi½g‡äÁë-¯šXµ]itµãt¢„Ëi$ð|/
ĵъy&Z0¼í¬j0ܳËÈdËyŒ†çû%T#AÁ‚ãæ@;;³z W²¢«ÚA@G%€÷ù¹â€âsK’�,× EѳÑ`Ô(ïIŸp÷ÙHÁ{¢°EócÂö„¥T‰áììÅ杈¶„ÃÒ)àÇÃQóÝËÄëpªÏ†?çµ~¡sf·êM½¢ˆJÉ
4º!Øр¸%,­ˆ*%m^r¶Õ/I¹gä6+²ìÊ/¹¿í÷YQAB
â[/˜HáÌ
+¦— >ç•w†X§/ÆBŠW9Àh¦ƒÈb`½çÀŽ~Ñ�÷ž¨°¯ÎÅèØÕÄϞMˆ‚ADŸHŠ+ä@tsˆ6…‚e¿}Vµ¤%v'ÜzöV\Özþ’ÆPÙy­%°Æ8’HJØü<¤F»U}YA;‚%„E{kÁÚ#;CÉ/èž;m‡q½p5·È*%Fq&埴a”xpï6.5‘û=öM±;µ4®åJ#È?Ûu¸õ7ºq5“4Ê¡]8ór+µÌ*®Jõ3õÀ
ÌZ)\œ1ÓR)#Y 6—Ôšåò:fğýÚ7¯j39+¤SÛJþœ^`†wÍ£�Ã8™BIwZÌÖ\uòÊ$Öù•ÆÚ®ë*k»
+jPÜ
+fÅ óe¤6á O>÷ª·uiêîm]²“5b©â0ÏbÇÓ8$»�šÒ©	%)ú×ÇÛ³o¼¾‰à1ÚÇw=æ�#³î½u£‰ýA*WzÅ2“ܦ®J$´—"‰î©³$îóNgï$¼¦ ðž<»FîþFf”ggêœö"ÓXx
€³ig6J‹ÐãçÙ:Îu
+#`ö:(Ž=±ø<‘˜ÆÅ^U~T¶Ú¥nÅâ2)¥…ÄŸ�Ì/ý¦Éâ±½ñª^IÔ]PçUÆ ¥žl"³¿xÏ©³¤
+aì“ÑÌöw	…ÒuB¶$Û¯|9×vŒý`�—ú¡
endstream
endobj
16 2 obj
20124 
endobj
17 2 obj
<< /Filter [ /FlateDecode ] /Length 18 2 R >> 
stream
+H‰¬WÛn]·ýýÃ~	 Õ6ɹlŸ$§\¤há ­‹¢Ôc×qŽCß5Y­òP ËKÜÃá\Ö¬i²:i'žº½8»µÔ½¶R
nûè´Öö–H“>¶¿ýëì‹ïž_~¸ûòýáîýíñúÃýö[@çe—9ºê³íù7wÞßmçWW—‡ÃǛW·w×vôÙöüþØmµìUÓ65ÞnVª”pÁåò¤`í³'H,¥xà1(
ÔJþŒZwneXz[à”‘XÎï뮝æÙZm.:HšFÿç‡_':ߞÍíüÙöú¯~úâòåøî÷Ç7W>þôýŸ¯ïîÞ~8xõöÝûã#øüÛãñúæí›ÍÑ-ágge»ÄŸ×ŸÎ>⿲խø¯ïñ?à‡ú´ñöÇíïÿ(Û;ûʂÒç>ç̊QEV,Y¥ë>Uè3øëÇpέßùøÁÈ7ÿé™¬uléçÞ𧷪æð5¼ÂIÈ~EÓ~;E'þBÕâÿE¾Ýi°¨\Ûö¯ß™‘©OæçÐ]‹ZUTø ¨Õ¨{WêT½U`(es²öNØ;Ís¶ö¨ºšÕ+¨ÜÖ½Ø*Š…±(âFˀ)e7Ðwe·Z^ONc‡ÓV‚¥ã«få^&|aÍËêÔhOÝyÖؚ¡g#ÛÑÌl›x8.0öRؼ"ĵÕø1+Ó¼"Þgï’Q
+˜ö>ãhGDý0*­„Q¼…«ß$û˜²¾ÇµâÐðU‘™íÒØóÜð՜šE­tUzC]xà;šßÀyx6ô«?–­¾Ð¢n
+ÿ4£ÂÚH*ƒ±&Ӑ±³ßOæ(vRA–lñ¼6d_º£Uªu»‚k<&µ{Rð=ÒéĄPÊ ¿ÞR9’C,Âþ| ³‘{JÆ®=<ª“)1F¤›“?ž&ŠÖc¢‚¤xúí@ãndcå)6µ8ÍÑÁ»œ 8ofǃ¤ÚI
×vÞg¦t8Ã+nÕtEN/`Å«&"ñ—³¨�%gFœísºBlwuë5‰Z¼†ÍYµTã-^דa QØEl½³Ðô£7?« Ù:¬Ó!h„Ytp··€¥°Ž-{¥x\omñùèÖwWäJTó~ð‡ˆ…KÐÎàTÉâìÔx@7f°RC!1
+1¾‡«Ó$àA%˜?6CvV»3˜…ñna©Ã«I8Ôê¸#Á—€1œ$`^o@g¹£‡Ô›°X>‡Žè$V".`'¯hXD¶Y“${ÓxJØ{KÊÃ鞎	økhÀÔÅïIçQ*§‡ýeÎþùôÌ+Ûó—Ç»íüòe-ÛáöæÇۏÇ7ÛOß_ÿøv»¹}óö³j(cTè(llìàf#}nȍ~
Ò¶©Ü©õÉIÚáB}[dc™C7€‹ç£C£‘íæc»Ûà`Ž¦a&fTí¹¹ðÏÆð„yšÙÛ㳁e“"««v„ž:BÓÐj„ŽôE_Šx{ P)zŽ·`nì–Õíé}µ©3tŠÏEñ‡*ÃuN0ðµô쨶ڽ
+Æ>Ñ?[Ô|ëj5wšeԋ³&&d]…¯vˆ½‡‘kžn™@áÛ0…2ËŅO•`ڙ0]¿&VE©ÌP‘Ìx°G/+=bË)¯<
+èã$/65kÀ`a'oOŽG¦ƒ-üeŽµ¹ÀRÆ)#zߣGžE$-4–¥•ctu\ô[:mòè�·ò¤ª”¼µ¬ÖÀù¹±Xį1<‰cŠyT8Ì"Ø$&!_TÓ�…äˆ)Pó¤‚hr ͦۓ	8<— JSDsõò@ÙN)¸1
ð¢˜õ'm
gíA(˜pŽAvT/e˱)˜5ªó(‚ÌÚc,[Ùøüf:‰èf	×àÖ±9­ðx‘$[	¢³–-ªÖH"4˜¶Õ)ë{´XsJ²ÙjÏ»z9íñ‹–^	yÅi‹©ãu­Þ
j}UgŠ
	úµ¾#^/(ÒD~g¨±h8<AË@aN¦P‚(É<Ù&­}RœbƒådÀÉÅA¨Ø±@v:Àc]Z,¨Ôš:Ä´K€”2s§kb¥SÆT)ù=¼ž›ŒÍÕ©evÓ²i³`wAè9D3åýUõ°=¶ÅцÄzדubY*>z!Ø&'YœÈ¹\¢élÁ›c¬NY«àã*><]ÜQõ6ž[	Ùl\Ž›or”³:y@ìLv9f›&¥Ä¦£&p°”ähٚ`'qén’RCKH!qÉTAÀšZãi'ԕ¥£Ð]šbwE/J¢+Æû>Çbbgßa´áÂãê!tÆû˜¢JõÙ³ª¸rEýzc\HÊ]@L[Îu¢
%1¬ÔÖBã³ó°Ö”É9EZ™©†Àà+Üæì“98<ËÙ¯»ònõÑÒûÿ¬¼-Ø~”ó
a/ìQ[ð׏a¨ä6±y~ýØÈ/ÀFŽp¯n_Æâë.ž\Íe÷1xéÃÎTW´øi õá$þ1C¢sg‰]‘mW‹È(Uڕ}HFÝåGmF…j軀ƒk†ÚµÑbèât\«¹–©MnY—Å
+òJKøÖà A_>¨€ØÀPÜ%eÓX»¢ÖØårs8€rj©…®±Â€©×5°Q¯#¼Â«4­öêŠØ6H«Ø9Ɠ©m¯¨¡'1Æûö„Pï1jŒÇ09r,MZsØx£Ö€5B<ïo§ÙLÖ ³54GÊC°ÏT®à^{€=SY7eZ…¨3cID.AÓÜý2ˆœa›cÊÎÂÉ/˜Ä5=hK¹’íE=ƪï®#@ÑLr%^û&]¯�0(}$iÑéHËM¥P0$bíSÓr«+‡mEöè®H×PWb\â²�!ó[(ßn9DÁ@‘ÄsÉb€%Oó¤óí3-V}D ‡âS?ÑCÅVÓµþÓ2�™“"ÄڄFOlëޚp2´k€Û哝|8»Bσ}“âð«Ú_4†ýUL‹¡L‘›L'D)¥¹µoñA$ˆ´ž¬€‘5O‚d¶ô2Sd¦Ó}ŠH±®syz£]ºD‚šR¼Ï ‡,«&ŠÀâÉ�‘}üޟ›ÌþA32ösže
+-¶˜­fCÐœýêéMóüÂ禊>۞s÷áýñÝv~uuy8|¼yu{wmgo›V®kéܱFðÐ:£B!‚µ-™îh:¢p{§¥õu7à}öÎ÷dÊ\úÐç“#ÒÆþh‡ˆ´u}©‘�$¸æfâóÐÂ&W¤e.Zî¶dü\©"‹Š(`‚Ôsk`°I‡ù¤¬Ýû²ä¡e~þûU¶b×uD¿ ÿá¾쇈=–“€3`[ÄB0-ÙNãA¦ÿ>kU­:·[-‡ˆÜ`c	ƒÕ*íÞg×´-àÈtÇKʝ%\:·ò¥¨¢‡§c›Õ2©–˜îy‰¾÷øΉO¾úüëgŸ?»y
+Âÿê£ßèÈ~ôȧ·_?»7è-ì¢OÂ#nVÞ
+ `÷DÌk¾÷Y{
+Í°ç+ðtn
Eíy(ˆé4ºֽ€«á¸“àÛtv§¨؟\PZÛzkû0O	-¦k	¥QIguûVˆvn'ð©5å]¨I[Ð&쮩›¨ð„ÊÒ²–w_ü†ƒ”ÖvY`Á1"ˆÊÝÆÙ$^‹Ì¡&–ÄFu¦lé`åBƐ* Zá
+Ë6F0h6Y�ü™Ù'šÁ Ô©Ž¯µA@Tå=ël®aqÓl
+ÚòŸ@9ÀI¶·ìÛh +0ã֙å”fÃýÇ£‰=º°½mÞp”{x
+ƕ4Mƒº„<.¦Z³Š@‹ûGT8¥Ð*µ°à&33×êwâôØÈÖâr+NÕs‹ž²,Ì28tÁÚAëµ5ט¢dʆgw)òš¦\\¤³×…êP¬â§°±Â	Ȝ؂i]áʑ{?vð&„ú‘KêÌQt¢ĪÅÂÒÐÖJŸ›¤Þiá†6ìkoUÏÛ¤^çìÏæS*"dp y¥[éK‰¦±¥ÚkØ¡Xâ4Ž}ŬŠûA#t]õY£Ð‰uÕÇÿJæu…âë>«}©Q‰ßǒçuGçtõZóY
W{Ö¬0x7vG§kÐ|¨]âT+=3ØÊY	{ .S[iÓ³³„~w˜ªÀãwZE¿½wl߈:3š“Ъ®´{˞§v‡×îì³7e8êŒ,z©:;´R!>¡{ÜÁ©ÿ¯•¼'…5-y.չϴDÉw‡kÔr4šóêwT§T’‹ËT¨^$¿;&ìÃrMÙFñAÙñûÜøî°ZÀ2ݵ+DH‘(À,)´+Â)õØ©æò»]“ç˜TØ&­)v掁p ªÅݤû*âÁ!
é»V´k3omj7y%ƒÝòMm.dïm*MQÃ˝}!œ“ÕB¯€äÞ�Jɤ^ï=՜ÖTÓ·bVØ"#w˜Mö¥˜Z²C¡ðzmoÊ?pj
+S׫Ŧï%PGþ6ᖿù«(`€uÐ^îBµ³zšü˜.Ò6Ò¹F ZÓôµìóμú,KÞšÜùˆC¤këA4
+UãÚW:äŸ|-’¡g±žÉa°mѾ¤¸Ò×V¿ráŸv¯Zbs¶±…eLÉ�ûÉϦÑD¡{ÊÁ=˜‚ë×Çó«/þgùÁ%¤Ìƒÿ)ò¡ê7ð2ý…}¡‰Â@!]ʱ‘£ºv  À†œÖH4ù²çœ{.{É`ª„¢£-¸‡GÐ:Âyí~„wª¢û¤›D'†ë`ÏȜ\gÆJ~4?òÀ¦ŠÕ󣈶­JÛ.­8Ê_G#ýh¢m*¾›M<)}ŒÙæ÷<läïZ'<Xœç³e;<TGB¶møÚ¤9£À-LJ$,ƒBð#ú°Ÿ˜B›_È1[˄%
+üÃs¤¾D;J|ËO9׬>$É:&ÁûLج²"�xø‹�ôpñÝ2!†«G¸.ó•e�†_œÕJO——ª'¤ˆ™½Fh˜åÔ
+à-E91ÅÄ"Âk‰Yè˜Uc*º–—a4OփRV¨UdƇ….á¥3m›„M|øÙÖ­£òǽµäåaðT´îjòÂΎvT÷ ÌºÜãÑÎVo2ëUOxØËK
+³ê 
+»s­bVµÌ3¯Ê¸âù=È¥ž&¸˜fmš-t¹›déл¼‚Àr²X~w¡·Oê“Ä®óíP¾6qPñhð0ÿf':Ëñô¶lÐðv¬êö·CdÕM¶Ã>˜ƒ«”Ao»×Ñ,«…ô ŸWî}y±Á
Yµ²UÛ;†oºŠ¤‹ò2]@ùY�	Ì:1½û¿º`îdO8j£Ôù2„z±=ª‰(Κ«½
ÿé¶giʞÏN;<Tßÿð5è1½×¦+ÎÚ,Zð¼g´žþµN.’âfBEÀXïã,Ā2®=ÇTÞ/Î嚕Wj¶;‹"µŸ‡púŠ5ÓL띫ìælˆ$S“T1µdxƟJ5„�1A±eQrδFÜ®²++¥­Jv/Õ1õ6ÔÓbÏEgâg¿Ëí†]p«7ŒåŸÆ÷äg¼÷ö']i¾'7ÕdÍ+]CëP%®mTLÛ6rv‰jj èS旂xïO¼Ò”ËÒÈÓõ‰'
+O“½PñÔc~¶í6üìyaʇ
+Úm¸øç>T,
+•ÊíÕkkeKmòzÊî–ìÌõcŸ›ˆoUMäÿ‰°âGÁ}\¥Xm«†	/•ðàÓ]i&Mðƒâ\°[΀šMÿ.–10»q$ך…ž©YP¾«(w"b,uï[uJ{XjeHó,}i<óÜZ>	{®g¯Ýµ·8šª¡FÓHÑ*ø¾î­ÂOôg¿¶³/À¢Ù%¶ºPç<WxVSP´¨ÚqsÉIÙ­´üm¯¦|©|/?DGÄÿPa½‡=òq%(ìêûnªÃÝ5Åӕ>äÕHI£òÂtd“±’ïÿPÔeaƒQŽa-ëTüî¹0ùݦ±‘ФkÉü,¾Cïšã8לñª²·ùª"b(d$,Q·w‘‡{qD³¸v©÷‚P™Ö¢~žû̑Š½$‚iÑð>vº1tr2KÆ
+t|d†UvÂMMßx÷ئ‚ð€QBC¯ê’")ëPL©u~l4gnɋ>ª+ÃÒÜ*=lâ5¸…òÃð2³f”©Æ±âøCRmšËPÓá2ñçwóñ–ÌÇéã«Àµüƒ«;¹Åá?¼ƒ_ð|rõä"d“1'65O¯Æé½÷OŸýÕøçÏÿ%§³¿kÌ-)_Q»²²äùp¿R:jo‰ÁµYÄÙöєÔ³6Ÿ9Ìؖ•™hHéëphâ”ýØ8J–B@·ß‹Ò„D WÝÝ=ÓÎÖX æpË4(üÂ2A8ÛÑêœÿÚÔÈî—Bæ·¬jo†WoSq¾ýylñ®i
+µ7^è%ßx¤,¥ðjEð´Û´`‡2ï]‰59G˜PÊñuÁY»WõÏyxðifåZÙð­Š®UÅT–…š>ýpC3Óø`&qA©L}&¦^+±Ò+û\/ÃU;z×wá¥9R�<Zå«NÖ.Ž™ð~Û:ž*æoÛtzÊÆ”â�Î`áÞó‚‚û;nµ@M¹£‚"[r[<Kn]^CçöLc#û}J7–DemPÝ(¹¦[—ÙJ9½¶‰—T’ïæã:o†ÌïÆà—8?%™¡p‹¹„ävâE𨻄Feï•m<l]„‚.bÜÁ1±lYn	oôyó֊ºô*"ïëQÝÅq@¸OÁônŒ¿ Õ`rž(¦Pä>šOrä©‘ƒ¡³H¢¦å—£x˜Øåtä[V³7Áª·©4ÿG
ùäj?ýꃏÖ?~{óôñ7ßûÕ_>ÿî»gßÜxðñ³/ÿys/üޓ››Ï_<{z²èIáSÎïãìÚg?6ÜmÞé÷øá_ýpj§?þö÷tzʓ߃ؒ’ÕÂúÙ4{¿ýã½hž(lYÝÃg”~}ø|Ç
Þ&äz´û°•,»Î8†}|í‡^¼Ù‡Þ(…/Р/ïÿãn@óýà³~%í=þÍ}µäX’ÛÀÌúú‹ZÎÆ«|ˆfaT³øúŠ)•YÓ՞i/¼i¢óQüÉ Ö@çÁnä·Ã£ñëxÎ5- [XÀcE{1CÃÊÞ]<Ó\­7وܱçÙY§ *(`=ëÂFû†yõ„¿Ê<ÏzôÐB6èo¹%1ÐvÿÔ,wxÒ:îB1>M}ÚXHãA/{`# °úª¿'šó‰†ÆoAWiX@1ˆÿ/#ʗ8l‹úuƒ¥V­w[‹Ó’Ê(œç,ØÖR©úûŒÍ#ùjPXsêÀ…Vi†€æõW—lWès`ÆõêòHç#AŽÐô[°�‘�3`õ®ˆ¿N*b,µ’Ô­HÖþa”<¬1ÓUa£’†Ðzq5¥3ß3®aº+ã]Ãj&ñ0s£…Õåçõ5¨Z`£*P™P¦ð$tiY+ÓJ›ï'W£(@¡FB„5ça•Ä @¹¥l+sC�,YyŒC”ä÷¥CÀYf"pÏ¥hK‘bÁ<r§`¤ÔU,5@FXÀC60]’(Bjê�Hœ‹Ö0“Î •ÙtÄÂS´{çVÊ«’„ÅÔÎQ[îhÈ,6i#ð–DÒ¦µ}Ú¸Q»¶w5ºrÎI~ÏM›&³Á‹ÐGS0EáE}Õ2•3ÈIµ;f堏á™åXpRhË…ZˆÑ:–ÖÏñ’6‘/ó©dcËÞ¿qøë9Y™ôÁ¹‘èAI-Õ.7Õ¨WgYÝK
À­LÝ3Ó{F.¿?FˆN.iÛƌKj´4Rn´ÆÞd#Wš�l£‘KëÕ`K0¹òp(»“Kb¤êìê~WIwVÑÀïI.éäʗ¥´"“«Yme'Wï«8ÚÝ3,­l+:Lí(Ú*ÀkfEÿ¸hŸ¿W¥‹
+Š_~ý]¥Pú”
+ORèY]lËlhøStBAœûžòŽð8~ù×/¶‡Íxu÷¾ÉÙù7d3ÿ_gs<f3ÿ´l–ÿ¹BÇ}èwô/ês6x—çö̏¸ÿÛ/ëñè z˜[·ë‘ùí
+C{·
+ù)fñ
KÁa3òöl{zñ§	»À»
+킉üí
+_.(©”çÿ�6#o϶·“Ý@a®iLØĪJNX´ÃBnœ¬ªê •òÄúÅ?KÈS¹Š�r«ÿMY¬º~5ÁLb`}]—ò8¬nàîÁ‚7o—Õ=®[T�lÿÁ–K½%Gákrâ›j þê}œÉ!V)ùš¬ÚÓçðLÁ#7Û·[¼ntÃö÷7xùºÝ¢ºe@SÓ`¯Ò8Sӊk›e„Eº)Ûs¼¸¶àÅ2º…»¸¤&²
+ÉÇ·¬Ûata—÷¼ùºŒnQÝ2pK1÷ÛÕ³ÐþÜNè^½\Û½\[„Þ\sB_ó¸}»¾YuðêÁ‚7oÝê×-œœŸ'Üêe9^ÄƧvdÌPÚ!;ÒQîؘú¶Jû½,¤›]ّ*7xMRÉÑ2îS`l
+º¦‰y¶"é¡7ó­¿FŸwŸÁïçj0Æþ¼†&œ éKo'̶sOÒ-­ƒíïÏO¾Ï
°òxƒ•ª‰ÕæklþpÞ|ëfˆâ+‹w½§|>s‡/FÞ/Üùcy‚ž ö"ç,9äS¶xên
+ŠÊ×õt§$ƒg2°Áç»5‚Óù·a©3#ò5N—Ê	—öb¿e*à !/K
+Tϯï~2Ñó™y,±Ø¨*
+NǺ^)®ÏË	ßlÜÓü]rn*x'g›Zn'9!˜ZK7be¢tÂËö…œ÷'?™³ùÃyµ^ȉ7­Éw^Äè_Œ¼ÿÔÁÖþâ`«<¢Š$Ó[Õ¿Ã<à >nBÿ6#o϶|ºa…šûéߣö•’g?4UÖ(1‘¬åZG34÷®E…o~–>K¼ÑÎs4TŠ¢Ä[¶·7Øy0ñ_4ܖsíåovŠdjg‹£«Ë$®Ô4XÙiœè2ÍýÖR<áeúS	›?6Çú÷›
ÎN·á»yƒ/6~n»õ£ÝþrÃÑS¿¥úÔnwT-<5Í^[áo=÷}&£Ž”«hÜPˆ\»×гÂ5—ùëX¥½ZÍyƒ/F„ßïxæ°r4ÏrŠ{oìè­ú)e$s4Ðƕ¹]npÌ3,žÅæÀéƏ°z¾2¸ÉKß
+,ÓM> È¥j¼$r<kÉ…Ûò¢uËoϾ-ðwŸâÿ�㝯çd4n§ßLÀ91ÚTMè%7»Ìx¥øTy(Öh\¡ˆ¬±ÃñA—ðŧCK#`©	8r·!Y^1Ëþ(LßÅ{(“eB@´€‚ãÕR=µ"¹ƒöûßt”4ž
&IÁƔ‚úP‹ö®¨:ª:\â"toQ-ø·7»ú^­›
äJ±ë{xÃÅ+!þª›”¿}´ –K¶¯ñb:Þ3¯”¬‘X.p~M#¨ öZàǞțI}*!í^¢€å¬HhánIsM¼œƒ‹åhi£ŸèiWߣkhÈ}è{¡xzð—R"Øèf9X9Â*M‚V+ݎâà¡PÔãäߞ>ˆoS`•ƒ²h¶P=غ‹—ó)èï×kw«—q˜î"žŠð]î¬Î¢Æ»­½ª3-Ns¯Hy𤘔o‡ò4{ç4–B�uøEfv‹ršIâ|aYÈø8¯$æˆ$
+EÒê•ôˆ†ÁbIÑb>„54¶nÍ|@›»É{›ßú5{y÷oqMÃêíâïs�}i=E«YªSzŸșe=jÉZèÊz·œäÕ¹VÒH‡_…µ1ièÁ	–—•t{}b,ßÑúÊÊòìî¶w"-fMáÛ{ÂÇ4ÕoÒõÜá³üm²
Ò]LµÚøǙ›%Ú¸ÜbM­bZ|´ê D_m‘,­‰Óà%E³½ŸØ$ÅÄ*l퇏‡Áy˜sL>§N5¥ƒ˜ê>&uz÷m¡òj‚Q/2JŸüãÞã
+%“1ØGQ£­ áiÁ^¡îð%Ñ:?¹í<}Ùö/a¡Þi_gÞvhѵ<§©{ã6_.·ÇŒ³xŽ¢ÎóRB³±ŸØÌÄX[$5ÿ±Oêæ{,n#“ÔÆŠü¢Iкm‚ôý3©çM63Ú
æ;|„&͑‰’HV̛ùÇd67ä¼ÉožŽ©júIV‹aÙPçDò¶ŠDÎ3< [ÅHåäÓ¶Y83áP=·ˆµ6]¯x.%Óz-ÞXƨˆkÔ&óm,™‹OO2Ï0v‚Æ––ga4ëÉ[hߢ§#ž(¿æY²•µ7!f_‘äpÇKvKò‘èã$[tÚèl‘c¡Ù¸%ÍåÚâÝ!¿g$ÖÞڞ)¶ôö•…ﶕå«û|iÒnŽcbž¦*×Ó/³@8Åx—ÉöjðiGkóBÓ<÷Mµ£5Mø8Ç{;Ý~]Ï¿XíØê&+ðΠ.ß­¡Z}L¢×~ ÿøž[oGy0†ÏÂ
¦-*œ¶¦ƒÆŠ*Fòâo_o×ÔGpåKÖTO·ôöK±HvôîõûO8:ÇqtÆ/¿þþÁå‰Ò#%÷gåK²E»Uš8*—&þz;Êô›·GËrN'ÿù9u¿ü{Z*˜b¶Zjê#ªI—Üà«äM7vÍA5&÷‚Gì: C*Åá”JÉ6­n0<®c+Š<&á�ÆW(UáÓ½7TûO¯ŒèZ|.`»úM«Ã†RM¾°Ây¥†^IW‡õð±I”Þô\ÚªŒi¹¹QK¹Í[Í%¹	“
HJ0|Æ~gU
jï›ÚV9ñö«®·­ãˆþý½p�;¾û½Û<Ùr¸Pì vŠ¾4E[7 H…"Sçß÷ìÎÌÞR¦ÕºÎ
ª—D>w9;3;sæL„ÿJ¥Ž|mLëž×ô‚˜OMõ•ÈO•ç,]yàBöÃgÝâeXûÐe[ŒxpH”+	>ïuõ@kÁ)ÌA<隦L=´?ÿPJŠcDy@†×ç¹7dŽÏ˜½û2•J€Jö‡€eÐWÞÅÕXˆ¶
/ÙӯçCTl,OÝ ÿ”l$ƇžçÖj¢®°QM¥AA¤Zû}´[V!l…£ó‰W$›:ML4êB7Q©61œB””˦8]& Ìø^öâBùäJêðBò^Ô t–1… ’œäÈeâ=Áª‘ü;Ác-ÁÛQ…}ԞúÝÜÁÁ%Có
ªQWXÖ½²R0š'n£¡dCÏi5r8P÷b$­Ü”ÚC¤\‰IA
+äJTÄÚԔ±ò€	AtUS%&ÔJÇ9Hâ:E§+0ÇØ^¸`
iÜµZž_õÀHˆ=zy"L€1Ä_.÷ø•4<;è–ÓYÛóº×î–þç¬éŠÓuœ–¾³]¿ëÊi©O£FBDYôHËm
+cÞFöÒ4ÖœŒ²¬ƒb5½§¶FfÁÜ,ê!÷§?Á˜Xd_I…²{Õ¡˜ã1†Nc¶³(Èm§e%+¹<gz%*øò¦Ft5|ιŒ¹'öPðƼ©êõù—×bn Åk°ƒêk¤œ„¬Ã= 9ìŠö´æ!´³µ×ßOȯêßH¬¿áŸ¿”ùž)'Πg‡èùÉë/“µ0°ÿuÞ@nËãb·Šf.€h	´ì¸Ÿ¹®\ÈÏ,_-º8O^h¦2QÊød,þ—Ó„Qg–tmÀ-ÔwÅŒ	ñÛ5¥)0bÀƒ4Fš<M`e½€ÑY§">ŸñliLªCÜÆÓ1h-øš$ì~‚âÈW†‡Î'§0^Ý£;=ÀOüPʦçSà55ÃÄByxú*¯AI±Ã9gëØhUÑôÁ!­I¬÷a—NY¤GJ&(ÜA®0¨b<ct™Êb÷V«1?q sU2–µžíBj¤ÊE�ÁÚ»g×j÷ÁìÁY
Ëñ…¡‹TÝwXîC‡îðùACæËã³1!̊ÄÄc×Fdñ’l"‰í³»bØ«"1¼ W(QÐ(M)œu97”g—ƒpI×ì±Û0P?så,æ'Ԏ€1”÷Ðé½_d՘%&Þ²1YÞÝLd«X}qc�ËZ¬ä2èmë‚\¦J¸I
+ q‚c1òövÆz!iÙlT†Ï&_¤e‚~ÅÊwJ'фžÆ“1PÒeý³
+éԑÎ:MŒ€É²ß„råf8žóØNKÐÎ)Ãã”Ú[Rø,Ýu&«OvtÖI¿d¯è³ülX•póÓ\‚j{àkñö#ÝI4Z‹
̆	„Øv”ÓÐËøT_L
¡§LÁŠXLªù\•-H¿ÎôæJ³öcÅ®f¿KŒMCÓ{•·Ä3¤fåÁ5”+¢ê,ìc*.UŸK€×ªþ^'ª­î÷Uäâ~Ts)¬¼êzà×ÌA™³ù‘)ÏW™ª³Ð¥6Y‹¢ºŠx2€Çn$}’�ˆhì£l*e²¨t½-íŒ÷?§½è1C“ d53(Ś?‡Î€œíŠۚͶ†ô½.Ê©:«Â…´®ù;
+»(VFêX—Wµ'°ixeö2€†F£ó]:†¹�Œždm~o;t`»5Úì¢óÊ\eLHՀ¤™š3 ±fªrïÚØãLú=`S¢ŒíÌ
H-‚ðL嵇Cî‡R€KeÒ³XÜ@ 46@Ÿ„À×Õ¹* \T䳬+"Â3fXCyÅ
+F&iï2’æ7DˆÊñ:fQq'ÜòÞå“H҅³·g©<äÕ§ôK4ôV5ƒœX]çŒrk´ÞJXxLÙ4+Á�³Î6ª>W1Àò܃jNÇå‚Ó”®†¦äðlCù€!‹þÇrKò0ɂù'µãÜgcØo“cž+‰³%]!tÍe«ÀA‘BáV*â)|×sy²šHg½÷ÌdÑ4ž0g‚0a%¸¡gÖUR�¦06Á÷–P©eô†,uiä
F©þYær¢"Qy2JDŠ;Zinñ@Ï°¢è¦¡œ”q*’Ò×2¨C™E¹%”12Eã
*—aJ;ÕðÓ¥Ïs‰v�—,?l¾S³qîf~(
+†�ó“$	©Œ³U‘ˆY2Êë*Vi¥Ø(çJ
+^4‘
‘Û£n`Kg‰øÍÝÕ(Û©òT2›´!.ÃYN7ÎÊËö@#ê™`.ct½Q±,ÄÊ	”2ÂUM,ÉÁøFùê—,ˆ«qM•êÂI÷"ð4{å÷¼ƒ�®»SÝ@‘EÀA“Lç€øê{孉䨷,—ió³¢ò³Œï©øò¿‹ÏÚ¿)ÊÿÕaõ¯â??'M1äX{üuÅe¢³=˜Ë„§‹­UGæ`ïl­31Àðð,Êċ–ƒ™ƒ]¬Êp™=̖J”Dô5WŒÊÌ磌ކÙêÒá_{rŠÈ^<5¤Þí¼û̙j
–‰y™H
¯Â>™^Œe-ÞµY&{¥†˜•É*è£õC·’ï{pðìA«·xàH™ÒYÔ+À;y“‰…@ÍÁ؃gZ½Åƒ<é#ËA£Hߘ´b=œ7-š,ɱBô.éÞ¸ h1ùœ®‹rÀ ?mÞQ8{°>?9xš¦ˆ¨\×uLè-½æpÕ®ëw—ÈwS›£Ãš¾_µ³ô”ß×F*ڕ;®é‹Ô|R(Tª>ö;YÚ»¶Ç>=ÿ$fšŸO¾yò"¾ýëêâéfwsùÓl»]lVt|ûr½úiÓ®¶íêãG?]|hWý'/¯óÕЧ×ÿøáy»„™“ÇõÏÓ¿œ<þçç/×üùà}¿=}üzN|¼Z®ðíQþÏjvµøöôáÉ᯿͖»òY>~±Ú?n¿.ß?Ùlf¿/]¼ÙmÞ햋Õ|ñ®þ¾û>¿l—›Åª|Öηíz5یý#ŸôëÁöXÕGýÅ|ìBulÚw»íâ&Çj±Çfq³[n?'’iÄ þ£x7»Y<ß,~Ý!Ù¿ÒßM#˜‘ÛØV»«Wóíì·|úÓéiDÓwxÊͶÝÎ/ß´Ë㱬֯Ëái„4pü᧎>±×Ùúêz}Ón'I^íêØ3¼^ï6óÅ›Ùõe;ŸÆ[´«qYµ«Û*‚ÄUœú¿¾^lfÛõ±Ñzûs}å:´Âò8g3ì±ôÇ?‹çǞÿ«½ØÞF³Õ{ÕLÅvwÃå¢ýpyT½L'ñwÄcÇ"xòâí“åõå쭚FÙ㇖„ŸWíöèˆ_¿ûe1ß>]ïV8ôt}[}å˜|’à?[¼?ýþ~aúâÓûÍrùrÝÞܯLÓZ™&B<_hc²Óˆæ~cºß˜þ—Sú~cºß˜þèÜoL”ÿ÷Sޘ&2êï7¦	nL?®7חëåúÃ16´æ(u>ŠØW›ÙE»;Zàê»ÛtÉ×ޕØÝÿdã›È^÷>W9]´ËÙ­üTOwcÿ‰<‘þv ?;!M%ïÿÏ44‘í힆&ów¦¡Wïßß,ŽÚD)h*9ߧ Ïë^5
ÿ·ïg”üDüßß·.ŽÍԏ&²+fOïÔ¯ov›w»åb5¿1§Þ³S)š½¦¥;>íýûÍl¾-_®Û›‰L¬jñîô3t~ÞÍnÏ7‹_w(õ£ÝÜLE̍¼†´Ú]½Bõü¶8*NÝ4¢é;<åfÛnç—oÚåñXVë×åð4B8~ç7‘*»³È{ÖÞ\/góÅ¿Ù/·Ý´ ?A߁›Jܤ$¤•z@A•J"…¶W•¢e=ୖ]º^'Ч¯mÁޘaÝ	!öûÇsøgÊöÙô49b÷.ið—Ø=U–ÜôÒ?Eõ®]"ÑwÍê¼2¥@@ÏvÏíJnhq±ó²fž²hÈr±“3‰ÚD"¹¶dõ-µé³ä¦Ù‘Ž	"Á¯¶`L¶EþxV‹+
+JF>,ˆð»Ã"@=w£¶z՜ËfΕ*¯NÕcq	¦Ú2ƆË[´ªÍÙI¡bÅ|9Rbé12�Êè÷üè¼ùg»¾é.#Þ.&²AžK£!©€_È[£'˜$"‹Îµ0Ã4ߢŸ‚æÑ´MÔ[euÏðjž>±r¼Ÿ\c¤PÀʄîYÆs¡¾9'±Ä;h]iE¤Om2ԁ°â	Õb`*§"g
íø;Ëjð˜|fs"ŲFÎ+Â_D4,aÿó?¶%*N×ٖvÜ4ˆŒ›Ê›~wÓØÁWQ3,yd¯eâ~4Š�˶ƒúj˜Fô«–0'’=UK˜
+¿[ÂÁc?ûDƒ=%õª×o±ÆT©Ÿ"^³d’Æ)ÚÅÛéG†qËä?»þEÿösACÁëígÈ"¸5ð;NR­æƇ;QÀÎkRñä>IŸ'(3ß/¾¢ACÎ&qÑ%	ËÃoBâb”d7Ӑ”÷yDjf1ò<ÆFWDSÉ8L@Ù>›žfÇAß%
þçʒ›^ú§¨ÞµK$ú®]wB¦ÈHàVLÉ

!.v^ÖÌSÖ
Y.vaòq&Q£Hd½X²zŠŽ–ÚôYrÓìHÇ•B¯´bL¶Eþx–‹+
+JF>,ˆð»Ã"@=w£¶z-ߚe—4t®Tyuª‹£H0Ֆ16\¨¶**iVÕѶhðW.s"ün™G6è“`é÷1DÖ¢<²W%÷ÁŒ±Éø%üÊ©é¿GÚ<¨$o¥§}¼qžâ~¸³£	û¿ž±ã/l†oŽEïìªñžF�çÅY‡í™õ³ôYýY6Dçs“J藸y
!ˆqˆZ½&™üYñúš½›/m#"øúó¢y=Nþ|4eðàöo$¤ó]	‹®zzø¸mëXÉMm]VM{֔S°µ_žwaTûüî|ð£w›}©hÔ²÷ïµ™†Zê1ÖZ‰ŽËŽ
‡žaÓPp9ñʚÉ£)~I›— §`˜ÕX‚Ö!™%Òp^˜ßÂÉx·ánŠlO|$òhøÔ¤NMªr“º¦˜&õw�%ë
endstream
endobj
18 2 obj
12428 
endobj
19 2 obj
<< /Filter [ /FlateDecode ] /Length 20 2 R >> 
stream
+H‰ì—moÚH†Aÿ_)+%
Ц]•OIhP¥¦©J·ÚoÑ`ñlÇ3~æ%	ýõ;6<s0ɚCƒV»›ß×̹ϹOHÍ$¥´Ž_ž+E&­¯z­£‡„ғ f<TTä¿ï³À0)ˆ*=DŒQld
ÕÙcî2¥Š©fßV=w¼Ù›Nÿ¾þüÅ=â¾<bá­Ó¡û1^üiöA’âèüÓmŸqbHö·ï*¿#ÜæÏw[§Ÿ„ñùü’É^{§}µz¯N‡?WŒªJÜQþC€@íl‚ê½”^K•Æ’Ëñ¤W×/ÃPZЁ"iÌ$¥0}¾€¡HȬ†PÞàÿ(ÖGX~=Uî; ;îQ•ÔYƒBr­‡uhPOlPHFí¡A=oƒBr­ûÚ Äj͈¸à¶‰—×®mÂ>½cyZ†ªâ-ŽRð%ïÄW\ÚéÍRq‹äXÙ½CÞã(lAr,‡bKµåBU_BÓIw¦÷¸¦;ñL
ù’âˆoì›(Òª8¤–FTE[:Y槟5UEÃsžÆ϶¾–ëªiçÎ'{âçLhIúþH¨Ù€\J“P]í¤ÿlæà@r‰¤	mkZD«¦ñ„Sˆ Êjè$çø0â$øÙkM$S03ùÐ~Ä3œZ¹”I*53Ð1 Ò˜ÊëeŒiÑÝW \ºO#Sªˆ©¬ 9Re!6Œ°Ð[·똄òþ‘]šªÏ¢Èjú™cãÄ7ЯÊï׆“¿e³k€gÒ«ì»óaL¹Ó0]2×c¼kã@(öIÈ/–XC7g8@æz?þó{䦎CØv|‡Ó¶„b۔Ž
+bEN·*"ŽëH<åKöqf§})E>QÀ>ƒhIõ*·ltEH€<Å>Ÿ…Œ“uûŜç>®ÞŸf*¯•°†)
,'걞±p”Â!aÖo‘°ô¬-ÝX$ÎZ²~³òxêR)è)IÏXÖ½škÏÒײìCb‰\MR©«Yv›Àތ®³ýæ-š‰.D2”Vôœ§1ÁA’kö1dJ1°Ë+°a„…Þ—dîi%
Icจmí͙ùJXå¬Üo‡,Š¬F2÷žàk¢˜‰j°”UÑßEžŸo!$™1Z’^û°åÂLhIú›}9õ7KÒAc‘Þ}Y³×�xác]Ø>Œ2Di‹Q†Eú£ËÞb”a‘^w”]S5nbŒ­xköí~PEššn•¢á9Oc‚ãö§£´îíïï=àŠ�œþSßQ¾¿ïV,§"ØÓJ«ŠÎAEˆé;ÖcDŠ†ð/’éªgæ˜bíX
–Š`="š^)úë„N ¤×í3,%Õ>’°É«¢»ìi k ‰xEÅ>‹6ÌñwÆa!‡ùÃ8<áµFé¥äR]÷ÐÃ~öblÆß®'ën`ošðÀ)ÐáH®buÎEÀͪ՞ý³ê«ùOp€>"Õrþ€X­Ù>°ŸÖ߃¶™oð­d«­£MاwŒdŸ1½ÅâK®e›(Òº;¤ÖÀWQÛzczøxV;$Sý	’P.%ùJ€G'HL)­™r“Tjf †ÔÍÈrÕ¶VÎn!3rÙq¬61Ý}íJ¹tŸF¦T#¡ŒW]†
#,ô¾°8‹ÏÏaô*+¡pz@Ûydr?!ÒæsPPa¾+"tD›pŠ¯àʊàFN?a}	2Â2ƒçŸXDÈäýÈthˆ¤Ûj#á(j®UËY%
•´ëJzý¾Õn!!yR-]jiçµÔÙǶtXøÖåÀ¿]ʸb
+	É"ÖMMšȉˆ÷
+\·ð”zJ«Š‡eõbÁDÕÞ3‡™‚8§§1p°äª}™REŒ„…ê2la¡·–ů©7aïo;ÝßƂ͎ÓÖò¼óz³æ”_æ9ç8ÎaÃAWû,&Ð1œtÚÿÃq“r/{Øíeí÷,41¤¿s†EÿL®ÏS6ŽAáxÔ[í!DpþéöSÂÉÞr!YÕÚÓtgË$ㆪ¿3àf&GÿÐÀ\H+B÷Ѕ¬²RÃLÁÚVwÚ§Q«÷êtøcp•ÿQyç?l8Á‚s­pçQ5ÉæE¡h"ïÌý©^¿¾s	`iwZ^·Ýꜹÿ¶[îߞûÚý¿ç~ÑÂ÷âãÍû’£¬§œÖ÷·Êãh˜¨¤Ý-¸ntÚH@r­¾ü€ðàZ‚¡þH§œ	$öYh.ÕXØÄr¸I	‰…¥¨¹D†Ì°Ê–Uhl)'œ¹èãòVbˆãá÷d‚Ä,sÉ>ɈŽáe‹ágbËw‘Rbúpßb"¤syIq„›¢è€X­dÞI|ëi(­
+è9Oc‚ã*VU•¶4ø¨ú
+š·w®·î¾„‡`yGÒ&ìÓ;–ïrÇ{¾äZ¶¾”I*uuwBîiD…´¥™ƒÇ¸±UÏâ0µènÖ`Š¤1p°äª}™REŒÜ`pã@Xè}IÆÆg‹ç0xÊŽ*Bmío¢˜‰j°´ª¢Ï‹<?߂‹€LhIzU½£“ÞY’þ’ŽÄ˙ВtÐÆX¤wkδkªÆM̳o;ÝÿIŠäâ¼¥<õ~B½µõüÓíWö@ù-–s\Z^#Æ
U	f4#GÿÐÀ\H+B÷Ѕ|ÀÁ䬂ûFA´³vëÉd)h^[ñ§}µz¯N‡?WùŸ”ÛPþÆ{,!87w*EyW¥¾ù:àåzÎ%lV̽n»Õm÷ö£xiþؗ\þz2ÈÏ
•´û`¡ŠN	H®Õ—\Ãæˆ3AIiÃÍ¥›X7¦#!û5—hVÙ¦
+Í,å$À‚3íÃ(ª
Qb!üžL˜e.Ù'Ñ1­±~&¶|)%¦÷-&B1¸WAx­íp@¬ÖŒˆ2#]ՆҪ€žó4&8®bUUiËAƒª¯ y{çzk®zx–—<mÂ>½c$û{ˆã=_r-[÷YYM?³qlÆaš͋Y&”syß+JEÏ9“öÜÌbcÙ»c’SÓS4ìIEÄ	é3ìF|Vî'äI'zò‚t†$/¤Ã‚tXÒ[úÌݤ0y’Âh(woØ$Ô¾k㸈‚àRÏúÅkbp þ‰d®¨§ÿ`çE´hm¹ì†ÓĶû.*ˆ+¯U‘îCyÀ p†—\
+ËÓÓ¾”"ïÈ`ŸÀA´¤z•[6º"$@žbf£ý«´ â€*+¯†)
\
+WŸgÒ@Lðæ¦`	¼¶ì$œDŒsxIdå¢ÒpLõú÷›K¨ŠäŸËƲ7V”ŠÞ´²{nJÓÞ“œšž¢aO*"ÆHH©Jìñ±/9×zäÜÞt&óJÞZ:gH–¯pº¨廎\»¯á{” ¹…æR¡M\ÏÛ֑‰eŠšK4aÈ«lb…V—r—nàÌE/%C¯¿'$f™KöIFt¯Rm$3±å»H)1}¸o¹ñC#&X¥Ÿ¿‘¹ðZQªÏò”œ')ŒÞ	ùé;ß)w²?†(Þµq —Zî/–XƒóüO$ s½€êW$x—.†"I«\¶LBz¶`ÝX$Îz”íÃh«"7އ.ô€Q s†ƒÄ×\â™ûLJԅ0^¦%Ý«¹.¥È§
ȅ¤‡,ëö¹6ZÈ
+a´j–5ŒU–]+0\Ê$•º:÷ì6-€½]gûÍ[4]ˆd(­
+è9Oc‚ƒ$×ìcȔ*b`W`ý/ÉÜÓJ(’Æ,ÀqÛڛ3ó•°Ù/»¥¶a 
+?ïÀeoҐ@¦3å*!…a¦üL
Ü2Š,QY2úÀÓ×qhˆ”Mu7¥ÜÁû;Òî9»Ñ¨Ü”ÞNy–9+§Íék¢¹æÌb)«ÙþžÕósR‚d´ƒè-p,D‚ÞšCßݔSߝC[zûce®�xkŒ!iݵsÝ´ý?ËYÓY†},CÒËëdôU³ì„é›:r앯ŽÝìEré“]xéoýƒoðŽ1…Ž±{|}ÎGL\Ǻ«îsLþϸ°L_Jn
$F
nµ=ådZ>ÔS#š<¯‰ûÁ@ií’T™a^XñÍ>˶÷·šÉÕÑaõ/¡U¬Ý÷.œ8Á$­Ûr‰ä9Á¹°”W! 
+Ô,W÷1úúKP„­4}è´"^,f@;ÔìΕuðˆCSÀø„V98t~îàP2õXãÁ?FõáS®]˜ƒ×_¡úô”zÏyåD%‰	­YÆsÐ䔺Ü	ØF?I%‘˜Õ,s &M¹åQS±ÞBh^Õ-g
+í‹ÑÌX¢-¤…ˆòˆ¤Y¦È¡’‚ۇ›žË”e¼œë\Íø{ì"«-dÕ&æeOõÅô™&Ôqª¸Ar™Ó7ú=æØbÉ.÷›Ö×°Ìè…o¦	¨}IÒågeõÜÃk\É7Kìk1–[:¼à#UR=ŒC’îkâ馴̘°n›=Py¡L<þêZ¹Dh`9÷¹Ðà2†6…O”Ó”uE1$XT´Cª`šXµÄ(ƒCÂï»O0 	t¯K,¿sHF€‰x
υeú²9AwVƒ[FmO9™–õÔ‡&OÁÂ;nöY¶½¿ÕL®Ž«
+.tò¦|ÏwÜ#âŒáDö¸  5]„¾µÞ ;ˆ_ŠQ×Ø´Ïî9¿Ò²‡Cˆ¼Ò(r–e†Aw†´%ðTÒº½ ªÓ_`J(:"7>$}Î-yi,@Ñ¡Vlܤ`Ô	¢¿ó›¡-ékÔsÅ¥­¾ŽÑ=À’m´vÊ—?W¶`Õ6:hàG!üßÆsôO`gù�ÁeJ÷9s±ÇP¤–±"¶Nuˆg÷lP%”þú0äÉùŒhr:#”%”ÀÒ:Htxȁœçû6*”d¬ºӘç~]ׁ’Æ’%tá’õ‚½ÒDr òB™x!ß&PYÚ?ìË\¶!‰rš²®(†‡’ŠÙ—¡
+¦‰U±Ÿj‰^DÂ/�‚ꨣ
endstream
endobj
20 2 obj
3859 
endobj
21 2 obj
<< /Filter [ /FlateDecode ] /Length 22 2 R >> 
stream
+H‰ì—oPùÇMr
+z,X¡Rk[œ	f̲»ù³ÿ@„ôŒÃ,ɒ,„Ýt³xkíLŖkœAùSTN^ъí\;×Öv¦ï|q×{Û¾¼¾qú¢}q©í]»`HvBüÑÉfd̳Ožßçû{žßŸ‡µñ‚Ÿ•FÂl
z©­Ef=ŠC«‡Cò+›/ȅü"Ë+ï=œOâžœI¹Þ¨ÄFd7ðB³"#	bìk2?Ò{îl+xâU÷±
Â`Xˆp ©í�®|`í·òžT@7~{	E•×ZÛÌKñ/3Ó¨Åãxªê!*úØ&‘	9_çUH2k©Á©þ"‰†$=)!N:Ïp|2¿«Xa>’ROF$ÌúÚ¢¨Pxã%¬­“Ô:‘“‚ƒ¬KYi×·VπCO	‡�4Ø.èÄ:t»z2m¹F·¯C×]° “ižeçX1‹slƒQå¯Ûóúú"¬TŠ&ÛßÈñ™nÖ·ïüÃuì˜ý͎a0‚vGô&ÑFâV8&p$q»Þ>ìÉìCœ_
+êžXøc¸ñ‚,ê^¾á±Â›pñöë)¨kî¹(ðïë"	—'ZÏEX&*1¶’ó\֐ro©õ°}è1¤¶ãý¦F.$±bâY«s~À71ÑH„cøg$ägL‡}l](d )>±ÀWúÍÔBz¡¹¦¬ðÆ«ˆH~{cäzZ’]Ãs,$9­›W›ruܞKžJÊt-¬]ÜEÖÑÚÞxeøuïp8ðýënp~Ý+,èÙ´N9?O·yÃëº3кý_åA½Ô4‰L8Èù¶M
+6;†Á›éàêÖ7�—xNŠè®ÒÞ~Ö'ÕQÞœê…d{xŽ5Å)È7Cùf(ß)Z\pÉ7CÛt-Àz)Ë´¢áÀϤ‚=ß囡|3u
+Þ@3¤»óÚ§Ž	\·÷ên½ð°'²q~)¨ÇO8pHøc¸ñ‚,ê^E;,"VxãUp~=uÍ=¾Qà}]$áê!áP#s'ìÚ\HbÅK<'EtÏ©Þ~Ö'ÕQÞœê…dK)ǚâ¤Ü,k=lz©íx¿©QùQâMB1æüúr1*öFC,ïƒòÜT#¤®IOAŽKb5bÚ=¬
w=½L„mÙïFÁdëÃ8†;á“€¯‰¶ù$æ«»AÒiã¥D$Nò/r!}-¼Ð¡8Ã!)<­Kƒ0"œåæ¥é‡gÁ«wýxúd׆„žª¦‘L”!„Y‘‘½ƒ5y²r,a7­WZ,·ÞôÛ&XÈ3lšpXø7Ó4A#b3MÓêU²Ç‡˜|ϔ gêp‡µ
+\$ß5ÁÕ59àВ¥¦	5ù¦)ß4囦d*òMS¾iÊ7Mù¦iÓM“1ù¦	4MÖºfï9ÍûW›'Ùä”-=­(’€(›M5׳Ž×¾@ZñÊ«Ž‘Á^!îóu‘AÃàCû0n”EPQˆ†À!8Zþy‡¨ò!к0øÞ†à˜›$\(¸áºH
+ÅÕf§qJ ^ø1«w|iÿé¦!ԁžC;»qÔ/‡mGl4át`v¥	ʉQ´“DÌvŒrÛQÙæÂp7a—m$FP¥iŒ ][ø9‰Û1š óYÅìÄÜ8MÆE q
+sá”C;”Ö£Rî˜I҅‘MÇ®™i`Æݨv,’tc4é"Q-ת±шXµžE´z5Ö&F3–ÖãjØxnÏ"} ¸šÇ�H(ŽQN%Q„œ*¥|@…±G5•ÔÎD䊫®‘}šÎXn	E2&…á8‰v£ê´ËI¦ò’ͪ§ú—FíÀ ”_8ÀG¬Ved#1GQ—ÛíF¼Í{¾6ðœÒ<Fü³ûœJò¼q€œa¤È†€­Æ0ΰuy†<ÃöeØ"�ã[
+`#�©rg0K<02cÈ.Fž!ãѳŐÈñp›Ø
+Ô-0Ž±¥�1rÀC÷‡o–!볔Ù$d#³IÈFºÌ$B†õÁ³Æ)5¿Õ�«£äNe/l#º?7Ü8mºòS{f<™é:'Œ²u95`ðyã�YÄØ@V06°IŒldŒ‘]€t1¶btƒ0ي¿Có˜À³ÃÐc² HÅˆ·¹ ÔJÓÖÒ³¾ëÛ
Á›7ƒ
‡‹,z�—~üëÏ?ÿÍO®VéD6¿õò՗_¾úó̕Š‚ÔÌæÒ3ó_üû«¯þóOx¼XÇ·ìüÒ«ÿ‚9|ýÅ£3ûRC¤åþöúkC@ۏ>ûçëÑæ¬sî/ÿë'æl‡¹?ùtAðèçbǎ·\~ô‹ˆ½Ì@ŽÁL´ÍÌu¿³ËP픶Ü]¨*4âk*>1úlô„Î|Å|«úß;Sö–Y}R–½åÀ¥û:+÷—)Ͼâ])Dq÷Ÿßèjk•Ÿsï9¿•B&Hóý—¿_˜™šϽˆ¢¾%'?xùÙ/èû‚•¹÷ÿüãïu¶é1˜ö½Seë|ð°»j¿Ž6KQEÝÕΆΙÙËw¦ž3KQµ÷“7Ú¯N>î×ɜ¥¨¦küéƒ!OË­g£'÷ZÌkObtsQu×øÒ÷n…màg?õZcِŸÒâø²3öŽ/Ý鶕îùö¥¹åëêD¨i>†¾­u¶”֏>è®A,–Ò–©ËêONNMMMßûþEíŠ2Vælˆ”549;­úNMߟ{ôäÙÍúR‹&¬gìù˜§XL»PÍ+ãŸ÷EáÆÏç•«c*°>ZŠÕ¸yWñ¾˜ªo´wñ—»n/yVƒ{1×^®~7™V&ËRBÜæÎðšÀ ºf_Œ,IL¨	¡¯t«­ýM`sYëìRh}²ÔeÒîææ•À¦˜ïô\÷¡ë’¹óP÷éóUcËc§÷ï.ÜiJ¾|A܁ŻgVR•Ö2P¡±å»Ž×\¢Ø¿QæûøÁpßÕZĤp-Î\(Oܘ,å¦û+wW–þô«‡×ßÝkV–ïÜzqJˆiTÀÍ奻¢1Å&íöé²øÀ0¶‚f*@[ýmÔyEwô·O”zи"¶…ù>+¨óžïÔ.WWØy¯L<¿+×ÙjÞ-HM÷ÄÓQµlÌ»vﲘÕwr©ß‘ë·¬P6™Ì–Â2[÷¥qïáX9j¤(KhéîÀéªò’…%åUž‰¥ñ®
7xÙùÎó'·Cí'«U¸Ð?¶ðt¼«fã
^vžøÝ—?uŒÎ,>›õV';À¢¿2úáò^,Í->[œí«¯H~l€Íäx{hlvvúÞhÿ…©¯æ éDKkkËñÊò+‡<WÅ¥ò–P¸2›)ÝM©7«õ4ï÷0ƒxßC¬uÍÎ𽝉H¬ˆ4"QðÁÑvðOýÊÇ[‡ÈÿUMÞ„Äp‚v Cˆ&Ü8†S
+¥I‚ÆÜN¡ƒ²™vb.—Ã…
+sÛ)'’ÍŽQvšVÍN·Û¥š]NÌNàN`¦)ÌAÄH§âMÓE¹íÀ܁h]ð´%B2Ž‘ÿã½Úvã8rèÌ?ô‹�Úu¯bòdË/ÎNE#‚À%m¬À’­ÿ‡EVuuk´‹Å,ðXÒé6‹ä9$KñâWñs*Ʊ_4Ã78Ï9à7q6Gƙl©Gv©aõë°E%®N’‹semr�õõõûìp7Ÿü´2êÂlbIë÷7ðb·ru<Û/5Z}€‹ÝÄÁ³H‚±=.göÈ8x_$L8}–Q3
+±Þ‰¯ç'/Í1º¼í¿ÉE;\B5ËœË>�˄LYßbï¨`ý~FÂK²ë³Ù£L­Œ.Øêýìp"=JªÕççb$x�3ÉÉ0—«g(²“÷Ï_Ü?¼º¾x¸¾»=¿ÿ6}ÈLÏ_ß>L§/^[3]ÜÝ|¾ûr{9ýóãùç«éæîòêÙôNý€ÏŠ"H¥O¶†Õíc”gф0À\Ýow4>›Þývð·“÷_ðy‚võÁ!âÕ‡¨W"Ÿ<8@¿“÷›JAŽÇÏõÿ

5"ŠK¨¸}ð_“QCG‰ãQ„l?‚’'ï?Ôրvb¶o©)øQäÇÐSÊé‚Š…£(*…xIOÞwšJ&U\=@Uqà-ÚÑéÛÛÛó›«Ë)“Ò•SX{åå.`ó	ûÆ}÷Í·›wŸôï—W^ß*rú‚ýþtõŒŸw_kkþ2ô½ÞÏ×ÍÙL?◿�}ÂôÓôûfºd¿¨.¦’¢¦Í·¶¸ÀÂâÉÖ°‡ÙG¯`*Të,ǧË�ŠÞ<»Xµ³÷T6 ›mp©öS@®­zh–|ð@Á³ª²	LŽy€÷*¾Ã	虷~ó²¸86ÀË%«ËuÆÐ>»X]¾€-9@ºÀ’¾²šÁå’íڃn<Ï.Vól}Ê0Ბy�=ðÞm<`Vº²ñ@Ášœ%g
Þ¯«f01”èò²àåƒÕ広chŸ]¬.̜‹Ý?Ú0ºé€¢]I×v{ó¶>}‘ %i´Oa�Ït�t!§Þ·y›rY›@2L
+´~Ù
+¬Ž5úlàý†çÚV†—!>V”{pLÁ³Ýú
+ïwë+/&†à,/{ȳÃñÝ#’è\‚f•\H?ÂsÍ$ºn£
ÊBmÝ�“‰q�[à=÷ÚnGC²kˆ|ó뗭ÀêXüÞo`–c§õË,§ µè昂g»õ5ÞïÖW^LÁY^ö8g‡ãˁ¯Œ7øq¿«‚æ&þàPÁø~ÌÕ\ñR*\Aÿ÷ÅÔ	
+wáe‰R2BIEcn1T;4Æ^Ýó3ÅhÅO†3κ9ä ù"(çÆx•¬ÌIJŽµñ„'È» 5€Î F¯Ԑ/‚®;1Ô,ˆžÖ äÌhuÔ	žÜ÷
+GkkóÀ{½km¢hež
+Ñw‘×y]Á.±dh€›ÄZ4µ‰:ee¿~@›Œ»è±.íû5<\9¥™LÜ`	\0«8bë(ÎçuÈ‹tÎë䤀‡'͞H1�ØÈYMû~—ѯXŒ]•R¢/ÈKÑI?°˜we˜Ï}nGdJ+l
+èy®ÉDˆ©îbŠغó–áÒ¨D8ëøýuŠ$×´-£Mà‰üæ,ñèÄ/¤}ÄîGE)¸Uµ[»öš°U‘L­d´”,äښ\ăb²+;(F™¯P	VM·6Zw8;èˉ칪'¼OÍÂP•Ä¢r¤ßÙ8%F¨ÿš%Dq¡ïKԊ‰@ݤ›“ÖLÝÉ·ÌRÉuϐuϪ%H­ö ;[«ÍöŽEL$~Á $"¼\Ý,bN®[f¼®„¼Y°ÓB{êÒEàF¦¼‘ø»	փÌÅÅcÈöýÞÊrš{ï7Q%‰lÒöa}(¦fYO’K®V‘&·¶Àë™	vxëK%Awé¬ï|:$´Kì=X®œŠtÔUp¬w؆2aÆq…Öqgæç¸IÀ`¼ÒÙL DAÔ¡�ö \¬©å‚ÖIk¬«lt®éEضݺj&ak²ÒºKEcÛ’ñÊM	
+©ê‚˜À}¼/s)mLtµû9žˆt$0÷j(¨&°Ÿisl5õrŽu’šâlØÄ&˜™Ï_Ü?¼º¾x¸¾»=¿ÿ6}èôå³éù›‡ûëÛ?§Ó7Ï?_½ütu{ù÷󇏯_=›¾ã#{òȯß>_É¡ðÁ¿:TŸ¼/#ýe °¸)îFÉ6úÏ¥@æsN“d²óM�†)‹A3Dý&ÝX6Ü^ôú$|ss:*%Ù®
&)X¤¶ð.²‡y„âl"©NZ[‡	Ë%)Mp�‘ðˆYiÉ{€ÖmoCµ•s¢eD­+™:¸\ÃÔV<FebPaÐàjQÌây Á«íEe iÆÔ;ôß"´9˜W@/þ§ôšNŸMï~“ÉÿáóîëîKR§Ÿwÿ©­ôþø¿üè릟¦ßÿ0Ó%ýe÷Dó9¶õ<ÑxŽl;G7'ZÎ1
çp»9¢Ù<ÑjŽn4G·™'šÌ±-æèst{9º¹ü?ZKYÔï9Í­ŸÔV£3fcrA*7VR£€£«EÍpt¾Uz)z6[G
+úXw=²s1%uúøäŠÂÖ6ªDx‘C´®ƒÙ60Øn r+±„áÛÉ÷a*b“r%„¸.‘lY&"‘M�À/5œ’Ô@r¤5쩋•®»è{ÈVêºdÈv¸Ÿ­Aª…<�ƒ݀
>iµiÉð6§Öž¼uQkÅ)ˆú²!j±%œÍIêÊ[1€
+¬¯¨%œH·7.6£+]6¶mzXå\Š
v}qIA9€E0*_lô
+¢3’�·ŒZÙº¨	­.e%e,–Æ"W�Õ@âUѵ.]JWO-0ÉöýÕµA# ë]I¢#ßàÔW]¯ƒ
+ߍ×Aãú÷shmÄ砊ãRk#ÉǦ¤¨e䊮nK`Pr%ø¢rl­ó"°äcÓh[—Läݗ”»D£b}ƒå]�½ö”Ch6±ê†k_5֌:£«'·Æ””‡¤s§*(c#¦eJ®mÌÛ$3…º¦4Dm¨3‰´ÇXc†¦…”7ØKÁÂ@ÌYA„¶k)9ƒâm…½~lM†]ˆœ¸o9ÔuȄØᒵ»Æ#'áVBÊÒ
+)
?ÃÑŧÔt¬¶K•(EÉ óAAP»ËÉ^u¨$_éVÃ^‹µâcˆ
+S‡_€P¤¦%–k1%:däd»:Ò¹<0ê)¼ò“¬ï m`jʰי®5
Ŋ‘•‘’MÈš˜p·NM~ª~‚ú<ˆöè2àTDD{R—îßMz‚7¹¡¹í¶€Z­ÒcxþÝ¿ÏÃb°‚:žšòdUžJKUžT¼zošxòh“bS#…ÏjàëÌϱ}†É6ªÄÔý¥+‡•Ð6ÚY¤S“»ôäd’ïêè[“œH¢í	F^†rà*Q‘¡š�”N(&víÁð•îáúÛe“¬ÇŽÑ­¼
ô„~ã^J½ÿi'¨n؞8y«ô©$8dF׸ÄÁûX͞)^Å»Äõƒû<dÓͨ>GÜҖs¢)"þ¼–
v՜͹cE4´΀¢¯ÃqÛ8}´Þÿ.&)´×é–g›H˜Æ§Å¥>bƒ¿ÍQ ·á9µLàôø+z‚6žAˆè™ìÜøÊ3PV¿H¤Þ(d¶
+67S8Ï.q69ÆÔûÐS=™òzÁ`KÚ}‡ƒe*6ꐠý|?)‡Y†Ù]—¸6gE˜?­žƒQê±0²‘h[>5Î&fN­í|î¬âE°‡­|­d[m^€ËS-ñ-ºçaª»·Wº²tè´1Ü1‚ö½Õ“ã–¥‚{v›£úwaœ‘>›Ó$zÝɍ‹Ø›¬‘ÉÚñn©±Â#V¯‡‹II…˜€
ç	ªÌ÷i—c˜Ab|Vä‡ùÉÏÕUÖ¦Ô±b¦IiáN6¿–i% @€ªÑ‘¤È;æ~�¹õ(Ty°ò²ƒ)±Eá”ÈSëǏûû@˜n]4TØ©G÷GYaòœÇŸ‰tljvÊ<Yð!G
êr-ëöï>ÝÅýÆXÔ²Z›Ÿr_ÑB¾µ-zKãÃW§^üïð¬gôÍþçóí%â.­ñ…onüŒ½‰ºÝÏ…·P…ˆpN‹0§³E»´°ìnNA'V«j¦?òW¦ðîG Þ"?*÷ßÊ6-«uY£É•¹Ê¼AŒË¯“V_í^ ϲ? ‘œ~Ö³µ±'Œ¸–üRQý̓x}A7¯â²Jå½à*—ôÎWج¦ÐëUk.5«Âžî®Ê5«!ž›C­ËÔc§y“Mó5k.Çþä>Qv‰Cö~ï§]@¯á—[ÝÒ¾ ó,ŠVЊá8>
Òå댫ðc5ìA…—©Oš%‹‰×’
+:){G-§3
+ÚÔ¥ZøÔ<©°;M×Êk/Îû¹ }
+AÏàTiÍf]K3h¦ÿ¯ÍTSÙBÉæ“qŒÄ©âÚ?„伋@P¿½O—֢о"ÿí·€¢óë¶á œÏžáQ—e[õQCó
’Frq乒Ø-¸«2;mFYõo¦ãƒÐ’MyÝ6AØ'çð3üÖhQ?ŠM»4WÛGgÛ´•>®K­)Š4†Þ£ÚØ0ËCéC<[E»vZT:ÉpGWȼ…ó_%0`i×?¥È_4ð‡Ç Œ°fŒåðůsñ‹h:r¨:
ϊ$CDzہFR\Šã·G t3ђ^²Ä¶•C°—Ë‚6©û-pŠ!¢_Db™e˜a‚O݈évCôwÿÁ&TCÙpœÄ&ÚÇ£”¬l8D0ˆwÊÃ`ȓù`*)ŒŸÐJpAV;OL†¨$b¿LêÊÍÚVb¨³ûBù·‹Ž#eD�÷Që ¡ÝÉ4©¸9BôÝa
+Z™òæ6 éÂIrȎ8~a4‡Fš† aŒÇß9´NSȍÌvRÑÃ^¦	s`±�Ê!I¡cÔÔãÚ6"Ô³á~£ñº,­[QyRw^øýA(CQÞöÙÖÀC¥ÌªTç$„è†QCˆ1þ ”ƒ¾†žóëމ ß­‡§JÖ¨Sä[‰Ë"«6@à#Ù.9<H ˆª×ü49Ü
‹4€´“ÄôãŒm‰»ð?J(ùâ¡’§P¼³‰tÂ#QëoøÌú(È»ž,ª|sÑy[ü ¿ñ'Àƒ¢Ãg5à5öǟeFNOÌðǟ¡§åÙ Û&íWl·hÞü8ûý³t©Î*³;iø‡_ô¶Þá}JL³ÒüšP‚¸ò2ËhcƒayZÔ✱žÎq¨[ƒqÀð¨ðIÀ˜–¹~qBî¢	B•Î‡pµe_Æg¹-ôÄÖÕ�£¡”†í[ÀVuîµi)"åÈ©§¸FÛ{¤vygñüGT÷`2šÞì9YÐ)¢’{Î2†«\ªØsVn¿ò{Îi¶o?ödüKyxá3ٓüƶ´ÜâÔYŸ�ñy C†é·Wãc×é
«'ƒ;‰†óCò™>Vá­Ær	ñ.f¶õ™ L	%†·í¶òÇ# ú®gá®/QËb:ÓÛEŸ€óã¼Û£“FÄ®Éhc5”¯wi/d©AÓZ¾Þ´){½¡Û—Òʖ¸ý!Hï!®cšA=Çae»p_C¼ös²FMBº[[FÍP‹w>(*ûQèÞK2–Y
+'ncR„
+Ð|Z€ìcЃpë4&À¯“A˜«5nR:ñÁ¹òô2Pѕ]µ:gð4„ÒOpd4pÖªƒ‚oàXqû¦è¢o“#�“h­ópðÛ·Š`VŠ¨‡Ó™ëA$<ÕYU‚ï°0x¯hQx)êtAwcj=Zï‘ÉUwj‹Ê!nÇΏ)´8‡b·Ë؛ÕüŸÌ]9ЪÃ[ýg€+ÙÌ=ÏaÐVY ÂNÈkÞ ÊPPrûø!7¾ˆBS»èvÒr>ižV P­“HƒîÞ²²[a7\‡,k#¾5Ï¥(ƒº0tžµ9KÈö#òQ„5tžP<p-öÙ ¸^!ÜÚç£lMu2§=ÆQt;whQÞkcÈÆᄃO逓˜5 —I‹é ²Œ÷8Ÿ*‡r¤Ì:Wٛ́„¸C£F|ˆ¶>-Q6wRa'¢6ÅPeº„ÏÉ^c‡Ã+^2hæ	«� ’ÝtŒ“} Zh¬ìK•á•v“tü&CÑÁšD3~$ÂLðþþ(M"f;9ͼª×8UÑvh<èÛÿåëVF4ˆÃÂhÐM#+{õÞa/Řڍ¡Q	0f‡Õr^høf.³Ç ÙY)`æl»¦™`¢¼ãù«u;Œñb8Û
1«JJ‘F<µíԐ޾÷Ïfä€{îе|µ=°Î²¶6ÍPš‡&Ô² À®òYÜáÝäÊä‹D³ˆ•5Î#æhMu²S0¦¶6lx£¶Ç)
+¬æ+ÞcºHÀ}X!-5V€ tùٔ Üõ­oE‡7‚\&O¥óm¦£M+inþ‚¼Ùþx'Ä(æŸ*¤¨ë¾¼©ë>ZvÛÒ¹¼
+c’-ê¾
++òY—0䬒¬·Y×eÝQ—ðI‡"^Ï–2'Asµ:Ú¡kH«…ìÐâÙ-þðAƒ!	f[V³fZ¥©[_]âö‚Ê­Ëz�ÊؙN,|vAE¸*® Yâã´Ø‡Œ‰ç\`4¦.f—½Ì"ä¯üÙ÷€õ@( ”úE9­yÉk6èŽP[
KI¬àÂö#ÞœA!ÏÑZUæd<'‡ýP<×ߘmQlcœýÿÍC­,ø£Ïàd»ÑcµÀÁrä‡?ÞÀÚ~XÂcïI1‡'}ÿsB!/§7{jøBƒµòâñ W­ã7åÇë;ÝA@(¬.÷º½ÁÚÊlÉ&lâ8˜sgQ`:1øXbDÝMÄT£vý>ñº"PÉYĐʡ¹JßYšÇ˜²Ì±èÐ.>;¯w»ÁC{Úhí½ê4ìpaÈ+ æ×v¢M#’_*;ý¶Ë%Ëv\¢SÒ¡v§æß}DÈù*³w×ÇiË°ÙµÞùî]_jò£ËqÚX$ӐÅïMãôûýžyÒ¶*NYýÕlŒ¥äÈϪ†Ýïç7Z¿ìh–ÉÆûÏ|Ô؍2hd¢Û·½03d‚QÞ]ÉíîvH&›"td«øn0çÀè‹Bdk»#èŠB”[ày.&V9=‰Bö£ÙU¯%“;ZÅA¡ÝèÖØ°è]ìý*êƒDš…!¼>0„¼öaȑðˆ!œpË튣'aˆíåSÀÛÆÓ¶!2ž%ŠŒ/Œ |‚øY¾Eì°¸»Jd˜ÝM·ÌâvJ$¡ä ðaʦw'$‘ÅVF€¿ßá·:púÔ¥BHIÈÛßv_ïÇ~*â¡ì÷]zó‰�›y‡½â$–ð@ç»A:lŒÎÄIüžCɗ0º¨A³Mg236m+´×*ú ™NAÊ 7ƒÔqî`X3üÉL”Åu?ÚG—v*Dâ§ó™àÑGøÉUÏßîð‡|Kü´£Q—´ÆT
m9IõÛ?ée|Q沈ßW£ÆV؏?ýî©Uáï÷ƒ9ºb]øÛD]·mS©³{ڕHGù湢ѻïD÷ÖH`™Ì+*A§Øþá ?³ö¨™¦]2ɞB!cuÕFÿèÓËӞC
K|çbŸŠv©89û×Á©·@žDxEaÔ,ž=.郯ÜU4ÿèC*Ä'&{°tô§¬©øzü޸{V€è±'¿NÓèÉÜ4³N¯—Áyd§´ð‚y”1;‰²Æ=>ÃʁæÓÍP¸SD	âNÑ6Ã¥’¹R7€¼çC¢™.[˜Tóñ!Å´Í(:̏7z—[ϲ{’ª«-5ÖQ<ÊwhƒFÙ^è²ùnp'Ç_`©èF.Ùnø.1oúÚx¬Q;8ãÌǃ;!Ôá#B3aºqÚ$ƒvÊg^�„Ž‰„¬eòb˗ðó]ÏB”¹ÐFŸÆïâE0p÷ρ!Û „²Pì´¡¹mÕ»®ñ$fù£ÃAˆI@²Èî? 0ÍËë~×
+8Ùú2›ôµØöY¥;¶b¶œkI—¶V„~ßòØ(ß!ç6"ˆÆ­¸î™­Í]Ýn‘˜Ä ;—C°ï1IbŠ^–…f7ÕáF{k:ý>
+õJ4†(Ô_ºØûƒPÌz–[[
+mH_·€‘8*ÚôÙT\ja”‘IL@x¿5¸‰Ö^ý͑?)xz
+Ó(
+Å{öê4àX+cL”«Õ<î’S	\´øq•ZÅ}_Š!d³lLŒhUK/À
+™—ÜŠ¸W°¶öcP¿õ{¬3¯ôùb>UßþŠyÐhªqœ‰r}mÁÞ†„¿KmP,Yû¿5åÚ8¯˜¢èÎÝìÃÆ+j‚ü´þÝ�Ÿ¤¦Íg‰D8zBP·®aszDœG/v+ŠâsõæäE‹i)}é½­Ç uʯ¢Åº¤jJéyI.0<™®2|¨‡W¡g슭eŒ&îa<i-¼ÀŽ?­[~…í9¥—Œa{˜²Ñ6A|ûG];/ªk¼+Ã0.Ôéý‹qûv@¾T? Þt0‡áPm±…Z ^êå!܃"îoµÇ‚öZ¯×í#ÐH®EÊ¢Ävi…½¥ß»ÛQq͏@M“i褛ñkr1ÀI‰•°SŒí["”üÊßµçè®OoÑ
+³L,Šû#PŸÎª	@P:Ç<üù/†üI ö@1š@óÔá3…müËrš·F¢­l”îþ°2Z=ü®ØùÏ#XiЎC—Å­̆›nŠèU̖|«hÕÐèlÙB=lhtD&µÖ~<@ļlÿ¾Þ¨SÔ²U÷¬Å3Øè+ÜR¿‡§;û¿·óøQ°:8šQÜ úÅ«eìКµÛÎàޒÆH'Ö%‚»ç¨`€½µ@³ËB äÕ^#žÅÓïa¼º8m‘þÆ9¼ÖîÖ`ĵãj	ÞRùkü|*¿æ ‚ t¿ô&Z^‰WØc¯Ç [ÅÖèå.}¯@„"¶]§}pùƒÈ)gŒòÜ⎛[`|„j¼0”×.70W
+xµ†^+r£•L㭃m¢Pî¿\zø|R¡u3¹a=¶fÒô4÷«­ó©m”çÒµqTÿò£Î]~£÷t88I–/NõÍ�>*Ž+À ž{dó ÕˆZ®Ç(¶y”Ò–´aÂ쉶wƒ¡Fü®ÝÒá_4ŠÎ­@‡X„1œbn9kæñ
&Q,^,²÷
#
¬B¹=™FѨ-˜ˆ®ÇËæT•a�̜õóƒ§J¹²h‚eÔÎûÅ!tÃ6¶ËöóÖ=†V)Ê@	½½Í+–Ùt²Þ¯ØiWýþde›¦éXã][Op¢uŠ|Pœh‘wƒ}kïâŒ}.bç§ @䃧S†l¢(ŽÐ+û sWE|.ÆÏ ƒ»Pħ1FþHԜ‚³ø碧7«C~˜°àäß"eì	®:©¢Ð¬'ÊB
+Y£	͉U%
+O`àE»õ|Jºp$6®"Ú-•±:Aä}„™óˆXñ‚Å>ˆ¦ÕäYnƽ³Ê%3y-.(" r#wYîAH/d§:bÆ„·q@h8CZvƒÐHï2´DÙ­Å<)’qX2>unsi%ƒ±á£Ù‰ Õí^ÿÄ'v^»ç’LÙ4‡åGÏ«-¢xçø4xÛÚè¾eÂm:՟!b”>þ¤‰?¡ã?ÂúÁ×—þe9—g•£¿j"0É,š¿|ˆ	Ü±Ú ´®UY.¨ìú|¶ýñóû¦m7ÈÆ÷Ç|¶BÆwMcÿÀõÖ+ºzj)uÁý·öì¼ÔËÆbŽ¡›b‡
ºLû~ù!jÚvÓ¥…
+q£ý~Ÿ;EØïøÀ-¯®oºve¾
+aË"^ÅÖ Q{ã];^Á�æߘ&�ÅŠðè[ßdK×qïFt¡Þ¨èKŠwíãÛ¢ºv”¡ˆBN
+IH1˜™bòzˆ€(tK>ñº3­ÃÈÌz
Fh¹üDm³Ê.ʚƒTG|;¥Év[ïçْµpÌÞßoƒdqõ÷³Iʏöýn°Ì©B·m2¼Ï¨å¸{µŽ%ÃI
ÇíDhÚQ>[*”V”Å|YRÀbñ'Æü4]ž19Ô'SE¬ê‘wbðÜu¿o¸%
§7ýþ3‰Ü¾Ô£½®ŠæCëùr†™ÚØ°·\³ä/ak~©+Ü?aÑ	ŸE$šã$ð;1oÏÍâmMpÜõY’Èÿð§—
+¥Ti{ëô¬™Wı'øPV|ï½$·föôò›ðÎW:TÜì<•ºdÖ׃à@ۛ JÑdь"3ÐÚ$ɟò›ù~_‹¨G·­ùnjz鋥:�ºFvIMn7t³7rh\©D`ˈ¿ÄQWh[â.@Ññ5‡ì–¢ üL¨¿ÚñJDh5«Žbßß&¥£ücÞZËÓÆÃ"‡É  Ô»»õíixä>5ð6Éð¿
+D³™ŽúŒŸèvæ~áÉÉî~Ê—E¿
+DöPI›3þØúóÕ¶[Çq¿€ÿp^P@Oϵ'y"£pb#†e#Œ@)ÚR Š‚BÁÐß»zú²{HÊ1l?äÉâììL_ª«Èêŵ@?mšqˆYûjXˆ¤Ü‡[²äö֝jQƔiJyc‘ªrnuQw1Ԙl-zÌ7€00m–Žs³1¿FŒ)$¡ÌþÜ\#©°Äzl9lƃÌÝ)ËL‚€­¹œê=ùJÁACÅÉešvF
âPÌnÒîðȃ,„æ	qo$„nJF!Ë]j²AÜD¶¿G;�á'*NLԔÐ`P(ÁA9iþ·ìtc!…S(FI¶¥Ê‰525\yºw›³v«•Ù[€ÝF^o.ÇÑïHW5åé¸ðè¡ýIµÀfÅÞBNmÃäBÂ¥M'Q<olÝ·×÷j”©¸ž:G…ƒˆ<}³æÆm$„&01³Á¡|¦†hÖfÌ2u—M܂„ªKH$M¶µ©Öék›‹!h%ã»%ᣂË`…³Jg¡¥ÈÅ;òlїÕXhôق†çb4”ÈY¤7U¤H1W(uf#rx£²‰ålsðX7õ™79„k
ÓMÕ³ pH§&£×weŸOÃÕ²eØ*¾7½øžn@ÛjLŒÇT’SK61ƒ$—º©!I€!rœ†ò´YŒ{`1*»ƒÎÄÂN˜6Ìûæ@†œ«V¬•)㥑E¶ÁZ`I…rZ‡\#é4°†¨²ÖNúÒ¬° Ììà1—8á鍇¤ƒˆÁ
"¢®z˜ô5ÎD`4öj£A
 À’›è^}ø+çq‘ê–P°­]eº@ñ¼Æy¤b„v,¤…}µŠ“–L=U#ÍʺÎêcS5¹sá"àðz‡–`¡’dŠA$B½Ùˆf¯«Y
+ؗ�«n�p:.¿©…#Ng]ø€¢›­µÙ‡¾h‰NN`ɦ;àÕª	ŸQ‹QTø—‹15<ãD”'Wç—؋ˡÊn¿–ûñ^³N©p–Í•5ãÇj6C´aÒSðÐ28+�LÕňV5bÅÅ!”šËI4þŽNáɜ0 ý[P¯²i¦mƒf¦É2 kÉëÂNmž‡ÖÕ҃¾ÁhÉÄlH6bZÁB½Ö¬Zí`âÖ65TP—á”e>Gf4§æ4dÇZ‚¹o4TtšŠ¡1–U®(˜-/ ¡TíU™ØrؒÃ5ùZWŸ�sd¤/àl
Ž}­ŒÅK)Â6‡7ò&qšyã¡,ÓyhHÕ‰i\Õ
+áQÐM׆2kXµdr$˜õª`ôb’~hó/p¹G§!”>,aQ0·åÔ¨lV¥“œp’h`ß`Mweã-ÛZõzéÜt«ÕS!?PⰐj@–Ê!ß [�!ùÄ Å­XËPýN0WQjŸñ•¶´JÆC¥›­éPemY8—¹½*‘ 7³lL”æºZÞ-\Go»…%9Áa,ïDD©8,Œ u54$g§"’Ý6¨»".³û˲û+x1‘y¸"¢Þ‰0_{0QKêÁD
+š~O®ß…ŠÌ)=KLVv·5›…Â0˜-¨,÷á\ĉM;™+p†q±‹ŽtM®°Ñµ¸Î6(ÓçYçÝ´:«Ž½Aç¥k¥ªó3•fƒ¦‘ '¬9Ǧgj.6ÏûóÍ<,°úóR抒é×,ãÒö„µqrš2Ä\ŒšTز
‰”Ù1onpӘÕ
+
+åöìVƒÉG·°È#yƒ–2rê‰7r)±4ÙFB.%Šö²Q`&›
V|]…΂¼eG<V«É©6p΢笸ŌÃO7U¹SPf6§9‹´«ç;ѳcRl°Œêùž–yÁ°8µ2¨Ëh¥¥E¹%“=�ûÚª3ÓsìZ4,BFml,j†dՄBµ¯žÊÎ*s# Qå—ÀÖظ&ÁtºûRy&:$iC	Óð0¦©Óù«Â
c•VL¶Vðîê~’,Îå±+ݙÌzÕ1}^ãÕDÛ4�"Ҋu—ʦƒÂ’v¯}™ÆÙ¨z–qŸ‘¨Mï½óNæB¸!3„’¾MMNS\6ò˜D6‚êHÁtÓT/Þ:ýy%p!¤ìhÁlu9@Åv€¦–eç›:†Û9yc6c²ØÚ2´¨„\ªsJË\}Û ×dûöZ=£M_›É•Ø¦V†#‰äCdݺ‘T‰‚Þ„¸
7'UÑ6A@uøi»õ”wâÝ»ø‹Ñáüí="")'¢`!Yå&%
°Àõ¸ª$±$XÔZY²ò…ܦÝYF©Óxˆ@²Ž¼I,„·a‡ÀSªÍE‘r€dt¶ƒCu’ˇç6ññ˜V¬Lq×8ÊLsF×Ü/Ý÷áòև՘%Qцuê„ë6®¶¨ò&…ïeà<}öÉù»Ûǯ.o_ݼyþîÃáπÎÎ>yrûî՛gO^>{uñúê͋/Ÿß¾üìñ£ÃdÉ?>ºäëo¯tÑ_ðuò͉Ԃ~=ý€_ðíÅI?œ=:<ý×ÉÙù‹›ï®òÜaíðßGk%
+êé—'§•j†®rÉë‡ñø¯ë°}jIñ99MÿäJÿáSûÄÓ9öÎÇ+/>åý¯ÝŸôwS½{Ù´Úåðυ'ë’Á/ª"HHהŽUqÖ5‡«a&”U›t,©exÂéE\z	“­ˆ¡ŒÀÆ»˜KCU£€Õɘº*žº—JlèŸØ€ÈØaµ,£Î¤ù�
+o.aì_–òÏ J¦:±”Ô:�†]-7“hÍõ|Ž2žÓãÊY€ðì&ýaZ×m®Z†‘¼›·û1üxÉÿ	H˜½´«ë‹‹óËË÷×_ÝÜ>—µ»¢ÖÍË0µôÓµ¡#©$¶KkÈfMNÉS}
@uE{ØÃë

M<Õà fPfc›…—:À¹V<¯n)a.{p²K«Íå)ä>MÓæÂ&$”m¦€ØÉ6˜Ó«ŽJ÷èàãÁÅ¡Î{úE±ýædZ¿ì:=ÿŒÒ³¿½yñäÃõw7¯í÷‹«^½1äìâýë×W¤ËðõôǓ÷ëßé3ùZ“êô™4þç¯Q"aí:é>«ÕŒ²aÞÚQ€¿ãÇÿàï?êá‹Ã·ÿN‡ú¾!Mò¶FiB[ ƒ®ïà+a*³»ü$-@·’)zKúG‘K}V*]ƈ/Ë)‹åÛVÝ`’=Æa·›´XKªwâ½Ú«ãˆûÕÛ·]ïÝ[6øX\ü>såìüóÏ\öÅóÛ˗_ß\\}ón?ƒVFW“œ²,÷†
+(«ÒS…€B¾¾óš"÷gö™šW†&$ÇàÐOdµS&¸^WsûÄÇû§ð-â$ŽO
Fì»:1•vtŠ�m‹8ó~õvíݾ÷cñs¹ý4ÃÿÊíù÷·WïŽRnx6'l�ÅÄýù–¿Óð·ûjö‡[ý×7ú¯nóßÖ俱Åÿß\ó.‚§ÞÉqÆ´Cšٔ3‰-Üpp*zC×v}K" J²ç´‹”¸Âîfñ¨½ï@Ï,z)­•WÊóh×
Œh†Ù|릒7Êc ÀÈñ:ì~ívÛmÓû$#¢w"ŠI.…ÍÛEt@~î#ÚñLÏM÷+­IÅuT-¢9M
ÒäRí>u)Ž�5 ¤.q¿ö'²ËäJ’¢®´ù´‚0ªü¿6‹@"sŽ1t~)ñZþP›+™10 !ˋ·Í¿ÛT6Zœ-ïšãlþ„ہ§Ðcø-~Ôm7Ã\ЦÜÒxm{Áìc¢ùÍ©C閥n(Å[N›:}x,`³·£Þ¾Ú.Ñir€+„tû]8Í-sñƒèï6H{׌ó]ššêyJ=Žßò
çÀ!ßvÑÆ®8gí(8;ÑƒSÎxᄶ†ùaçKôK²”P¨-ÇIC/'ç "÷iZÔ/Ñp².̱<Õû@Ì®!Ff2ß±ÿݦú2 q¾kSS½"O©Çñ[þÆ9°*NF½qÚÇ¿ä?N~&½qR­{<P… iªÔ½Ÿ,œaï¨0»~HVvû¢Ms”µ—Ië™PfrÍ϶¿•«n’ým)x õt¸kÒÒ¼"O‘—å§ò
R	&Øt
+Ië< ۂ’;/umYüô¢å$]–Î_¼ípŽú´@$[€•3V£Kô'á\Út¯XBnzuf×#ãr•)Rëßí*”œHdbÕlïØSîåúe`Lù‹n™)Pàæs€VÀ7PLÕ̚$ðK²”>ünŽ6è°ÍÙÊi]¯œ‹´ð
ɱ6’kˆ‘
¹òÅ¡é@͵UâիԔAˆÔ²½cO¹—ë—Á
+Ã.)Ý«’tÕôŒõfŠS{O‘&Ç[ã/Éüë=e.ŸEt³]ú”P×C<n/ј.¾9ÖN,sâ·ÒË5ÄÈÀ™n™«w$á*œt ß„L{Ž=å^®_›)ÿ¦­Ogº—%óÁ”ï2e¦|Õu¡c;þYæFºU©}òq4kћÇåâ\»l¶+mшâCýÊÏQ gÓã|2—ŽÃx¸©0â¹ÛÒù!:OËõŽR/ÏOù›æޖ”&/Mé^™ä:H_=Ď̞«óÏöKr¥¡gî4§s¢êD¶v4Ú×j)’}€çQr-7ž!sí°y„g«LQæí}|ˆtü{*½\¿å҆k\H÷âÄO]›H€¤ð¹¤PP[‹ü–¤&K}³÷`J ¤ð(^ß¼D£
+²¯Ë·SÓN®!FƵ?ÿ�‚Å.»
endstream
endobj
22 2 obj
14775 
endobj
23 2 obj
<< /Filter [ /FlateDecode ] /Length 24 2 R >> 
stream
+H‰ŒWÛnÇý‚ý‡y@Ѻ¯ÕÕÉ)E€1,QEÑ‘ʆþ>§.Ý3Õ�/Apö°§ºûÔíçN1Kiy‘éȹù˜©*Øø˜boðê�˜ú±vJûµ”ŽZÙ[]Á!¦¿Â1•—p©Uùk[ZÁkáØcnK\^^ÌUÖêÏËÏ3Ê]Ï£±×¼Üî`@°\ÊbG¥¢ ó
+¶vìD¼õZ  õX÷k;Î]ÒÞèÀæþúúDqÿL4X5“)bOîy·ý«vÔíÚõ®«§8«ÊãÊj'cµ%ùÞS­Vܶc¦ZÎf4·ÖÕ5
V9‘0Տ±dòkµ˜û4V+Ü
+îÖötLU×n¬NpžÀx0(H%±ÃªE1çÝ	&8‰ÕÓn×®×ÝX=åÀˆE@¤
±)W%–…ÕŒõ+«òí«¥V2‹•
+·;>:†ÐØYm‰¢1Å_ڝ
+…¾«±Þ¯íH<ª¼·:Áycu¸„_–­Ua*å–w'˜à`ÕN»]»^wcõ”gµRÿ«ö½K-X‰MHÇĶÌ~­VJœÄ,ÔÁ*uÉꎔ©)ð3Nö+å	ù³±7‘¹±ñ9ሳ3ŸÃbŠ(¯Ênó	N>õœÛµë-7VO¯î|J‚"7|VÖ@­©oø½îù,x#T3ÚÊÓí–û÷QÕrØlÑ(ÊÔ£^ÿ÷vp:ÇýZÙžöV'8O`&
+˜Ò Ö¬
+Y…­,ÏLpk§Ý®]¯»±zʁ‹­6¼Ž²ÊLYx¥À+¯©7zÈkZ¨B9ƀ{»ƒÑ^q¨4šת¼&dO·jAkí�¤Réy¿V*l°¸Zà<ÁàÕa0Ð2¯ÃªpïO0ÁÉ«žv»v½îÆê)Îk++£«
+Ðö?Ò¶VbÙþ»%¶ríf4!@nw¨0Ð[íŠÑP+®©ú­Jém^Áu)ä@öx_Npìo¯O÷§á·‰þNRÙm?ÁIªu»v½êÆèÉýSWV.bdãԕãå•S”‘‡œ2Z¥Ù,
¹t»ƒcgëvÒ^´1AøÔ^šß
+å
h¬$t€÷k¹«ªÕ	ȁ	ƒ‘ÃÓªp•%·'˜ààÕN»]»^wcõ”'ÖÓ_ÚªüÎ#Jñ§§M·B_ì{bÑXkôkáª#Z,ô•W®Š!m2<,·ª8~ÍÐh‰ÇJÞ¯…æl¹îNlî?¯ÃQt¶¥ð4Š–‹ëõº;À'­lÖµëe7VOZãrþᜪ¨?ƒÂúÀ’‹1.'ÇÞ%ŸljQMá’îŠ~ê©lÀÁ`®TökY.Ûxou‚óCˆ9ŒË&OØiUh¡ëîTó´Ûµëu7VO9
+ýòÍùÇûg7W÷7ïï.?~^þèìüñò͋û7wo–³o/?\_¼»¾{ýÃåýÛoŸ=^þ$KþþÕ%?}þpí‹Î¿ûî‹Ë¾¿¼¿zûÓûó_ï¯?ÚÒ¿à÷ðóAÜh¿pœúïõ–³ÇËËÎÎ_¿u½È‹Zùßc]	‚_þpxTbI¸`	ö‰¸¡>´gOõ3à.b8G¢æ0?‡GáëŸTâ—ÿñÜ?§o—´ÿ~ñœ¿øæØ;–‡—
ÚÿøCá-™š£Jd89¯R;¹Çs!“¤(üDžIY9ÀÂ#:³w ÅÒ3Z°YX,1/v,iÛP-ôù:ÈóÉ+VI苽[hB}rNcȈVŠ±=¢ù©On\2[ÑMÉu…r²Jœì"OLyñêH.¹#¥…Eo™‡1® 
+ÌÀ	_ύ'(öB1n"ûââüêêÓíïï/eí&¤mG”ûèÌ5¤6ø–èï8N$:‚J€89Ø¢^9@«ñèIâ2oª¶4«÷ôBC>‰ZÈ¢f¯¯«KU•Pvr°"'¶µ•L¿à‘Du陫¨Ù«q-&=±æ!oõèqýõ‡×ÿ:µ2ÔÁOá1ûó¡{®lŸÃ/½{ýâóí«÷ïüûÅõ››;GΞ¾½ùøéÍÍõÝòêÝõ§Ç’jø}ùûá“ÿ|%íâšsaùþè÷¥,ß/ÿþOX^‹‘£ÁÎBþFƒÝÇ.<š‹Å�‚¹{2aÞ‘hŽ9ÉÐjr½Ö`ޓIeº†­Fµ•ðL¥ZÞ&¶®$9’*[’öÖªë¥-ÅÐ=¯£ìÈ'ÈÈh" I5±Á÷ãh}Çj6%«h֚º„i7Œù¨HHš4jlå3,[ÄêA&×Á­à¢8ƒ+Aw[‹Â—tÆ\ÀÚEèúJÈW/>€SÖ¾ˆLJx¢¨“ƒÄz¯ Å£:Ø,æNÇÐüµÔó)³ƒzB
uˆGš‚hUK›dÉ@rðPlt%+iॐ¨sœ\]#o»On˜VM÷G܀t/è¬
+þ¥*�oUMà„LµAWf	$j5ÇìsG (Ã&8¤ºXKUa1к…ܔ£«›˜óϘm+ԘFåA|Z¥äñI)¢ŒølÉêr@½êîöá›ßFÉV®¡Š(’–¸E‰Ûìa16·Úh–9Œ)ÙÐ@¦À}ÕèR/p¡u»+C3éëS½çd¹Û”!	eöѵT-¶Òš­fvrñÈ,ÙÜu­OÅkv-ÙùQGÖ1ÂDäpá±µê²1#€ö=ä”ææˆüd9ßà
+÷*Ƹf`¢:
+Ñ®d=µ¡ÅÆÀ¤ÓŠRAT’G”EÛÚ+Z¢ÚL}X:–n÷©5ŽKöœÉ6/A;”:¼dïÓ:<ŒöÍܚÁ©¥éåJÞ6¹ž€â…UT6 áúÔ,ÐyAxªÖ
+cÝìßWó(*Rô³Â5i'[žÕ@óš-nÆHྯ£Åwï¦VÙt¼ù…æ�"T8̚”=A²”±hä­E«-Þ®Rsn=%G–H”ÛtÕE+t—oHÓ8úY;k¨øsêMTÈ«Š–S3w›èKŽÖ �ܨVQ²Suõš}BMÕ¢¾Op�VÚ´d\y¯²k͞»×ëŠò¦ÙJš`Ì£¤lº€¶U«Jc3P­Þ6„¸ÉZlE^֐èihX¯š¹j4X‡–¦,0P„Ùš(ˆÕj¢¡G¯?2¶+5’6Ö·›ôâä Ä?ùԗ´=jeFŸ"úª¬…;´,<ÑHörÍÕE4¤³ž
+
+"§Q�³wRU äzÈY42³Tƒ‡%\ƒpTöÚ»Wë0^§NÖGýûÐÑÚϬ½Õ2UÓÃKÐB¥%¬7?9¢+YñéYîóÃÐ_.º.ݟÚô¼®"go‡›‹÷jÖ§CãóÆá⠇ȣ›Pš­:Õà ç!6¸£©Ôè µTíÿyHqQ+!qxiH…¤å\UA(y¾”ãÛëð—´-4¹XýŸñj[+;¢_ èƒ¼/µo3O²&	„€‡!!§'1
+n)(rÿ}VU­:Ýjµ'ƒHå}ö¥.ë‚1IÅë¦@êjd;ãùµ±IÑ9Mš}z¼Ej-D¯²Æ
+/ðœMoY¨\&¹WÂæá
++ÒWÂç¥9,¹e‹!µâY3–A»¡'´“*§*¦nÚC {|­{0•m;ÜÞL$*eæDÀ)œ1µ´©ùˆµJ)V5ïk5Ùg¼B/3ý¸V6¤8OJÐJIᄤäs«š0WÚ£¾fÙP¦'OµVÕ;mªa€R3åÊòCsŽ£VåP¨0è¡Uû™tú´þ]”8YFÛÚðÏdW‚”õ´PªŽ^£ÿÅä§s“Ä�ô=síÌ©ñ2C,w‘â- …¼_0ÇW‰ÃB,Ó·R›þ4ª–V·Œ¾ÑzòtAÏ!Ω¸‰�ö–n*I
G£ÌÒ�QT™â´¦î¦ÅFOFµ:9¹9šîB¼	£GoB°‚sXnBÐPöœ(áE;«#ÔT&YXò&K†CÆa–¬´Eqá–(ëºÂ\ŸÛ›f"@Y1F#vS.ÙhBºëܵa C-Ïùwïw®€!JÅ6Ðp÷)¹zÕà(4A JŸgÐ@Ô=ä@É$ëTGf	íW{‚4‡±^¶
Pì1¶0}nQ çÜÆPHöƯY`µtÊ`zšé!ðid^²LÑCnŸ§†âL«y¬DÉBѪÍ5–qFÁ(Ÿzø0
+–ŒŠ«3°ÔLÕÐ%{wb|Ìzø•Œ„6:T¬$*¦šú‘Ä!¦–W·Éf‚¤¶lm²»˜’¯Þ¿¹y|úþnÿt÷pÿáñËî[„®§ÚÖ^ïÞüðôxwÿqwýöíÍ~ÿùðîá郮}½û+¿ÃOÜâ¹õ;0=e4	1‘‚*õ©±è°Äªm8›VÔ}µM<ãÉÍ
+ÚÒÒ ]¼Ç<»³éªÇÔZd7‘©ÖVž
+¶³ß
+ùÙ1ÉëyêelÙÕ€‰]-.;R?'3äËY~=½8LÆoJoÚ}Œ\V2¬‚ÏRˆ×љ°éèæÜ®Øî&+ùÔ.哚½[¦ºCðÉ`Û#Ã^R)ÈvóS.ÃrgÃÚKÑ4i&O6Èîv}Âs*4¸mvÊjÅ­d )pªöÕ7¨´yÚ	P<q)ƒr
¿Â<®¹ã@֘Υôîº]UT´TáI2¶îó6µÔê8p—DIÓCϊ+xÂÙ0(+… T_íkƒî~Q8›€fC(½@Ÿi„KÌBE®È|¿ZÖŽR¹ÝzK"WýÆ­Û¦…6W·š57Ÿ5-@V§$mr^è üÑpzÍd,‹Ú2±eÔÔ¢ƒu§»Ì(8jz[(ÝûÊ`s4`Ýöìµp¡•'ÊgêØ·•9™¿VۄâÙºÆOÂE%Ô¯;'òF	¡kâ‚ÉûçÂéô^òPnДù—6⁙sá®& }í(‘ê±6›–—¤¨…ÛصgjÊ.N9ð‚iøƒû\»‹çëM¼Z»ë×»Ÿþrõù
+8»»yØè:‘½P©¨f°ûvtd5ÞÑm¦##‚©lb¸ÜïŠÒ‘p°n£îÆF¿ŸâJy¾nª(Ó-!Hc…!–|Ôs9Ó7Ÿ>߆¶úNUëmDLuõü®'PgºÁ®´x1·®	ô	”h@ýîÀ0p­Q	“=q›vâÄÌW—Xi>cϔ÷Z|:k´I žÅ`‹±“‰ïoùýèQwëU>m™UðH
+/eã8½,/€WµV‰Q‰Ãô2ššé
äÉÈ�CÃСí$Ì´Q7§žšcƒÒ*Ûa·@
+˜<lV^	DǟÄ"Áeöül%r	’~*Þ»'AÏ�æ“0†U$zgôL£ÒÇܪfŠÌZÇÚ*T[k1™î)W`im¼Z‰ãV]ᚏmó<«/*°ßš÷,³Ñ¼eÎìC¦†,Ï­Åiµ•ÁcnNÂΩ„�ð=ܒóÒ0s	Gúr­¨ku*ê¯åò©Þ§փa¥Ë<Ë
ƒñ‚˜ª“µê1¯U»»…“à³âÃrœuàÕtŽBbsÉ_kï^åÝÍ¿ÉÊúϹC÷/”òÜá,ÂH+¦©eN&nPNÁHùó|-èu:ì7=Æx~4c„UݵÈxlŠëiuž_€ÁÈx\ödíñU'»¾ÈÀÞxöc´^*aþú–žÓpÅl™6[`èSjüÏ×®îxz²ëiÐnDX]`,MÕϔ³ó=¶¿z~ÕãÊ㛎;¾xþþŒÙÓ×k¨ª´4]õóaYBûӪ쇋BC›Â YJsZ6T{ªš•‡›¢mi¼z°ª†è¡t”ÚMIa82¿‡šì©z¸¦¹Í}KÔåux·µDCü¨©CtÍF[°Ï<ËàÙ;_…[©ks{·Ua�b²FªÞè<K¡Ž2r|Ç*“x걿h˜U%À[ªIxäz¨Ç
+]8Kµ€_
+¹
+i]•¾6u†™ÍƒSÊÜJÐRñ¼ôL·«v!e÷u΍�“{øŽ:O¸²J¸ DÒ¥…Zu´¦¸;KXã|3uz¹‘¡(ÞZøª¹ÕΡz­­eY
‘Tkñ±ø­{eh»‹)Ô¼zÿææñéû»ýÓÝÃý‡Ç/»oºNj%õ×»7?<=ÞÝÜ]¿}{³ß>¼{xú K_ï¾ÁÂïðsQÇ«t¢
B‰:äʁÏ]2Yš"/K­vœO+že¤éM4FÛʕ»=A›lf¶jR=8´i<غÕ{6T~ßЦ‹™-Î]›Ù‡�eÄçM†ßs@ºmŸCqŒFsúêÎ:[@º÷�zHRãhŽFUŽïM–èç[±%R‚+͑#hZÜk¥Š#žß½	ñ*+¡§J}&G“3@)‹Ðt2¯¹ó,³3yûÞk(ï³êýZ«�“[¿©UŽpûÿ~{uó‡œÞÿþþç¾þþð‰¿ýÇÇ»{F®oîþs÷éNPìÆÏO¿�R>”ÿùe[žüñü¿ü¡_v²ûÓî¯K»Ÿu‹w–(¤g$%•¬ô<·ö0ÖÎÍ¡m§Å,c†0ÍÞ¿s9·2mJ´²í«¾*%š
fšW’"՝l™¡5lÆÒÂÙ}†3Y cq¶ &Çaû×*=¢^žjý]
+ÆäŒ)¤—’|„—\*ó’�ˆ;æ°ÍŦ€e7OR{1ßÿ½\†O.Ïõ?–ï
�t™J³Úõ`HÊÑE0ÑK¬áawÔîN{æfÖÔ=¶A¹}8@ùæ.[°E0¥ÉäkÒ æî¥ESa',q¢÷7:Ôûå˜>�áÆùFpš··tΰ¿˜–H×T‡‘ý­ã
ž/t€+ûRo´¢Ù¢Vjá#’¬J{«Þ3áÒ°ðßÞ¶]5Qwš\ú0	Q;閝Ôk§¨©ÀøX
+8$%—µŽMçXÏúé¡Ñ9I!˜×Oƒ^hÐ] ?A£|“"ðžÏnd:t}÷¹…jn»@½’¼ZH_²Bú$|ÁÀ,›üó芕u²ØM‡îbö÷—‹Õvà¢ÄŽÐéX>x3´ù’ÆëÎ6–— Š{¼vN#¹ÿ±]u+zGð	ôßMÀXÌoÏô¥½ø"aC !D`BH>á)pŒß>ÕÝÕsVÚ!±[:gÎô_U5<…O͝ä¥3e='7녷²P´Ú芶µü»kzpUw4m\k´È÷8Y¿Û˜šRƑO<Ú3c3å;ˆÎ£­±:¾JÁýab˜0Pj,S8×FÌ3=gÙ&Ø¢êW…ú#ö”ïG¾x´÷õù¡¯/p|/^Ø̏pó‚ÉL†¬â!NHV£j»'{h)Ä|n³>Š¿€£CJSTÒüÝ3P×:ãÎY1¼s…¶)›CâVØ3½ïl™Êßfpß	s"bãâµJm·G¸?ÌKx³£­÷_ȱñõȕ®Q81–cí €ŽÿÉ Ä;§Øγû0Öµžñ	ëHG¥òšy£8 pÞ%Ÿ]â*mÄ´íTãv(¨ŸQÅx–~�;Íæe]Æ6
œ³>õHÖ¬™ñBdºf0IáU
+ï3{¥¼´éµ L‰Ý+ÕÁQ`pW§Ú’õ`k5BsO‘¬‡±¿€Ém5ÁMo7«Ä´åû m¯®Ul5’v?ƒ>¬%E#4ޚ£¶­§ä¹5%˜lŽíëVAIÙ/Ý
⟗ý1Òv16ØV„Ì•n‚¥Ýæïþ8­™o¤?¾j£©N¾!Á¤<QZNրv˒°UXI›½dýÌ
ªÔb½°¶
KaÄ$á"¡g»	™mÇ	xi	ÏKÒV
R˜ý€¸Ð$ˆõäÜ�ê¦1“6a˜v2»p<i8យÄ#§b5$µÙ°¥¹²åw}˜ÂûãÌfÊ!ˆÎä՞Øûx|<
n—Ð#sJ5’‹%«qñ´bkŽYï$AoæjyÙáW5sœÿc7·æ¢ì#1ö±Ýhc–±êéÉ­ÔٓÜpœ¢˜Éf`2	Jvù—ÑÞæàrŒS³°Í,|d3ô^%f×´zˆÕ„lg{®®ˆª®ªG¾W,Vt볎3ÀU±ÊlïÈìD~Êf¡—üþŒ÷­ihW-ÛÑÊÕP]‡{hmK©Âga)Ù*#ËõEø÷ÇYÉt­Èjžûâ±–»J2%‘¤JƒK\^JØ°'Êܝ^©.bMŠÙKȅüh:”òÄtžï£
+s†b4ËRìr͸^Ñ4l=¢tx5VÇb݋±®ØW	¸?LK¦_Vª1–‰qnïáJ–‘üä0nZ`²ÌaIîÆÝ.5öcäõoì»!ö3]þ@¼Ž=ÆIw³§6§ü‡-)ä|Pñ–Ùæ)!Cîdû€zÛ¶Tɵ-ܗ	¸?LK¦ËA"/»6º2ʉÞpó
+åmC»lD|_;Û®“ó”'Áè+@"ÉÌ´‘3û—p)Ãb6˵20±5¤Å÷O
+Ì÷ï5,&š§;¸ök×jØI3¨E+€uґü¼MJ¡OCV>*E”¹Zõ€Ÿåïþ0«)5(ю…ª'ó)rܹîÎ6°t,‰†åF„ÞX£2Ú]®Þo0÷Åf&†Ï¦W\ö£ðI}œt‰Ï¥«Íµ™o̱ˆÄ%'‚5FÜuÔ$/D@_
+E5wM6éÂîNÇnØ&ó½Ú °9ߒè£�³Qú©ãö(…÷‡‰}¡5¥slìºIž°w5üŸ‹Hä ÕbØü
+¹{aÏø0>±¾[ê&,%ž#‘‘“p¸#ÆàÂr¾|@Ð!íHS®Hú¶–uä†&ºØ3Ø2i¨ðÑcu1v䮯2p˜—Ì×:çö ûäôûbOaƒ76˜1C\·Ø‡…÷:ìipI}Þ·]¦¦)ÔNlÏRÓnïK,¤×ž‹"Õr²âR]¿”áVí4áð
']áó\i3{`¶Ñ¶ÛÃèbÙú˽}õõíÝ_?ûé7ßþ®–¿ÿéÇ?ÿúñŸÿù7ÿîý‡Ÿ>ùêûOþûþÓ?>¼ÿúM¹}‹¿ï~yó3þüögüüGü­·âÞýŠ_~þè—Û¸ýáöÃßÊíG{åOøçƒ]n*œÅY	¼bR0P¥²kH1@Øím;×òÁ¾ØËø©GÊd ’cqýløÂ3a›G`gðJÈ3w!cL‚ðt«“¥�¼JP˜-›b½ —è+*)¸7é¢Ov>àVƒðQ7n¥öl‹ºËSg`:y.�AXág,‹qY¥¸9™Žlá0%2„'G©înðÞe쩏líæ¼Ó:b‰©>çxrôJ
+ÛoÖP¸œËÞ-`l­>éb–ßX+֘‹̅ÛƹvuO8àÖv>»‡Ö¸üN/Ü+#CfsxÌæÌpÛ´.˜h¢•e´Eí�+œôéÀ&rSæb=Šd=2Þ}|?¿+êhº}8EœnÃÑ,òõPWMÛ^—GˆCÓÆC•
nœ"=툂ªž	+ƒ@§e¨­ÒüU
+?¤Z7͟ýÊSÍ/i ‚VN)/Ä1÷l,vcà'*Ó…~
+¿¥ÃeËLµØ+.…™AZÏ{ycTgµg‚kÅ©`ڙ޳‹÷+Ä[uÖÞ~U3{ZäÈ{iðÊÀá¼phíbÆúYö‹]£ì(€6ôÒ3até`íl¨Xl{€ÐØgà>®ÔÕ6#°3i$ÚuäÖ·M…“å¯ä†JÉ7x¤A‘µù©{žnØ&¯ÀÊï÷·½jOXcèæ»$À¹£[,î™ÕjØqx�|¶:Éâ֐ÖËZ¢oÔ‚ÃâbÆ"¢G:Ae½á¶ÆÊÀV”‰{K°´MoW~̉>žT].÷O<`Ҁã.¥fÅ�—lo’ssàWdÏãcÅ7`0œ9#¼µfÀX?+Õ—pËß8WõØ:q|‘™k”¢ünq�·+»öMÞAp	fËH8]?@[_äÛnf²ÑX³ÑÃêB‹Š•/ÚS¢Í¡“#‡«‡ç[m†%—>ë¾�G¦ÃvgóïoÙ Ì[|¿—È·Æ4_×*än0Ÿ7‚#T„
f"Øœhˑ];ÏÙ)vó<«g
êƵZ÷ªÍTÚLÀ³4îh[>ªgÙ¨’¡ö9rÑÆö†»ö·üÔf§>öMÏ/µÃ窶qÝAÈvQó€ðh5@
22°k<	9¨¾«ø“k	"¦úâÌ^„Œ®É©uŸ”.È뙰ÔÈà<+#À1vKOn 
+½Õœ}s¥qé]N>ºP—�Aœ-ݧ/%	Ùñù&v§`²Æ&–þi?=1+C½Y-úÚír/ôèeúÀš‡Ï²hXp‚]è¼ç<Ù<Û¢óÖ9o<uˊu lßìüµ±w€‹Ã}×äꀝƒ>RS~¾Â-m÷ÀtÎL¶»O7ß>d™¯=‘c‡w[ù쒸ìÖbYf|	³+ru˜-<϶fhÄ`9„×
+Obàîi‹lǚ±ê¬ÃçlÏ*.Þ݊ƪœR	v®3r÷Õô«*;¹Žmï×y‹1‚o×�±ÌÑï™7ŒcWÍ¡ƒ1™k®™î:˜nC/c({^\Ы™ÿÜ>ϖntj S{ðËBÐå+¹hú·j
5&Ö;AëÍ÷ûÿÙ¯¶«®#øçö‹%ˆ2x]zݒ§9DŽbE²ƒ‚Ehƈˆ,‚åð÷®îêÞ p0
+ʋ…` X{]úR]en1—w9$3‹¾ «\heØj’	[cŸ½õ,�Õ[ì`ÍÙ^€/:y«LHv`]yC0õ¸XîŒxg3ðb,Y:oÐbϋ%z!ÞWµšÏªQ«ƒBû¢">MB«­ìÃNLu(l† رðeÉ5äúꎕì­0c¨æä߃“G¬]eŸÖôZö0eòØ ÏiàÔ5œ)u`÷¼ϹB]0»E%f	aÐìü‚�ʼnRÝr¸¬5]Èà�ÿÅÅ»6·O
+&œä×R]ÅÀ¿8\[ꄭŸ\x‰ŠËcž!ÑÌ9Tª9ǁ¯pN.DÊÛ±óÄT†‹-ž]š2·v=
+^­~[}AZ-×
+¯¦"ñ(Ö*»PÆ}3#ÖT´¸Ôfï–BeH¿¦Ž³„WB~1¨'©Ë@«±kuõ
+°'cš¢
3S×&L‡>p_›Wš?­ì¾"W8(zÎ0+£¯fˆ»ëˆRòµ=âniÚÔ¶.”x#–hŽŒÁ„!7^·EZ83—®›�qAï}SÜ hÃÚZDNvÄà-2R`
+oYFñ²·µgt¡’¼EZÄ»¿mèµKâ®ldá,ó�—ôÉÊ.°-u½¶¾µï…>šK#Ó¯°F`¡gZÀ*+)ö­ì(À!tõœÅYõ&‰
+ 吒ðX^ @ËäÃÐ-ñ
󞾉 ,2;@)ñ½Yn�ÒYûe[]À`ôáØ若*NUã~°Ëñ°¶œÄ»êßî3J½ßyHñî»æ>šœ‚¢CߍVcê'qÀbj×&¤p@l9Žóé$ß	6û¾b-
8¹Ô(0ë	]8ž�â=ÕÅN*€½ù“jž}mnFkIU§§S¢RjLÃsÞó~6€ö—eTfñã\āßÐ]cqm4€¹'@�AqRâ|7*¬¢°Vü0ĹzhÐ9ݪ.)‹·¿¦r•ìzoì“}5*oí�¶lB ¤ºƒ²\r&ÍÈýC¬5Q¡ÚÊ;d²®>+b¯MÜ)¾‡ØÂHžøZ2¶‰f±þ‚]^·Yö€ãºKô’Wc+Ùå|ÓÒg§Nq
+åÆa¨‘5Z£W™ª8|õøëóW¯<¿|ýüåÍÅ«7Ûïú¯ÿ~»sþô哫Çç߬ÇXþýë7/®¿]twû­®ÂïCÞÎÄ|rSé*’Œ=¯}n M>êßÈŐ­nt„“ZùyZÿšAx9wP¦e/Ó×.Gå‰±QÌTÞ¥OäZ»—c÷†*p¾KJy¹~ ÕôJ	mžÄc.•D>…"‰Nò`;ËÃñ	âsçáÍÍÅõÕÓíÙ«‹§Ï¯n^oåîv¦&‚*mg (4؂A�/x=•*š\ÿé(†.Ðq;…ZAUŸH°ë³´¼ªJ–
+Oª,pVPRBHáIA§4Õ£ëCUžZ*ÃÁa8Cw9ñ±¨})xWê¢ãå­O=~ò©˜jndÓ4xöQK8mÇãÿ¼ŽóðÓ¶üÜô|ýÝÕŋo/^¿zþ|½Ý¹þ͟¼þöÃËW×ü/¿Èg\÷'„á~?;œ¬[k¼Ó5~²NwΩ&;ݍìÜ÷›üœê›öØÉn<ѹ_‚ìÈsj(Y–j×kבIìbüU| ¯Å'@×£abÊç`|ãöKҘÃV/ck´˜Ìƒ¢²½õì¦,F)ZÍd½©Ó,´.𥦉&Ξ3zXªcŒ<æ6T•~dÒá̬f²“tûܒl'ðšCªv–Ãò|–«V£ÊpyMµY1?k(N‘á•œQÀj=Ô£ÂC‚åŠÞ=«7Á:VåäÇ(uè{èáÙT¢ªÃ�áÜöÜã'Ÿu€êîVþ…âûW¢ûÑÕjîGÛÜäD‡Ì°ò•èf“ ºYÓ†Û:%ºÀÌ(ϕYçJ4^ÓT,]«ìÜ¡œ%ʼnNO
+¢kҗ]¥¼V¦«`àÌA«L7)Õ½S0ÝKѾVqNÃ@œ$º° ïGàKŠ6—êÏÚç
+Ø:Ôå¦5c(’Äõªkc
,Ý.Âeþ-âgl]¢6ªg³'±–ùç,Ïìj1 ß[w×Ð{Í®È,ʖ0ãt°J™Œ—9‚ˆwËikÎÍ+&uñ,6·ïÇà£\{–¶\•ìÌ܂ìÎÀÖm!DÐ[mázøYX¸ä<ƒ…»M‘¹è@ugEÍ@Ç­°Šc–ŸŽUàd!ƶ1õyš�ÎíÎ<~ڙFmV4_Ú{¿’ÜI’S
+Дp:WʺCy¥é“\Òym5ëæpWm leÚ``ø{ÏehikÀ©Ms݄@¡â˜½TW')ÊÞès:E(*4*I²âRmRóݨÖÈ̙ê�6ԛJ¢4ë.ÀqÖêì>{^Üêý�|YŽCÁVtVmr}¢*]§òÒ`¸4´ÉÚ7U†kÞ[}z¸–ÄL,Žš,®Ò¨Ûôe³zÂÆ"4Szë91;,‹j‚x”ªƒIÞÄ¥²G}š!í1<]K90­4“‡AÒã±hؾŒÀG>­ï7xX	/ùŸÊ^Õü]ÝâgÁk”müŒÊ™z*TªÌÈ+c½ 2âç‰ïšzÕ®Y ´¤‘ºnsàñ“Ôø÷ԅ=bcøÿÏ[Ÿ±åÃÃÚîÜÝýûêü›œÿáæé÷o®Ÿ¼|áÿ>^={~ãȝ?¾¸¸¾¾ú÷]¼ï¿ý|øÉ~áŸ?:Iýõ�žTUžÌƒ?À–ÿ{iAà»,L÷PàÉ~=zƒÿùVý¼Éöíö¦í©ñ³Ã”p`"5¨$½L•e]3OýA¹Ö	Â^­ì’`ѓ†ÉÍ. „mdP)Lm3Þ gê€2B)蜓æðȔ�Ëô]1¦ƒ¢7½WÑ{÷}ƒŽ*âÚ©MC÷v0£ŒÁ9zëûPê'˗‚)z3¾gw+ô†rŽD¸@܋¬& ÖQeÒŸ&˜ÿ®n—sƹÎÇ01Ó×.®¹{u°A035¨(4í`n[sÃ5cK.ƒúÉ;;õ9ÞÒrßɳ¥qô¡‡L·:*Á>r€’’±)*G_À€ÍÅ/Ö<>ÖZíò™+|*Ò6ÚÜåbFïEÁ
+°3˜��”ô?Á.ïÈ{¨	‡‹j,ÿ>q”ü¬¡W¡6¼ZAGìþ`¸A™¹„\|�@xJÇ$u_˜rU¶:\­4¡–Ïi4šŒÙ«Êz†•²yߧdšÉÏiճʱ¨´A‘Q3`Ÿ\"Ö}rœ•Öã­ÞZ�[¦í¦å‚™¸vÅ¿rq©S"ƒUí…m€jt×T"ªyBä¶h<–>�KctÄ_}Ó®Œà Ù.½ÀÒ§Æú—U©Ïð˜MN	ÙÁjQс®­)ÈÒcô·rº•B,GZ@d“úMFbì.5,ŠJ÷÷CRek,oªƒ¹D�“̹oj¼ÕŒÁ
+ãQ)UOvFpÔð¸3cXΙÖ~XÓWl•Éc4uÌÚw^0xµY
ûâZÔó²z)Pª.QA‰ ñ-…@ë´&ü…îªÙ3©Ow˜Ò"¶ÿÛ
'È^¤å°7…ÀF‚°ŠrÉÛSv•û› ¡(ʌӟÛm—Ëe͆…qŸÀ«$³ Š[ÛÀ’ÉqÿئXLÓÖ¹Ë
+õÖ”—2C!`¿^Û^¼44Û`
+!!L$ڜ/F¾�‚å2̏Õt´¬x€%¡÷åA›?å½2°c@à*Ëd;!t–5YèÕçËùèÜÏ¡aðôÐ[K?ñVoDzÔ©e	X]ô´
+Ù,x}¢ºÞ)°Á–L4Nۙ¾q£‚ÖÍ*Tü•±k¼úI› ¦ô͜C8{(^·>3
aØGÖ[
+em´À×Ñ\)`{Ž®CbƒT´I£«Í’éGՉ5߬|—Q¬D5ŠræÑ÷½1(‹ô½ÕçgT•ï앪´,uå¬Ô7»Ýì£N¹ÁJCŠt<ª¥⿌Ì?^§qÙç÷ùºt¤õ„zé‹ó¦y'°(åp-V»ß§Dóqj/ßúÜÏRˆ<3§Åxÿ[= ‡(hpâ»Ó’Bh™úév(8t~ñÛm_}cÙ?Ò%di6+U
+°N2ÀR-v"Tഌ�]k2€dª\ꆕù@X#³äºë)°&%µÖH÷NÑÍU_!h/ÎávÇ •W×r¢ÀêŐªùýÑýèÆF}‰õp®„Ð<­óþæ/¹Ú4{¬ç謮w´Ò陮îb©í¯âï5Ó*ÅâGÛTþ<\…_CòaO€÷qþ÷{߯f6 ã&öTÐO"¸ø4
+ã,ö °ŒõC}V«º?t¬¼òYÁ³¬3Ò¸òóu4VüóQõ¹+]†˜’”‘´ZßäPçõ ¸>*Ÿ_Z»w•#ãžý¤Ñáé›ý¨Çs
©žk¤»PY×鈠¨¸-Ó_œâ À{‚ðªmAà¾6Œ™¯ê‹­.|ZØßTV¤M—A¼Í—"œ”tEÙí¦0f…°_ëF_Lêú†5“X|2`/!€àP9ЂÒô½´œVqðò¥!æ*ˆ¥ƒßO)¦ÇºÊ'GŠîZ8V¿z
¹@†ô� °,…µZÅ2§Év„Ë՜ù{j«•	ˆi4ŒAÅ´°TÌ"#x#Ìs§íðSÃÁ9ˆ¨¼¬^u[¯8ƒ1ÉÂIl>L‘óòÑ]uÙÔ:‡Ëš¥×DzÄuS+ô#¿GY”‚òlX+iØ[#èò}– ¶Ææ´Î‘‡XŒ<7†lçÉ(g4\+_#2ãíYë`A]¹,X)NÜ8-ú­“mä֐,õêK:í€'½ïŒ*“ÛÐxyÿlv¯¹Ì +¶Kåýes:9Z‚ïÝjÕ 6(ù�ên“³ú“ÂJ¡È“`Ÿ‚Ðô‚“ƒÚ{gXÖO[ln,+ÌÑSL)…8Û†È0Öò™²ý*ƒ–E¯ƒUN˜7$œ0¶ôÍ#ÆHS^KÛÄYÂ]N\……R²Fê¾Øì6§ŠÅµÁmîäbÜ:]÷ÅÊÚՈµzd¬ƒü¸œA£Ú¾ÅލÅîˆÕÉÚ®o°íŅÒÖ¨“ÆPˆ9Kp«ƒ�WÀIÂqöFc)–+F¾@F:@cŸHó΍´×’—åš
+Î*ñ“Ñ‘\¨ §!ÃhÞ^¸ßF‘2±>,˜”s°«óK88U¼ëæ#Ev\œó,rPXD´_€„ɪC9D«"Ø©Ôjý;SÊ#Î.4Ÿâ5½/ÓÁ¦6	ó8œ=˜ƒ½dX»QÀ8…-„eÉ%>3áå­Öu´† qÄTMùcü=ÄbÞ[h@°a®¾Ð˜þÀMØ҈yA÷qÖu°ÈN¨D)ä±cäÔ06Ûù¢:lÐè?co»MvÖV­ý®Ê¨% Œ…M\^Mãà4šƒà3�ÓÙ³©ga\MÌ0Ñ7ñ}Ð÷ [>þàM²§ìuýùA
+1\=iÊE–a”Ìójcb¡bç–$PW£IòÕAºÒ‰í*ÀÒÍCòóÐñ«9¨îté+@x¾Ð¸f×\BOÅÐñÓ’~â8ÁQ3÷©»N)C⺷!#ëê5˜÷ûÈc˜Ï	ÑƱ4D¡m¦žµ-Æ8”Ô›c<6G×ނ+tV{cñ£†<¢¿ªß1Ž>/¨Þ±<C‚Zþôt@Z
-Ÿ¨¾u*LpÒo‰NñÂÍÛºsí'íiŸÉÑËûËr°[“lÄz2tÿ±NƊXڍ ,ÊF<»\Ã}^Û¼ :G6%ýd§>ì—ý¬]à“rù`ØêG³]öû+Uà¢iõªȚíì‹Ñ¨eܒ2ē½B!»ßÛ`Ô¡%wr® …ÐÕ)›}Úe
+wgµœëeÊCDî`JáÀ†ßƒ|̇µi\¹SncϨeÏØ3hŒHòþ6YY‡HÉïC¨DZŽÍäôiq“§ÐW°t°jWº‹Ô´³ÂS¦e¤o7Î:Ö¢ ÐPÃ]dåL>£àÐÑXÒæ	£¹ê̦=µ¦“’ÄGmÒ*ªÁætãÞÑFdèu#Œ³3ï²t0‡ÑXæfù¤×åRqÜÕU­J€	Åày¾|ñQMYO8Ö¦ÍJsê"0†Vaø$TÝY€®…6*X©˜`¾³²±Zë2Æëvöu`D6в§iØC""0Ê.#ȍX`΍Í¢-+ܪª}nâ:e…¯Su	ëvë×bÆç+9#šØWG MFÌ	ãýæ÷*Aý:«àŽi‚pM[ӊ	ä#%¿GÑ6Í©™1ysGsÆÛióA¶’ås+aíë쨉ªòw™©hg‰üՔ±0ÏÍebë$ü6«‚౿GYÁ.æøǛ_ýíû?|þòÃÇ÷_>þçÓ»Ï__~Ów?üúåû¿|þøéŸ/ßýøó»_>üñ_>ýý/ï¾üü'ü×oüȟÿ~ýåýßà1,ÛxÃ3ÿ€:Íó¥ÌS[Ý֑֟޽)øÙ\ٔøóÓW‘&…�Œœ·—‹ήB Ú¢‹îÖàî2Ó(Z(iI‚;$†뤃
q>D¸3•Ìº¼e6Ñë°V}Ž“XíÂþEÃ>/±_¬qXCoµÙ'½õÒÒ8}ï#@0ï÷šK0Çv)§œ`0ÚRäЍ0Cf֝`ýÖõš=C
+Fš 7¯†ÆiýUók.Zºê¨Í°ÎæõvçLyM>³Uõ^(a6t-¦ñь«­³t2´ß_îí‡ÍW½ êž^³#wKò®3Mhñ$oˆ$9¸š³8eWǾ^Ç<jé@É¥3²Ó·†]õù°r,¶äô‡iãdò·%ÏW¬·É?IŠ—Aêe«V±Øåô8e	“'ùÓågˆ´!chZéÈ~n�˜T‚oýÙáÊ¢-'¨Õ—«C~¿U“¬Ç3Ãû+Í«tc§ òû
+Q”©Y¥yŸ¬ÁٔÇòžiÁ¬PTǗ½¬AN´å‘ärNY)Öúv¼	sܗgÜèl­C·õ!cæü>eð[i„M}Ø*9Fë™Âh‰tpʔ–Yf�G„ï3rô‹Íª“ÓÕ~Ñ~Ý1Á*ÔýÇ2‡{	üáØLZñå[Ýï
ØÃA%Qè	“\T	’|B/y6ûÞ3–¼6®—f—¯²e\gü¨æ¨Ç%.ñµVR0¯Ü1ܸHÍ@ÏbªŸ6hþ/ÕUrdÙ
Ã"˜:q‰µ'	_]®òÍ8{ƒ¨ßS>ÌoXғ¸°ùÁø•Öã½à¼$ ýÇPÇ›�Fär햔H
/v{„V¦1‰¨ñ ƒh/�M‡¢ø!铑Z»öûtå{Ó=ˆ¸•¸º@(|Ó(°E@]]!*¸CÁÊ:ÙlVá)²C�á[–uŒ•·xãn*éäæRb>«	fèS¡½ëù1!ˆ‹ázwNaÛ^y0Œ`ŸËjíYÅ­ê�»Nk¾ö½‚Ç®¥ãÅÔf/°©3#ü».0ž>/\1ǚ8T@ê‘Œ©Û5žpázJdŬnò	ØÃ_Ѧ¢÷ÏkAB"É.èò“Ÿ
+6šŸx»ýKº_€Àøù÷%P3n
+VMˆ?ØoÁ’òž',BV@s«I¨áh–ºÜHy¿µê€Ó®¼gy€óôY·Ï¬KåÞ¦@ãxŒ${¢Ÿ¶ˆ³Aû
©7Qo»d>€æCÒېOš¤xA[åÆN«êLE $ÆDiŠK•q(ŽÖÂs¾]�ŸÎh¡#²:”dC×dˆ�Ž±œà¾Å¼Á1—˜µ TlúÉޙÄ�{êGÒš/“¸¡ÅnÛ\띖k+³8ÀIq�keHŠõíÒ?3¢Éµ Nò)ޕŠåwU6üsÀžU²sPãZáQv½IZW|:i‡ía¼P¶ñÜó@‘ÀÑSþDfz‘A<ˆ>vf­‘K^ľ0—DŸŒw€JfÏqu[£­
+±WYxOˆB>¥	"¶>äá|²Žöz£OÑ ¸58Ø¥ÜWUrhf±µ£eBîVá>5
�›]€^=µÖ«Aá.†n°¸Ò¢&‹’ó}×ZÄxHW3Å §Ž@Þ÷¼@}©Á@®áìJã¤Ïå©ÏŸ�Fýe!Îå©c•”÷8Š+íU"8Åõ„YS&ꀍ¿ƒhædÆËô�ü¼õ3‘{k·¦Ç	À)R<ß_à>SÞÏrèS††Häš-9N×@Üñ³¼X{ò	+É9ŸÁ@q5öRP]hg%ÁMT•#ÿÝàÃ`R�~ô½D?@p†\CJÃ_ŠASæõì÷ÜîÙ` Àm«(b¶dંÉðPš¨¯8CC
£6zÉÙi=sï{À´°PîȎâNkb0@•XçÂK¯Uû[ïpÒ½Àó0ÀcU‰Ý.·lõ�MÿoÊ2Az#Ã,ÓayUîY¯+ÁšUFpÛÔR׀'J-c­Ï~põåµÎ®ív‡Ø\*€:óiEÈûqÅåìnZKöI«ü
ö“2Þ A9íxj¤êµö©4́NXBªý38p0šU­5#èã¥úeÌ~®.l™ÄùI˜ƒ„BÒ¡ð.ü>ÆAÔ·7ià€ËÞí-õý»hÏ�ÒÅÖ1)û€È5
M“ÜdYZJ©à]çÈÊÂ^ý}lo…5¹¢À¡ºt=°òêôVñV²4Š¥ÉšÄ:ò^`÷þ¶ëëÖVš"ŒØVÚ³Èú5´S¾õÛVš­íºA¹ ‰ +ýNçt;(¢X»PN\6‹µ0ðÖŽ[tØ4݂O9ʶNÚÀQ-S°N=˜/‘–.*ÓøÖ¢Àb
âkì€eZ'X8ÍôÚM{´¦Š(=.ó&.Ð`jõ�W¥^UØV1lÏ"^˜²Ô¥>“ÛÑo½äjïX«?mo¡†»À¶—À9\S4²V’<ëu}Wáu(ÆÕ(˘e[÷7ñHPí)À“€¹(R�bvȳþv€ËȀhz«µ>iZ1½»"èÏá—ßõ¨B0Â÷é¶Ja:+›±/i0ÅOR±^¼ëð	íióÈË;õu5ˆ×”,Íî¶aªÁ19HnYÔÊ$»aŽ=õýEuÅ9æd"z¢ÊDÇV
éœméÃêû‘ðoû‡Ýkδљö.Ð3‡vÇ°ÑD›í¿uÖàȋ~ö_ݬ#wߚ{
+T]cЮ¡…Ùîëm¡ApÂ±Þ(AßÔc‘kA‡ãõÀÞ¼gIW@
ƒ+o£ºAÌå—à‰¶`øzü¡S»4} ˆ'i
	}¸x»vß÷ûÌsÛºu�ÛÍÎyv+èñþÆÀK?MœLn¥àgUžÎŒZ^
+ zp•]ñ£aCÅÒoUUe§Às’q�z+&)óÆ&Ç5ﮈ2ÿPE–¥
+°¯¶p
+l˜8b"x¼¼rÐo	ïWà—?-pöuÂcZ	·®•ÌxúPʵ§å¤ZNG)ˆŠ/‚i¨%3˜©OÐÐ:{¦n:7Á-%×<Åã@+þFô3Ó~s®åýC5þ̹Þê(>ô¬ƒág–3+c=8DÑ·ÎVø1#ÎUæk™v¶’Qæ³r™Ö°.<`ãÜ6õ1#“‡*Ñ
p­éC Ƃ>
+5›(´Š¹Ð»)fcÿ¼,¶uلÀ’‘²Ví)	À=é-Kx[}ßâ'«ýèÕo}€S;{¨ƒ©ßÇx*F¯¤HܪÃ&ŒÉ\ûS²5}›–Bµ¨‰GkÜ¿ÉÓLñìö"x'axÕ{Ö{AÓh(ŸrùÔléo
+„
ÑF9¨a#Ú”<I–i5Ü?)l·kŠ;'.À´Qœøšc!Wl€«"€NÆiwU
+—çÀR+ó†ì«…]<	zÖ~Iڐ&ïÖª¡a§3xtÔÊc·DîRÇGa‰[î÷ŒIr}õ÷‚õŒR#åF-.ËçËk¨’T9ƪˆÇhÒÎëÕ0/•æÕÚT�OTá}]¸_ÀƒD0½	ÁöN5Yè+ë/�I5ô“º

‹_2†2øb¿û°Å°¦H箑›Ž@Â-ŒŒ„ZÓéSãVŠ@È'¿/‚s¤œ„psNÀŽ‰Š®+š!tcvÞ¯ÿü¹
+Îo¡iãŸr«}ÙW¤	Ûןýhù?âøïÏÿts_¨ÀÔ0ÿ
+níJ6yÌ�»•ëh»À¼ZªÀ9/")£(uwH‹xr‚F¶ét”QÊмý*‰þA8ê”ñÚãëô5Y(ÖßXÀ„qQý\
+ÁíÖu*í ÝJ°†ÚªÝk´+3ÖÚÒRûÖÒ©©ÔieÛÆy$M2ùFÐèdâ!·µ9†ÞðÏ~Ëþø@>Õ·Ú²â£.ÐΒ:Ÿþ*
+RK—uHšÔP[fÚý
+ƒ—¿J¶"·‚1ç\e9º@”á4;+eAnÙ³„]³¯¹Þö+Ïv”“Ðýóóòߞ•Dº.:ÇÑë5çÜ·ú)ÇD½¾®Jóû^ß.§r2¬Xý(Óæc½ïoÙ^ˆ¨AßÒL;[Uw4¨ìÛç±ò<>æÆ(s­E+Þ›kzYþÒË8TÛc |v°«ð?uh=݆¤^�§4?‚™Ñ®.ÐÌ+-g©VA8_`ízí®l/¯¾°YâʎJ5/UÛË Î1Š³3ºfb͹�ÕÁ(ðý*0ȦéZwÛÿ\WK²e·
[÷Ðx.}(Q÷&<M¹*³, »Hº7.OÚxº<?�¨ˆ˜ŸÛíÿ/Þ?÷S¿7ø	¾™ìi[Aç(öEÕdn–çÞö& ÜFfÌ¡ž%¶ø3*ô	0/Èiâ[§Ü¦a—á‹We	ŒSrY)…
+}(pïÁ¨éý
+D†Ylȇð¼
+¢]6ç-ÅV·š&päå—Î|߯)J¹\Ï_϶)wúz`9›S}¡À—vÁ|€Ç	/PbyB­ÓñÉÈá#ñTvy«�ýp2´8r›T�ôŸæ8ܘlÈìE®pªµ÷xB±*ÀÏtªAt‡gaÔI»¬ÅIJ#·ÕUƒðde
&>PB›e[$}˜#èo`†IŠÂm÷㲇'|ˆ„NPàti¦æh=sò5³ßgm¬#sölú�YâÂQ¤aÏ݀ZÜØ!îàt-Y| «½ATÇZì#d—¾8È0¾«ˆL_(åbY¯ÆÅØA¥™L‰½œZÃù¼¾KH’éyî¶@WQí‘3Zd€ù⢗LG›•ò8â.»„-Üñg½ÀWåäðØڃ¿…E_,÷’K}Cq…s×wjë
°‹áªr¡Ö2æq%—à˱DJéV:žŸZW&
‹•tµÙG).@yxŒÆªÜA—‰úZíNºâŸŸ÷r‰•¥ÛhžïŽÇ?ÑnE¶ RúþƲ&$Xô¦x®©Ùm:Û{äLŸkæœöP€ra�OµYÎG³v‹Á˜uÖö><K˸œž`¢sê¹wè£Q·Õp>ÞlfûÈÍé=0Jpjxqd“éÞ£|Hܠʂ¼.7v_ÿfºÁ]¯¥9ÇJ{‡‚ú)¿á™ì¿™’ @3,A«ñA[žvòR؜îÝ/ÀikÔîÊÀì‡ëÅRecu*{Œñ4›/>Ӝu(ã60ê=n¨•°Ô
b·R�;K°?žáh^T>ÖjT�ÿ\EP€u81Ø)/Á¹6·©9‘÷ß0)
yö—n5éÏý~~?¿ô•C”®ë,(¬Šˆ™âpâ잋িÃöbƒƒ¹Mä2€"ª²û9\¯]ë÷?~‚¼tvuÁä$”I__ë `LÓN¹á�óµ9µúXTA”s½�…m;|A¹ƒRLaâ¬ù›CÏúUt–¬üª]�'Aí\%Ñ2ŸoÛ0jP#‹TM?*ÀތövWÿõ¬p¯m·@P3m»ÜaÈe"üÎ9ÚãcÙWÏ©Lû™.oõÒ߇WFú›ØÝólt
Óo1·ÀÓÌy«r6µ]{º7Þ«Ï£³ RÙC'½Z	QºËÑÕ@Sºµ¸”“L°ËžŠ›¢ñ'Óbøû tƒ;>ƜXú|ïú>|¶ˆ|R òZDÍL”¦¹8_ª‡i‚ âòÇÍm¼ß³�×®°n*A&×j9éyÃY1&ƒzFgL³QXÊ´>¯«¢G÷Qþrí;bÔ\Eí»sbôýj̀m•b h)y€
.AxDDšÕ@1$~^z؃au©uË
+ø ßÊ쏁?adXg‡±ÙJÚLjZó÷óܳ-wIf|ß:W)èð˜†?ë·û|råÖôŽúdÿ˜[Ý	žãnÎj®šJÀ~|Y<+þÁ\ߣ�£/™è;ßïçºÆí‚+Gݍ*†—)èxk€‹‚à#¤émíËE,Uez¦#kû™;;¼>`­½áïJmöáü–56aaà
+'ø›¿_4¼±”„áó
WAéŽG¡ C6uw•j£CGYL÷1Õy3&�p£ˆï*k€+Öú ÞJÂög³B�ÄÖK˜ê;¦áÅsÃPœG,PuwPÚZ²;´¬ˆgíòžçsù¶æPFæ»û´ÆͤÅt?¹(hðöA$ÚA?œCûjèRã–³ë~¶?oŽDÆ^�d’¤ú*ålÔ¤?õDÈçž´£þ8ÍaŒúµ£
*.¸Š€£ÐÉôÁsÙzõOVïý‡ú©WÏ%W5üE/¸^G—�FÈ_aÁj•ˆžâ:{»a€½n
+_µð¼6[ Å6Ú–Û0¥NE¼iúÅþ4uWT._rÿ°Vê~¥OôÕ>µÚTº�Á>`O_šà™ãu/¼?œÎB*}L‚jÁEúÈOõÉ-v‡ÉÜW7(
Pd›Rùø
©YVX:ëÊÆ6õë€>×êüyËí4Àie Œ�ÛÿéM˜°yÁòP3 äG߇ÐÇ«NT⬠§³í'ˆíj`k‘	°q
@<½&¼\q•
+8òû°•Ÿþ¹Y~`m•þš‹îZæ@q"�)¼¥_û2dê—&5Ne€ŸèõɳÉ,¥?^R°]—)À™ÏoU2	x­|¹R:ςdbWMp­#_YL E©äà|¥.窺äWmn‚)Ö?å ]Ð׶­wÁ5*HvÚ[à¹^kÜ'è4H8€Qg€€#1?Ù7=Wˆ0«¨è»ž›U¦¥«~§|w¥ð”	Æ,Ò/tz(Ìíö˓Û'€±½³²¡q?49u+`ô`³–“˜ rÍÈgý$G®6®Z`K‚ÊŸ÷iÀ°(Ç
+Ý4«a¯ÝjÀÑKÄ0±S}“ƒŽù¨˜„" øþ­Z[´0o³08™û~¿æí5*FHŽ_œWAa°F
`¨¥~ïAÇ5–ìà«}7«N[^®V�€§kƒ¸ç
+qŽv˜ø}›d…5¶‚&ï$xû+�z¥”)(h,%ËZ#[uúÂpÓ¶EŸú{Êl¥ÕËÄrÑ¢Z§Z8N¦YpÛþX–åBÛa_zÛÙU8+g"é9D89ÚW	ªZ7ˆo¾ìMeÜã]°¦¥Œ_=€$·Í- E5Ù­[[DóÚc#èÖeÍ» t»Ä|v8oß`*ÒÅ[†û†7þÍ�«9mü:½ëì³ñÖÊÊ�ìa“ëSS>,Ï#‹»Þbµw©2¬Ï[|2Pꆣxü†ý­åtU½‹°p(ÀÔ"uÃl•ä£÷Fíœ › —Ë^›HÐÅ)#ïW
+ˆÝV†ïȆá_VÊÎáNÙíè”ßüûÛÂúÕê-šÿ÷«ãŸ)í×_ÿú£Å–Çâ¿¿þ›Þ\¼ ìÁúõÂÍ6¨k}û³ÀàK%%	‚l•ARÂpðw…
ì2bί~¿×'#NƀrÙÈ4/�ƒÇ1zµT^­z™o$poW›y,sÞ"ê˜yîZaqèUð©ù†:8o;6,Lî\:K®
+‰Lðh1lãp‰œN¸]ÖX²�p|¬qÀM6Ú½ëxÏÞã“`¹À(B[w¿�°
¬"–
+ã^sª#«¥ÚØtñÓi-BCS™³Þ´f`Îã.¿ï„°º;“»M¼) íÏ·KSã×÷èî®ìåÇ73}šéò²Àx†Õ¾påj”y6Í#`çW®n>!˜DÈ�v¹™´}>Ïßå�¾6“ÃÎMðpaˆg¯³P
+p.—˜¤Úš\_b)õD#'{m«¿U½¦¨ƒåðiꮩW¹xº?Q‰gm]5O	xôm5ƒ�[yðԜõ1V—ýõ\WK’`©
<Aß¡/`!`ݗ˜íl¼ó|{§¤L^ÅD/º*xD~l¿û_|W©/ú2>ÌÏYŸórHø‘«±ij±µª•_0ú[=d¯‚q\]d{òÁã
_‚‹)ì$ó¼ø2ãfëX!@t‡vyQÓ÷蔔ãEq�ö˚@X„­kµþP6Œð¹ô}»ÒÚ±ß+˜C«¦™Ð|³_ŽŒœ³dm—·†#ºÞ®ÊÚ:AÀwr~KAÃ=‘G±�#S€¯‰ÁÃz‡ûñhTеÀ¾ËԚGöMβ2t¨f¡èNrn¤²;ÕÆôŒš±Ö·¿èhÀBU-¦gk¥$¹†§”‚€×¢–4ë¸ÅEҟü>‘‘qÜ÷›¼šô)ŸC#µ!E¯--	K¶0šÜ¿ã›­‹„U=2ɱ/«Eãiᐻ
x>Âw;ûiÖmì8í#uËÌ£`û¯dÄßØ%ÐïVPG
+Î'¥€™ÐB¢/¹<LŒ°Uò
+lNàÜ­¿ùƒÏp+Ù>«®­¤ø+@Wôo:BD)xªN¤ÑåT¢ïû½¬²ÞøQÁ-ô´ùæ¯NöZÐʕ§³5´‹0pÞL#R4aÚOùëˆPwÍó´˜õUði¦•Éš¥;SÍÒ
+FQ-œ\U 2·§ï¨Ö—Àf[˜/$!ò][§àwÞkmÌ(�aø©açͯûÊeW¥D$Î{ÍUÕºO¾íØV‡7ãqÊãÂ)¿¡{OžÀÝìu„±¿wLÞFÁv˒\½,iÜÜp‚øm«	pÍmœ²Îmð»@eSÐЛ­¶¼sä]—wˆŽBô¡õŽ¬R L:šÙ"ˆ„Cç°^õ¼^ BŽÝûj·‹.ã'¬ÃÝß[×¥”dÁ+É‹{à¬coÆßia³íö—¿ Ko{øw„³_Âä¶ðºBÄþ	¦zô:îø©iô ¢£©¬³È†ßŽG:?üuj•&Ù\L¸õõàe†’kÃ8tž[ùE¿/7~äœSŸÃ~Œ
BߟbÚmòÒÏ
‡·52>]ßîmt}«åÉí`y¹þ4øY�`P7Iô é9Ö[“6)�³'#]2ï¢Ë·×ÍÔÞ£	v­yêëæ@ÖY a?…p]ÍŽ{ÎÕ7:Àm\ËA0ʱp'ÝÈá‹
#¹jœêR{¸¾Mßj³oeé:Ól¿ï§üÔ»WjéÕdI{8[§OÑ`P!mï¥Þìc³¡V‘ú†±ØJˆàÿÁê¡ø~÷5&ÇN¸9úçùûQ”wee¶.ÃãjKfþvau$é—LÀiaÄê™ì¥÷›®÷MØ©sÖü9+Á¾ž¦ùC¹iI¨1ŒEɆnq×ôkåWlþ{Ò~Øìd¾ý1`j�˜¼Îïó�¤
ó-
+t¥Öf­‹GmqkÚÔnZ´Ø(Ïÿ¼þ±ŸQd³YìGlA{-$ŸS&æ[@]É
àè]W�GFLËíC&$ॖO}l<{Î<[x—7{óã<ËÉÛ©#˜a©	ƒàxN~Þ·hIÓXÑ*vü‰ùYŽt‚áùXʎëðÂl¼ÙÇL£8¢@ÿæï«K<ì`mÊÜ3ô9É¡#ŽUó× …f0-Ìû6õ{ú9Íÿ8léö’RrX¤�çuIÚ Jx“pqÌGcï ‹NÄL‚Ó7…Ò·¬ønxG†«í2L»=‰Í̙e9dÀŸeÅCª~l^À¹.՞ÔسÉM4?)'ÝB°u.mÅ´º—\ÓT¨ž±Ç½7ˆS øž¥Â8Õ¢»ÂXæ-Uþ~֕Š>ùÐB…E¡o˜ÌVdÜZÀ+&/59Ö\ŽuTD*‘vF7ØX»CÐÖ`Ë6·…Žy÷:UŽ`Ë@¨uðÔ<cž‹sÍ&ÊÖô>ßžlŒ^b-ôivV=Wc<~ö%tå·â§µÇzþld€·D+óæ2 Œ·¯±Øc~,8mÜ€qXf(Še œÏób["{«â°³«ýð¡8o”³~¿y‹úËF¸·±‚K=¢0¤œâcjƒ Õ"h®ûUPA±v6Ô³ç–t^ Ú,kE�ñozí5ŒW;j¢£öòhtñ¬’Ú¿÷&v/Ί²®&¥ðqíGvaÄ"ø’šžl¦º€@yÛ�×è‹ ¯
+ ^õp»éºO´ÖÑmÖªaÁÈÐsß9ª…ŽaƐØOl±¼À]ÇrÂ
bˆj±­cs|ó=íò.Yߟ;•Ê;<¶VÎ"¹ó!\l–­¸S÷×,ýÀn¯<sƯHÃûú)¸ÅöRX8ûÓ¨ðÛ;Ÿë	ç=Ÿœ#v¡Sw+d²ð%“2Z¾ÌÌçshv~«!Ê}E<Ë1ë�³tÃ;®úög'»‡je° ›ëšò¹ÂåÐÝÓb%¦ Š=éíùŒ4œÕO¯ˆ„Kç‘bŸp8\à0¤d~³zè0hþ È(‡¾E~ã»ËJÜ8?mÿzÏðçJï鱗:áÙbW…Áép`.ôµWž»ï	Èm…/ªC
ð±hp§me [s®^†_r:žU¾ 0&kÝêµQ
#Ç!ÆK	¬u¯þŕñþÄò	cϚߊð"ƒÖt¯óUŒòZ�púƒ€óŠ¹�Z¬@¥œ¹—×2yóç$zZI^è̙|À2ƒ7oè[:˜–;ƒ
+z¤é¶κ-û©@`Q0@oÛÞ.
+JûRX»)™�±úá
®j«[öD8FՊ�ŽaÜ3Œ$¶ƒ`Ðý’Dnc/Yà9e\;·=Ћ…û8.å®FÌMųršuù¥ˆõþZ×1ú”^5çØ^»
i¼»l½S/ӂ×VŽ·fͳß{™…™u½!Ÿµ+¼›xN8™–þà5!՛ÀVF@2]Eûk¢ ~^-f²¦4Uœ>&¿ŠüQ¯¬’A‘@òyýÙÊcÇaÖ#Ž
´¦G�äÕw$^ºmóP òP”²Rp ªð²b³ì,Eè›åå¦^FØÝÅDqCfÿüúÏ/0÷�_¡ÕRðß]8.ÒyÇÛ!ùí÷_ÿjñ{þûëI ãe<\"ÜïÿÆíӚÍ[
+�\ÀsN‚üW’Ñ}ÞnÎËW	¸­ÃueÐCaFrU´,sW¼ÿÔªx]²xöFyéÌ "vWBmV¹…\ 'LÍhóªKÃân0qà¸#óSe.ƒKŽu—"ÜîqZG 7ÞôŒWû‡ÊºvAŒ¥½¡Þ¶«dwè;uýíy›ˆ™V…ÁHí"1>ºâ°UŽ½4@‰Ù"Ðyºö¨†Ä°˜'SZ€ÝÜ¡'ŠY³Âc4ÓQ kƒ†BùàÔç‘UPÞó&½4ÿ†MžUÿ(êÍëÚæ2,Ãú¨nIm«"›ÝBÛ-wXy<x‡%ÐêKr4ï7§Ýñò@;µjEð�ƒ$eš3:þáÔÜ0b§vû9¶x¶|íÒÖÿé.›–8ƒ ÿ•½ÎwÏ$§Ds¹Ì=ˆ.QFd/þûTwW!!ÛÙwçé®z*1�®êŽ¹µN>·¦â(§]ÖÆ0²–HÍÐëž]ë&ìSB’>y†ÜŠ­IeÂ2ÉRe6Î\ün0R–½œz€ûƒÔãЌë4÷³Ùm€"{½ù°7Ì\	oE>_¡Vʜöq=ë’óVƆGófÂò!ÑTÚ-;ߪˆî9†©b=û¥¦ƒK	÷Ð�Q
бp)»…‚-DH;Ž˜ª_vVjþÙEYIµßŽÂÔå’R(œ×)¡ƒ0lÊXwü…ôÂüæûŇçÓÕÃíéá×ãÍóËáJgŸÎקç‡Ç‡³ëû›§ãǟÇÇ»¯7§ûÏW燷ºäË—|{y:ú¢÷øQéϐ!�¿æÂÉ%õ�…5üq&ø¯+ôßOŸt¨«Û7É·ó/áw9ïCU€t?eµ78‚
+¦6ƒƒÊ}”x€$a¾’œR»ð*ÙJe396Ìãþj ìÐïÃfh×ø�
+žÑôbŠÏ…b©ÄmÁ†ýjî®À7÷KKì@#œ‡!-ò†~ªF‘Ú†^sîªx‡
Œ”Çæ¤åý2AÞ^L5ò¨{‹£:smlE&ªù*¤Õ“K¯Héq¶á»ÓÔÝXˆˆªÑÎCŠm5pÖb\ËÑÇÔgøOìiLI*3Rã]uWáÜB;EYè›S³	iÌÄÅí|z$ÓÑÔ;òÀ,F'9N‰¥¯Îoâà/c»€Š¤I+»cíZ\:æbØèG1У´¹?ÎD¤ï‹ÚN‡OÝ­¼í~WÀ[q€’÷ô EY‚¦«þžœqÔg#’‰B|åZKšn±Ð®LÛ
r1¯¢bõ•ã
ҞÄ)5€ïà+ÔB–¨ÒZGÄT.I=l]Å@´‹·J¹p`ËhcÛn˜iÕ/
ðÐ(êcMræFöŲM·iYªVFœ`öÙÖ쥙4@Ä^eLŽ»®Â76|_ûƋØK÷â’$p]û
+“Ÿ…Ðhkqߕ™¶ç¶Ÿ²Á'殔}PåjQCÆÀÅçGdÍhì>*‹PÆ=H±6î�_VÃÊ%qTK¸2td®åNÑ\~‚:úYèČ~Ј“ØydyQŽ@f¯Öm
+
Â,O¶²Ãs65Ôf[…&8ðY»À�2Q¢ù8ÛµškÇ@±Åï%Þ_Y¢Ó·J­™Ù­ç¡šÕ
“»Ÿ ¿4údËHØ/­£ö[€�vÐ/
endstream
endobj
24 2 obj
23298 
endobj
25 2 obj
<< /Filter [ /FlateDecode ] /Length 26 2 R >> 
stream
+H‰tWË®]·
ý‚ûgR êêE‘í(M&E'ÒAgqë670<ÉßwQ\ÜÇFÚApBG[¢Ö‹ÛÚÚ÷kYŸ_ÞàÚՖx”Ç%nú@Ñü²®;‹clgqï5sk=¾{Éòtm¹¶n\Û¥Š=~E»\êS£÷Á
+tfy¯~–îKyª~55Özóµå{óçz͵Wþ|zÏ߯k­6¢8ñ©‘Åy©HË¢msn0¯µÅ²¬K×®…Ÿå¸`GÛY1»7è}ñ²Ãј(ŽË\”ížèE‡m^AÅçãõ…åÑWÝlm®í{‹ÛkƒÞÖ`Ñê÷ýšV/£Sò°íÚ\:.µ§’Ë»õ,úlµ\[MYv¶KðÙ,ⶣ
‡UceËÈ
¶_nìl›~žµ5÷Ìb«Š½7öuŽ¦ü½]¦›Õ9Î
P\®gí·´³Ø§jÑ ‚(Ê­;Ë£O®mèw›öVEáï[õûËN.8Á#‹â‰½¤ÜTÑø|,ų¹ñMt*Þ{å·ð‰Ù‹qØ(Æŝ®Í
Ðùm,û:”Û šäsík¬¦,¢U;‹³Pî{xþ¾
Ý\ۗY^köi,N04›½ì¾5Œ0v@–kmv#»št·
ÂxƒÀ÷{
+®ú×@­" yPȓjA»¯+n—íjג0‚¨PlâžE‘M&ªk!*Óä|LÑ:mƵT8q™–Eô¾6�Z?¬›‰ªW·C{M‡œ§Á§tœ+€Gu§·ÀÙT6|]ê‡Ê> ‡8œùÞ§8Ǔ	^œr²T©¢¶Æâ‘ñ,nß·˜ Ë#Ëc'èCOˆ8­t?»âA »=‹\Ï
‚­±+¨É•»Þ+UÇÙÓq((ïƒR#)§]÷:E‡Ø@³7Ë߯kŸpŠÌûëOL]§½Un`’[vhÂ~öúòÏÜnxàOÀ‡»=ÿpC+Cý�K‰ƒ·Çßß¾äÞâäd§/âK=I܆Y¼9+à;üæ\Ir—êChr¨Ä’KJFžO²g¸ªÚ¬Cç3 3´ºÈš·-îDʦRÚw¶Ì€3–ZËÏ㋐'þ<Ãg–}Ñà•ã —²•:H¡ûL‡8ç-FP®­
Ð~iU“4šÀÁ~º¢Ïô/4PwYðãÚþtEW§D´pªȽ{•»–­îµXôÔù(öÅ
ºàYjƒæ÷	h€x"åù›ŒE§,¬^Uë縍9|•ÿµ"Òqð^Lsº²îi÷P:"Àú,Wµ)\ëÆÀjµ3Ãà´O[î·-ÏFÅ+W´Ú3óNhÁA)ˆžàA;îë¥FIS¯¢ÞE²€>TÈ®ÔÕ•«z0Ÿ'�}¤ÓPÉÀùžOKíIz¸'ƒP3{9jeŠ€RÝ>uL®»ÝŽJó|ÒOé	Ö¯½ü0RÙ`|éÒò””ÆkNPˆÅiH·Ö×mÈ yÑûí‡NV´ç݁•Œ'o~ûaŸyèkeüÌyÙèҀ'œ-y­áù{©Dqš)E۝wd/‹’Q+‚o§–]§èÊ —ÔÐDÁ28&=Ç­s­¼±“wÕûUÃ4fFE\�ü‹ï`à/w	`¡$,BUž52ü¸ðë‡AQ¼#‰I18À$™‚,‰´ƒ°^¬ðŒÀQ¼ÝÚ$ãteGà-5¥6ÆåxcÙYs©ßG@JZX¼Ñ\43¸
+׎•"n˜Æ•VÃM¸!î}څ9ÂSÄÜbâ
+r¦]ì*эs>™!@ÚôHÛÁ€¥"A®Vk)­¿õ±/ý±Öñ¿ã‡xŽûÏÜXŸ~
+ÉԍWEÎK?Œ×Æ”́¹*Ÿ­´heŠ*Š+#ãÉ[¯äãðVÆ>G±Áîl¶"k'p¹€;]H9íøŽèTCÀ±3¡?¶Šœ&wÑô“FõîydGlwzD»ÖExå Ùò)b-Ǒ˜i3ö‡X¯îÄ´v&†wƒ	Ýf`:$Îg!+™Í<ÁSυøx%–ø,ˆµwSx…«NlHZ­¦¬,¢§±¾fÅ°ƒ q7œ`zJÏg7@cÇ¢PeŒ\£¦›®5›cŒvޓj<Rz*n¦V	Æì<ŽµüÞ è�„{W*êÚ(³g¬Ó&5<YԒTjI«ÿŽ¯8Vç͌¹.ŠMV	ð,väcTñ3×dZˆËô´D<H±CÒÀÿ'“‚‘¿ûñ›o?~úþýë§÷ÿùðö㯏? ôÕ·_?¾ùáÓÇ÷þõøꇟÞþòîOÿ~÷á}ûé§?ÿõã÷±ä/ÿwÉß~ýå].ú#þÎO°#8S‚DåóœÊ@·WÊñÊPÄPϟI1£¬{oNÌ<‹{¯²po@$†Š�vȁtÐË�Aô±4‹0{e‚ê3ihù¯Wöú<gfÍé3 MI…ž­f„ Ë±¥÷š(Ñxæ—n²'Á=ZÒ3rE}¦Ôœgovëïš	­qÏsX«1ؤ¿äˆalåB͉ôfŒa,ð2F…ÓÐ=!…¯—[ûêí&ñ^i8kÌF:_ÚgúúÊ9@r¢9e¤Ý∛ï
+WpßÞO:o¶dGÍZ†Ð™ÜÑècùRV8q«†*`ÏÓ»¦¶Dq%Ù,\ߪØ;Wê˜E¶qßB"!¯‚š==JYž(!"• VÎSw¥
 „±Xb {S¹ÓzÚoÓÀìÏ-eÞ±ºòX�蠗­Q/8i[¾œs²Ø,£à:H¢ß°þ›ûlƒÆ˜Žžö€j‘Íx ‘óLã@ŠÒ«Ãßv[EfK5찌l%Völ/w/.ËÚíÁ"…´d{Qlâ5ÍôÔ~O>ze°Èa&¦4‚Ï^+Oï¸A×22GN1˜‰”ýÚ4öQlR
+ÀSçEkôÇÀ›aÖ8Íy¢Úr0õ’¸*Ù=îÓ[qVoÎâHi[8ð æïG§hÏ»k©CÙn‚[óEÂ^2۝|¿Ç­„;ªÝœcóC§Öï×è^1‘ãY0¯Z®%NÊ﹋”b|ª­[	PnkTL ssZMÑ"¢˜coˆÆlEe`±Øi‹H,	ƒ{𪎣ÞDFöéåÛÞh®ÆHcÏäBߝN©tmªÎ‰D$·ÆÝ8ÌÍ2½›n'c™Qð@{ÜÃ`ö͑^ê—䫾Æá0Úrß)ܵ=ÿ˜Wä0г‘©1ñ‰}h֙aWf–Tᙆˆ¢/_•–ËO‚Û»Ó<=ܙÃ&IxßI•–4¾z†
+†’H흉Â^6=‘VÔ<è~ý/óÕ¶ÇqD¿`ÿa^P"÷ýòHÑ"E‚Ɋ†!“´%ƒK
+²ŸS]UÝ=³«†ŒÀX»{¶º¦º®§$Äå–捤¬/ÖëvšÇÅTiWØÑÆBg¥Ór!uˆÙSkŒª4éޕR§D(¼åÚÆpׄU§ÆÆ»ÕL#‚íÖk¦>8=¯¼£ø…ûÅ(œÖxëG[uô»"²È}©c›ª.!¾í³Ô\p¦Ÿ·BRoÂä~SĨV1âÚ:âi5c–;…Àž(3÷ÐÖ¤| .™.Ëe…wRÜ-X&«-']ãhÍ©¦hÑeͶX‚TgÑòFýW/(Ð
9…KoP™Éçpè;#§¬4X1˔ØÑR9ãèenZ t®³ÚMžQ1/ü²í%å
+›˜‘Qˆˆr¹‚!ƒ}O°t2Iwi^=hª“¼®¥JºC¬¬äMº¬N[²”+ˆIj(¥Ñr«••S§µ(S¼}ߛˆÓ»?ØOA9
h·øºÐÇÕ­=ðéeçì\v^í(üw~߂s~¹KËÉÃåü;üZû§§O¬ùñë›Ë—÷ûŸn¯åûã«_ÞÞrò·×oîÞ_=„šSüÜÝáe–;
9¿ŸŸî¦/ôÔ§øðkcgËÇ%,ϗï0Ë%éx¡m³R7v¶‘ëý
+l
ŒZìõîåï6ùv¿¿úí/½¢·á_Üíìò¾ƒ	Tjh,l“&PÛÇDJD£ñFBH飷³G¯
+ݸ*ÑÿGe/‹ØB¨+K3D‰/do€™AÝ{®]–¶¹˜ù΁YÆ<iuqÛÀ’óiIkZ¥uL`f8Ù¸¹ì1|2ñÍò哛Ë	Eq¹¸Ý¿»½»¹\~£ô^ö·—sZ+7nÛ¸Ç^ ÷4˜Àü` "™E2=òÜ<il–ÛiÝçT²³¨¦§³ž¶f:UÒº.Y&L5Ö
v!)®hW’àm‰r…ÑzB£o}Þ(DëfÉ°‘$,m°3	æ¡$Y®˜Ü¦Ö.7Ý»V•:‚9cô´øœ,'T%S—´óë÷–xói×%M—ô‚Ѷ§é®‡Ï&ôÐrsxoy6ß»Xù)LO‡ÕiK™µí‡šJa_€&cє.Ù÷aùªŒ¶GnEƒQÀü‰Ç;ˆ†dªø]½ä›è¿VÙ¡èõ%†|]Ö ;êßQ3%bõmôÒO<zÑ?bnó\ÁžÜ<fgÙåIéÀìTmÍe#ŠÂ‹ŽYõrÎoÎ×S`¡±òÉ0)Ôf§‚zÞ“uG”º£wÝҐCZ‹Ò–êÀõõ
+S¥‹ÔÔX9¹´: b¿‚¬�ó05î3Éö&Ö´ZSÀnÀ„ƃ¨9u¿›;µ¢ÏvÜCå=×TbòJD8%¦¬®õóOyȟ”ˆx”‡axy© ¡ fŠJ¯µ3yX#’
¶–ƒE3EêªfYëJ!aDk3þqlŒ¯qUáj–ædÒY¥½‹=µÆtÿÊ’¾K–Žmgç1“¿xõù*îè	{El„!P‹ʔÂ%î´<Rß-'°0Ø|3`g†lÀ^àÆ›wðü
È
+Êٌ	|­Öl@²€@Þœº,´^kë€?ˆ2EJùF1‡±dñì‡G`¥4M ÖDâ,¬àl­�´ †RD¶f$Heéz“¤Tjl–9¢!˜¼`&0*h· ǍÝz¿‘EY"0vV
+0yKë³,¬%
+XyE7`»B¶Çd\WEkJ¦5žŒ&mbbUK’žamr…]S|e(Ôd3ƒÙW¿)
+¾ê2;àD¶lD‘J5oÏ;°ŸÎÊ¿(²ÑU/\ª2£Àµj îÒÁqAq+k‰ôÓð�‰
+)•HýÇ$_õ¡Âð⧲)£ªÆnA4BïÂP 0’¶dµ�9éÅ/¾›å¢²ÎžI‰V$ûFÖȬl MGBÆy†ýê|K¹ÖŸ#3¥	¤ZLµ÷…-Ã†`*ShcÒäô˜ûÔDFHíF
ÅÐfHZ}åbž@ÇàÅn
SÊ$¿–q`®º‚Ê‘ã4ÂÇ£rnl£Ò¨ì].º0ƒªÀ“õÇ´úã(Œš¬Î­eiö…pãß½•³Ò7’z;8«
Æ®0íEö@ëŠKTJç±=ßǔ¢©¡‚—¤Š³©\ŸHÃÙn
þB`²Âujæº�hL¬ÈÀ@äÍFÖêì˜Õ}o‹hûCîÉÛ²‘I.ÜÈ&‘2ÅmðÞUTևœ¹¹Ä1"6àÅNGÏVvš]WÚÌ#ˆ&d–¯ð÷bg(±ínáАAÄKð‹¡ïŽ5*.Ó	ŸîìòtqËÇÖIh¦¶vîßw¿‚mŽì¥ëÝËÝ«]]N.çßáÓ2ïǯo._Þﺽ–~y{#Èɳ×ûw¸×C˜xŠ¿ó»»ö2Ë7°Ë�™†fO¦•öÅ “Зlè-0VзÏ_㔥+áu~/OñáW@—°<_¾ÿÁ,—ôŒ-5*®ZšõèA®„`å
&| ×ÀÛ&‰r¬<5Ð;¬m…ͧu=² /›ÈKž”qGà•×-]î(¸¨¦L×ÂM)`•Š·]íQ¡«½†eª®ØÈÝüýöp{¹šj¹òӒôb´•ZÛDUð‚5TÔkªy%íLm#kÒ: µ€Ïwœhz8¯„ª³QٔÃʂŠÝÞYº_lÖ{èRñ‰Ò;yüpùòå‡÷oo~YN^R¹<¾¾º¹üÇëož|ÅEsò÷OŠ|{ÿN*ëäôÙ³£bÏ_¸xóíí㫟oßÏUøàG»œ¾ãàúêFÙqŒ\¯ƒÚú6¨1‘@›ªwü€®Zœ…[ñVI ÐÖʾÙú	ßÒ8ÀŒZKcÂëÝZï�Õ
+MñC¦UÄ-³^jh³veEEE·y–ž®=ôúâ¿Eøôÿáӟ?\½_˜Zµö>CÁžZ·³ÿUÖ¿£}+þÏ-ýÏ+üÏ-ûÏ.ú?[ɏωnŚ ñæf2ˆ"â.áuÁÂñÎYŽ'í˜ø7ÁtypÇëU†GLYÍã…˜£:
mx³V›3oR݂jFœ[ÉR$Ú
+8kÀقÏÖv­ó½}@AíÌ£’ïOa7zÌeü¢ÜHO†Š¿)‹¶JD7ÁäZ·9ÌDk¨+L1‹;ZÏøY)y&Áît½ˆÌö­AYzl€†•Ö	œèlkW:ßêÐâDa}ޓËrŸÅ‰1[9¹;±O³”=¨Ó½ìƒ ‡e‚É3ÊÜ{¦ƒd"ê܊;Œû:¢D³VbGŽ¨ÿlAً%cüJ–Vƒœ4ÃEëÎx¶¶kïuèucnn´¾“eq#Õ2ÜXaÀpc-é0¶
+f»‘	'˜·‡"/:yƒÑ¢w®o$ŒÒm‹áFU2Ã,š‰üøv’jâZ–6)üJéÀæÇwt6´«œotx{q ƒÆ[ãí©U6û‡%,yÿÖ@¥žªøÖo'˜×7Wš,ÌY–][¥¤*0j8³VZk\ih؅²ÁW|Ê+YZ½ÛhÀقÏÖv­ó½}°öb.ôÖ*¸y±ÊÂD±{1§ÔhV}äi<ó¦C®¶e‚É	–†TaJ–³‹+
+%™>«;Œû†ÀkQ×JžùïÕ²c×q¿àþÃِHè'»{9Ç@�	H–WA,)ÙXqÇŸ"Yì{Ό¼õ�ÒÌÔ=ÃC²ÙUEŒãœÁ½‹ô”Ûõم¥È§óõ^2Øð9Ûõ\×ó\»hŠ‚óo¡Ï.ÕoºvóÞÆ"â*¶ÚëmÌà!7'„µ5õM³18h¼X. ‘[ëlã†Qp/^Ďª¯­-Å0zô.`š“u÷ô,Lќc\£ÞÁK>g»£žëzރh£ÉpjC{×T×ÙFf´QÅf·Q椎µÅ+=0ú-å;꯱'õôÒ¸€Ê92í /0ʕÄ&FP»D’£ÿ-ÀÄ=®s^Ÿ…þªÝ¹ÝØåýžSÝ!O5=«þÚ?ÿVM¡½J†ø½ß÷þ隀Á|6¬":Áô'mipSFwÏp+4?(ík± šã5Oþ?ÎlÐ;AÖ+xysÖÚ*רwð’Á	¾g»£žëzރhãR¡Ñ)w›¸Ìì`vûÉmKNÓ	Ø%Ú¸pp'ØŵM[‰“]¼c ž^ù£Þ!uç ÚˆÜžCK`ƒÞE,3`£ë³ú
+ÈÅ5ê¼dp‚w²;蹪çÐ&f[[w'¹¾ØºŠNú¦êj%Íçâ•eÕµe…ðԉjށ3ó;˛VJ܅>r=Þˆg]íú,H=åZ®Qï`d²0œv£‰¨*®|É`ƒ`g{~öTî=êóüöúðû,¡ÿïçŸvÐw7»öïïøß>ÝäxùêøðÃíåç_~ú|è+‹òŸWö$Nÿßo/ ¿¥Õ֒M§ý0¾{´/âü_˜ö×íEúí¯Òò×?øž_û¯wÄV®O~ûý<ÿZã/÷»žûÍÿ€`¼óñ~øÆ<Ïæ„;j¨†^×
+¥q£Þ>¤'cð½‘É›éf¼v¿Û ¯Îm³ÃÏt›ìº›{Ý¿՛‰ú,õxk\{¤RÅx #šÚ$›ñð;�“ôåàªEŽGPb#�ɚãyKXZ!û×Þ<DÓ°3D/™®ÏŒ©e�õ°R`\Í߁¤[…auCh´ ‹{º‰÷(ôs§kžMYÞÓ­$Ne#s#o	£9äãÙ]K±Û²Tà>…aÑt©¥ºïKEš‡ÅP×Xnª{‹€C³˜ýF
“ÛíŠ��kW5YSwUþ+&
+âa¶±c3d�©•+o•2ýýpYl.K͞†©6žôƒÍÅ&º:Õ[2m“|D.kMêÒôÈIËIœ2øɁö9KãèÐi_å¦vÔ
¼þْè¬R}\Ÿº×xvÐöà$«[mym^`ì*\ÚB—0£k/œÐŽùèI³»¸`#Nr5LVÏy8ãY¹Ž¦•ÙÞ\§«E#kq‘Z-ò³»«ºßh~36D?ˆßòÄp;ª®€1ï0ež!YÁ8Ì¥_	C·3X|D™ÙÁ™òe1L`¶ÌlG¬‹3–d4ÆÅaƒ’ýu–Á59CM·çµÚdÅ°æƒqÑÔåR~#2Î¥óþImžÈM|@0x.Åö`¦mÀE_ªä•¨¯³K$;Ô»†Â9ËÙÝÞ¿f9<©^]Š1֐띫Ã*°	®r‡Ý9¯b\g¶˜\(‹o7KÆЈ
FV–Q1*²M|«Â¨¸}nsV–‹d³g@;§•¼ÝO³Ee’ËaÄÊ£3zÌ2ÏmºrT±URÃäNqp›\mYsPÒÚóm†]}q–”ë
«•ÙõW£ÏÚ“c‘µ©ï6¬ÿ{úGð¨¾lL'׸gô¥c H!-»Â§W“¸~MÜ*ÏÂu½_6­pÌê’éïÛ(ÅÁT‹›µãgú‰¨³É … 9-Y�qéðÔp.jì
–±‚TzMo‘1”p‘œ¦1ìŽüž!VʧekÊTÎÌÌB†ÄòC'« ²½[Fls³OÂ-	÷Ï5ZöÚpŠ.«°înӉ‡‹þ~ÀUÐ5C†W`wþG>›û lÃïâ3Ô®Ü0„Ip¯í•Ã—iªdËZö‰P+²†88@a¦œªt8ñ¶ª3mÝ}f†ÞëZ·å‡¡2YÀqÀè¸SR_³vúƋ2×;Ha;éÁðêáNÏbÒª¯6s»ôg¥A3óôȶ•âQ÷»ÐhZ‰ÕùE{6ø¤¶°ºòIYîˆÒ±ðÈ,â[X†8SîØ•J>²3Xq	§ÅáÃÙK�yƽ�ØSÛ÷–BK,ɪ1éËÍŒç¢`?;„GœÐkcçÒfDÀûBâ
+îӐ÷NxÛî‹P«U¸^aWÈ&Ý©¹Ë¸ªóoM#žu;£¤b
+BPd¹
N½Œ­ÎiGa£<2»B`Y¬Ç)%#ÞÇÛԔ¯O¢¸IEzZ½wE)Ò}„F¾°-¨*òy?€]ÏÎ]MÊA±Åï0ô€E½ªñ˜R—¬ nKѐZÈ:5BKí1rèñ,ž€’ðXF1ޞ:Çkw5[á'Øk&€9E²“>ê›ãñs!ƒˆßi´®0.ÜMïQؓưcxM¬½JýBQqï¥0Ö¬mO¤s•˜­
VŒ.ÆÍÓ½,´.å.´³Lh|7zEf£…±nv†�K+]q&=ÛZã—•Êà½[Å\[c2y›2y
+]èµpnf?¾Ú€è"Ø"a7"OþS¦±£XJÔ~–*]Ƀ�t10ò¨„4¯ ?)Ò	»eQFªºÊz‹ÝD({u¥)½J‚ÖÓð�C7_sqöÂ!ä`j&õ:'=Ëæϑ
+÷WúúQ÷|aR…Ü„5ÈèÚќY¿‚äd4–œàvA÷Þ<­á㩽ÏŸ¶;x=€8™G¦’ã¸O¡?ªÐž``‚]WÈ™e÷;âî!6ž9&áQK¬L=ùÝ]{´Æ69±›ìÃM­5@Ú<ÜÒ*ÛØüš‹Ò: {e.b¾óYÔ\Bs5ó ÜCY�HW„Lz²M‰9çƒîþKãsº©‹ì
ÅNÆÞ�gÁUŒÃµ†+X%XÞ@½ Ÿ€Í7ïnùxø×
×TkRJÂ'ð_öìšè/º(â#ÇÔã~øۍ6«öæ«Ú,ÔìS÷-ÅuÊ*îìô=)ëà
òiÊ&ªàã-`#¢¬{½¦½mµ¯¡—~V?„ž`¶“ŸìºƒÀÿ¢¨i.ú[҂ïõ´^ü
v§¿<Õþ9}`n\
+ô½ö“×euƒ~D°?Í8ôô¬™|óÔqÙºà2ÙÝýp´¤»©ßA†¬“-wƐ3ÙÓ³÷²ÇW[ðÑ쥍HcOUð"ð…õ´L@åú¦Óžïì©zù!öjH®dº3IíûŸY²€ÿ%ç+¾S©úx» y3ò;¨õô<‚åc”–S_Ðaèuä½Î,ۉ´OdÔFîTȖ™+xÉêw7¼~?g×k«UÁÊqí
+A?',Fë¿ö½Ä-ñ)ê	<gp‚ñZ1ßf«YJQöˆã5×­5Øõ³·¬ýꍮ!œ%­·°;d©UcªRšOÁKbwø~¶Cú\O†àÙÀè¾»­ãå«ãן^<ü1§¿þ៟þò뗟~ù™¿ûùÿ'»ZV,ˍàÔ?Ǜ½h#)•züÀ,Æ`ol3eÆ0¼hÿ½#22O˜¦¡n\]Tf<~þw"¿ûëßG_ÿùöëÏ?þžmŒÿ_{û†íõç76qgûšúö2cáS°»šùŒlyØÍíՉâß×ÿâÃñÇ¿�ýöš¯?½þööú'wÿKPÆxõ%y $B ‚hÜAN’ÀÛg‚S(p¬SyJêŒþµ12;ZŸ©€ð±3³Õî#U
†#ÌræÌ´ªED\»[yŽ
+gƚ˜ÜÉl–í±Â‰î2-©–¨XÓµ&¹]!%a¯<×M*ì2(´‹£°+œn&˜¿žàI†ÞArŒè±ô]]z‡Õ¦LKËó÷ˆf™ø_gþ~üajÄá'':¼ž5îømW>õæ²Ãa]µÁ¢f…!µ'@Ü[Ä­Ñ&öŸ']DÇ5ÚªfO–Ý®àí·Öšu¯$yG‚a
ˆ9çë=åÈ×¼rÏc‰ç6‰?ƒ(tMÜØB°pîW�ãˆ×²äÃÓMâb۞ióãxXb©‚û]>¿ D³4†È\6€¤Óñ<îÀ….PjÊ)4zܬUÚ ¾@8ènIÞXë;h¶ãŠÎéù¬h’�-*àó˜À}ž4f°´0Š·”Ï£Úéîn¸‚ÙŸPkQº'–Õ‚™À=4<�÷9Å$d²Zøtê¢Ù"õúÎ×B±fl@â]ããv¼§¬aSc€Òù±Àv-¥rº= ¥{˜77@gô’¿Þ%€8뾉M˜¿ç
²	BhöÈ¥#å`ôÕr¡¸Ø<am:u±ù “"aÌwÉÐã·ûýx—Àä!Ì櫊â÷õþÙC�?Ù~}Ieö¨~+ý†Ç‡^• hâvov¥íaÕ 7ŏ·y$û}	_~ç“·‚
+¦W`‰0tîÍøԑóø(#÷hOP½_:üaÌ:½?^ì-Á»çZÆ;ÓQáð…j�œ©íž,„¥»kå¹ê`fy‡@XºÌ¬š²—=¿1,©ÀafjCàÜk€%S`ïçÃàÏ©ë󏃢¢z{4Eu$÷ [º‰™¡».ë&´(âå¢@´t4
+zÉU­W÷££cƒKÃzÓþ¥„prE€Øô$èGÖ»³=ˑ“ZΟßVk·ÅüÑ;¯²ä=ÑÑ·òŸﺒ,î-ïOMfæO P›€€ÆU@ˆþ˜CdÕ·ô›¶]iÊΨª¶d[ÿ”[Ù)×2’´e^ðÏ KP¬å[-W€‘~ª„óˆ­ìq„¬ëˆ²�4Úõ¶+#îÕ­‡›ÃBð„”ÕåúNi8kØS‚ìV*Β›â³NÐ
À6OMÀÛÓÚ=/€Ê)®.F×z÷ØR¼"ÀËn<©·ŸžÝ<¯Êo±Ý¶tØRñ¤¥Æ†àOZ¡:ÀÙ.Ë »E;G˜Ÿ<“h·×ñӬ˲ì#/xï#íèE¼^‚á+õ5ý®Î³)4Œ'v]mº@Ï jåei¤z~Ò³ô\«ëõ×žk…à‘M‹XÆoçJþä×ö##8sØÀa>ӗב¢m£`îÅ@<ßÛˋl¡6ñ֜
ˆ"-볶WvGŽ0Ý[7Á›‰#Ϗú„?>›j
+Ù8šfHüy
+`§¥ï.±ÀùV�˜,ß`Ž0Í�Á[þ\@¾ÒìÞsÆaé÷o<l<"x×ËöCjoàŠæ$ÕfZÛ
jê	ʟCÑ�²v&Q†‡=ZtemØËéåÎ:87à±IîÒ8›¹Ao±Á~H0L±= ·•�^QBÀkÜ[ku�íÞ§,Ìf‚
Æs‡PÕ8fUg,£eàÚJхu‚qkVÝ!ŸeçiâYÀæM™:vHü„y8€eÝKÖFρÝé	fDÉÐ֖`û¹@P=Ë
+çy×kŃðʶìUrb!^ø±±€Ãå„ÍÜf³0#âÑ¢¹ŒYt Þ·Êꖊ]Z¿€Ÿ†ek!m¾V)ƒj¬W.ä,ú
9bÑåኩ¥áѾÄkwJC5‹³P<Â6[%!x½X‹¹DÒ	Ú5âþ#ý´J“8À]žp™(æÙ OpUB€’¬@»³Â*°Z–pìQÉÑú5a³lžµ:O	�+ÌE�IÍ<{îÔņë Ⱥ7ÒfzÉ à±lgo¤Ž<A„èkOZ¡^C=sxŸ
¬^cÔZütT¿~€kû'°6Ø}æ“òÐaÜ<HS°�<Ó¤?
�CÕ·èadvsŠ¢˜q+áá§Ø%ÔW,="֞ۢåœ\E$¸TDw
•6°“Œ
Žú׆zÆÑ)ÍfÒ檫M-Cï†ü魑çì…2<îù„¼à¯Æ?ÈdPÐÇ×ßʦ“y1 h+Tä—79õ"À®ÔöE”?oOŸ4¤´º2°È¦1MýÑI_]³C!ižf÷̵s§÷-³;HÂhPWßi6ãW¾}G†Íëe}Êé™ÌzëÝZzªÖÛÎ`à\þ«÷.S7+Õ`¥í|>„”o²ZȚ½Du—'Šª¦PÞmòD{œG°W¸¶P'Ì«LVœ0»NjÕ„—	uÉ,W¨µájn1ÚÁ©4XMÝqi‘{Ú
+Ü|OEé
+4²¢cÎ26WYyE€ ¼«V
+öžÎ^˜ÅX+O`åµ�ŽbêYR~:º*§‚w‘½Ž…Á¹"„6­D×o
îaž)gÔ½¥(Ž¤†ÒÝÅ>§T»F
ÉÄ{ÚxjÐ5ºà4ߺp–Ó%lö‘xTÄ¿Û>¼]\n—ÞA¯ü±Ö3¦›ÆRYà‘¯Å`ÀÞ3¬õlÞ+
+š¤õiYÑ}%UG¶xÏAºgƒ[Æ#Þ³åkÁZªÕNþFoô™æ•¹§ߙ*FJi?P›ÀhÊpX\Áf”“ÙO1"2UÊ}g¤x%l¼—³J—Zu'HçC‘â&{>b…ÛÞ¡ÁhCpÞHR?̍÷•µHäÏ䙙ZE%˒‹"§¬òL‹gÑè¯=ó�)×Òގ@ØW<˜Òµ÷<€Í˜–1ׂ§¦óµ1V®l<1ýžækw
}Os„¥Ó«Ìú¡•¸ªŸB“ìÕ3‰µ¡‘Û¡TCà6©®HƒÌÐ7fö0…×+5V¿²GÖÉÌ8ɺìplÁ™Ûò¸”¬‰!ù|dKðŽ-<Èè‚~žìT­ íž¬·I$ìAˆÆA³éØ,6ࡋÐP-Z|D)ÕZ†­xƒ1Ë°…RŽáRíÚ ·‰AÎa@Ø%gjâÿ×Ã÷·ïß¾ûáþ£‘I1˜èÐSܟSMчüa˜ÖBСØï~ÈÏbȨûK~Aҙ.A`<Vf&yŸØ‰cá
+ý_µHcX4œ)‰Îa´\ýjÅñS¼Í¿>mqÙ³=	=Ý
M2”(^ºì{,Ôçxg‹ÃÐ_àäñåÞáx{–<¨1”Q‰÷§D0ÈW_ôÞê2pÃ/yÛ4¤°k”©…èÊU;06Ýð~øÂù;5ôݹÃò4$ò°h8X6©v°,<çM»«¡†Íâu:jŒ÷” ÿñ^¶-{Uþù÷!mgfÏÌÞ[?¥)‚Š(Vi@DBlÄÄ"%ÿÞµßæ܉H¡Ø’öÉ~Ι3/{Öµ–Ÿø5D33¯Ÿy4Ÿg7×*Øí‘V&NÔ))[Ï’¾.l~-‰h˜œÊR¶âáj3€9»­àO\–
àùfP«h³-˜mkrƒyÎK›¤éFx©¡Á˜›š+Gþä¯vW>úîý—¯¾yÿêŸo^¼ûpû9J¿xrûü«÷ï^½ùÛíñWß½xûò‹¼|óíï_¼ÿîW_>¹ýÔùÍ}äÞ¾Œ‡~?qEü&N²+¨æqÍù"}šÅåí×}®¡É_[F³8˜×=%y
±sp2¹C2’1’»ø†ˆo-ÚÂrKm›yë'I)³÷Ókr´zn»Š†@Òvy94?u7¡¬ÙëÀQÊùÁ+®=¢?æ>§®,3‰4Œ»Ü‡;¦Êr·20°7k¯KÌ£´Tœ”¦yX«p(4Í#¦ïWºÃNÝ5í!•_f]äø4:I«1Tµ_“è+Bl¥™§(.q-0FIãˆ‘ðVûnˆMž/q“AÉ~¤Ýé¾å:ŒOqs ·»kh¿ǞšEºç½ŽÆX|s¼šð¤ù­3"K¿
+Pjˆ])tK‹› mª$þ^f—úE›ºÍñ§§è\Y#‹›øN&I~zH¹Yï‘5Ï¡H,ž-¬¨¸åÏÎMcàp†AsƒËý϶L#½TÆ/’mš»²kن۔,܎9ÆÅÍ4ÃEÙU„÷»­P^å¤g@ƊmIxÞ³Åèt–ì¬-—¸Ù/º÷zÓ-]Ȋðc7KvH¬NwlÐ5¸O°MÔK;µºy|„°ñyO™îAµSãVoê’ô-÷û´ìœZ¢�jßÅwKœÚ‚)R92›‡Ÿ¨¢3ÔÑ`ÄïƒÛÃ=Ñàž$3îŽxʚòTÑÛ|ÇK5Ó³Âk)v¿>¸h„lªÖPsØ³¥?€Š§ÿSTü	ôöøÉíù׏Úíé[ûþ<ÿþÑ¿ð¿ß=ú1¦®Ýðˆÿûüþòküðw”¾¿ÍÛooþK»}k_øCÅ·O­ßßƒm߃M߃-ßC
ßCíރÍރ­ÞƒÞ¶y6yÿ‹g·Rï.%a¡f±¦Ý͹Dìoèó»K™ë’5c¶¾Ñ¯³Õ†½â+ûr5ƒ8wÚ{+¦Ë·ï³†"NjwªV!»t‡ÒzI¾°ç\(¥Ãáœ('ÕF+øÉÔgº·è)º„ÃH:ú²Háͺ(:!´]o¯ :ÂTáj“MÁ¡V¤ÞìÉîp™YÔÖS,P†+ì),2$ŸœèNT@—4°i7y×
+`”G˜Eˆæ]ƒ¿r%lŠ‹uÇ]³¹å�(‹eÌ[êÙÕåJ(‹»•†wràÕVø„aŸÏ†š£)7³Ü®YGY|<Ò<J“ší€¤£l5+ì<‡ÓA×\+h‹8ôÒ}ÌÏÒ³ŒљØmæt[36,Uˆ{Z6ØFÉýnR[iFì¸fÙC²ó®6 ^åùTÊvÌÝR\§x*ni%Éú=TǤeR«ÍHõyŠyÖ±3T6@Ë¥Á	û…âÞe©ÇbÉ¢zΊ=y‘@ÍÕÚúēsa~Pf{a“!ûT
°C³
fMg=;$OQò¬H±‰Ø
¡ëý€CeêÑ5(¢	­]ƒ"vŒ4¦2ç@‚/¾ìžÔì®în¿zn!ŠðZq;ÌFu³á Ö\k…u0b]Ógöô¢&”,çós‰è86lö”¸´x«­ò"¸‡nR-óœ0¾¹ì5œìÌ
œù±Ñ̼ïQEå4´«l4¶òÐLPÓ$4‹>Á*º@£ègU@­¼¼beÙp®P`Nkd­¥ó°%¥¦ö>ë†*S±}V¦æ"E]’Î
Ä=ü¥É\K³î˜™Èn!ÈÑw2uq2á‘C&L†‚LŒN2¡a:§;,U±œzmʸeŽßõބï‡L¼FÐô„—p&îË^õžÖÞß)UÀM¥Ø¥9O’hˆGÁ&d’
+«›`çùÌ §i5?C5ƒÁábìÎ7>ÓÒ´6ºèoÞ<zI˜žl3!-âh‹'m‹‘³öugîj†oAqí Ú`¯YÂ(®¬šk­Zs±1ٙ:RY{äREŒŸNP͌ÞæŒ
+hÍ^ҜW͐%qU­‚oÈ"¾X2’N42¹ÔâY»)³üeÛášÍʃ‚Vöˆ&]°Â”bWÒl ϯPËÙËÎ
+•$”|­g—hóV±› ÖbÅgùþœÅ†e:W«š ¥uÛ»À‹xñtÁ
+3:	UÏÎË2¼FÖUÈk£”½Q‚C3è†ëÅìÊfy‚S®m‚<ØÄì(ۜ™]Z;Œ‚"X
+ïÅp^‘'HÜȎ>vpà­¨”»è1Jo{%ªË¦Y9Îۈc½QÅEuÞ¼ÿ£¸Úw+û°‘š+}‘ï�Ø¢ÊÇ°ÞãšÀŽr³
+TsU6ÕpÚ­àښÃ,CûK›ÞŶo5ï²üÙaÒYUo;lâ#Íè²¼´èç½Kڛ…']²*«¬).ˆ¯D°;sEYé~!T»bMw}[Îç­¸V%ÛՋŽ‹nQ)ye©È•žû…–Ö×4!œZhH¢ÉAE�#ÅøÊ6À5‡ü€ïù±Ù†:JÊÜ̺ÏM˜pړïàÙ08áƒÓ ËRÃòÞÇp²PI	'Y8˜×YÎ9ÊekŒå2#	9^Ã/B&2$®W¾KµU¥Ì(	N6Áe2Äb°¼.¶9ќB™[Ìi%¤}È2<·Ø‹–Upùà Ӊ]ÐÇNdÒûټG:NÀ¼õa#ù¼€&-äèBï1®Ô.ܼҢvqe“k*:—Û,²åÝA–ê+%Ín™%l™;ç@㞚ÅD›ä³MÜ­†§(4wUËöEFpzÜ
+qõ(õžóî"'—Àà+øM?璮UÏî’GPH=ۏ.Ixe]`S·ÆºE£(ºÜ]˜(Jºø­æâŸ÷q¹Óð¯ì�³};³TjC3
7Ö(ºËx–ïGg{¼Iõ1v›!‚L©Ƚv¬Ÿ€ŸMÅŠ½ Y*AŠ_ÕPÍ%”lU1É:TÊ{[¾—&¿x]ŠBmïZÖ(c;¬Žô8X‰…îÈ·µJ\üYÏr?Ó,Àsj!Ñ	@ë¢âpýGyn:ÏF¶AñèÜý�Ju‚6õÓB·ln5@[ÎpôÕì½`¬ŽèÁ>û]âè»cõ%¾cÈoýçvLQp¶Þ牡m§‚YTp|V4¹&ߦ·„Z„ã‹'›ýPà"ïNŠ[³yªmÉ*"PkNH˜5ú7éïu…‚à^¶œŠStYégPX™$ÊàƒäÌËÎì*râ* Á7jÜ»ž÷±¥;Õ¹£æÚ=ÚA-YæÈ"dº‡+^h	¯FÁô~Ì>’9U‹2f
+’H¶#|µ	[2ÔaÓíw͸DB‘yÄTpÅ^g9̧—-äs×àˆ"ÓI<#.!ЙÞÅu6ge֒
+6DÁ)`¹—	jg.ré+¤¬=“‘fØ0|4½KFQ„¡-î_YAâ»(Cüz
káÇ4z«Q£ùJ—Ç1*ΈVí
+lÿ¦»êZí:nè/8ÿá¼lh“ù–¦}r®1„<$4-ñ[pbÓŠ\Cñ¿Ï’–4ûº$ì{®îìٍ´>„:ÎûLºd°å»HàÉuh¤ÅþÕÕr-(MTIkSj§ë£_¬è×늮Íã· ôY	îtdS…üÓaÎlJ'+á�yPgpU
^GPÕÜXÍ”ÛXAKcí\Ý6‚–² 0ӑÔÔm]¼†[¬K¨›ªZ.…dv`))öBďkp¼‚¹Qâò\=ߪE‰ëjÀ“Ä$ÚÓÅhՓ­öä•#.@‡Á m_w@f·`
+›áb…ëNk£lg]
+ŒŒB¼¨Ö’Ò.”ºÓoÀÔ.ñv-y…!k†1òR2hÈK_TCé,§{
+#ð6	uZ
s¡ðhAa…jc=Rê¤.�פ®ðçKD]dæRÃÅ*€Vê	:‰Áθ€ut»/ªcdŸ^±
+H•m…+;ÂĞ/N86¦áTÀ–¡—r¬"æ®_†J?éÂn˜ÉL
0ê¶Á®	ëˁДáhëªÛnµ "‘HêŠ^q
+ŽjtÈ ¥‘˜´«Rí—�e«ÚÒâî¼ä¾”Á:Z¯ÚÒ ºóþ„+³`¿êɃm59ôZ&ïxÅzÕp´ö0«¶²“—&õÑó¼$˜ÖÁaNÄØ2Ø¡¬ÝÉÛD~В³Fk OAK˜=£%YÆU]Õø7Ò?§%à´Óo°é¤%	€ç{g¨´’˜n¶ÍZ+§’«ö8¤�°ýÁ@èÀv
t2r«É*ƒµ™q=JÿsE¡”Œ´9ôÿðÂ싧#h	÷Õ#Û®´E@9ÀG
+Ýéi–zv´9¸åB¬ä„2¼›*Úð¬³Ë€=p—×™5<Ô1k€9uHÙÆÑ;„Zem_fQºK5Õ3fà€d¥]'1fÁ>Ž2‡V[Kªêù¦@)¹Ô“Ój•rÑz
Jšcœ¥s¤S*	çuÆí"N_S’?âTkHîšVQFªì}Y½Ug„KYa|²‘{rhNƒyà?{ÖÎFÇ
b^Ê	é‡TØ+-‘œ@­‡&Õô‘®ÈA+ìÓ8-¨»>Z™-¸¥Åµ|U3p¤4z2cx-7‰	ða–Ð	J“w€Â€”S–¬pKj+7€0Jc:�jceõÊ�ÁÊ&À˜ïr¡Rx#›*×ÚX
+/°3ær݂rjhlÛÛ +­ºAǤ2‡�àòXAk‹lŸÀDú¾˜Ýž6I«f<µ§Ü§„w?TSY¸SÆ¢ôä¯S$­,ÜÄ¡÷CòŠƒ¬ëH	$ÜÄ,Œvkq/%*`0°ÚÞG™HÑIÈH
eÖB(¥ÁŒ«&Ø‘:‰Åo;@Ÿ5†g¸ŠËãj|%´àŽ
œîrƒ1CŸ×¶be7£éè:tfBô³íq=.´A¦wV¤†o™{$Tºô•IŒ$&'ŸÏ‰É¨ª›0_äULÙ+G÷ÅÑÍÉJºG¼T¤d&«9'Àµ‘9Tƒ}.J0‘ž¼¿óéâ7i,QZn	dÞAÈûzœ7YQ>	1kü7ü
ä"܋á1›ÊÁƒÙHÐ%$B	WeŒ ©q
+Óa®#2ñÞYœ(0B— E;O`BZ=ÊÉÇ7€Ä˜—ÊéË=æL÷ÞÔ3p†o§K…ÚY3
+"›\	ô3m¨;”çJ‘SãZ$ê$„ûj”¹]Z63GĹ¢í‘¹̧èº2˜Mèº!e´h8…I‚Ž›3hA÷秫Çß=Ù)tWPxp‚²{Ø£Lªf8†ßˆ1\•­]é�EW1O•¼:žILë8˖žh\ÌH_ëúϗ̓Í/ʘÇT»N»Œ{•½®¢åPÚÌJ²‚+Á++ƒ¢riƒ0‹ »r�J
¯±Ž¶PÑ裥:ÏZ½;Ìw35kzϩ͏jå¹öbarƒÞ85ª½¦«½ä|ɹW?œEéëªÁp݊¹]Á¢ØÕËì>kÈCHäƱ‡¼¨Gï›H®§@õ"¶Šo½œ E#nézúԁSÙ¤j„mÜwÏFwÇ8[2õÀÉÒy“l×Ùáp$t!8àpf{y{òã—Ï?||ñîçï~}ÿúçûßzúüÙýËï?~x÷þß÷§ßÿòú··_ýçíû7ß½þøË×/žÝÿbK¾ùÓ%ÿüôÛ[.ú;þÝþu+w@¾ÿ{õ	¿àǛۺ?}võÃíéó7¿þôönÏÝ}‡ÿ>ó•¾WßݞÀ.65É?uõ/òâÁ?Ÿñ³�Ïçö¤üùMôÇxŸÛ“üvönŸ¯üê¥~öÄãõþîùÿ‡-÷ooÆ:ۘ‡PcB»²bHÌoû
ÿƒËýxb·íLéÙÖþ ¡	qdÏ5FœÕàìÕó(v‰b!÷ÿy—�#&é[(K¿£Ž°R£}t¬[–¶
+:«)3hP1D!cÃÁµfÐbÜ;Xasiºè“Æ9AoOˆõÞÒÊQX‚?¨Íž!k&ÊØâA€»¹Đøø \ÛÅ$¡€Â
+ôp#9Րç�„w—Ý42˜Å}+„™î9#ˆ8®läCT– æ2VÈ\©º$f°�­n™õ�Ž0Êq“CƒkÅãëN[Ð)D�\âìškn#Ù@Ì#)9^Â,…¤Y¸¦5Å-FÈ_æ|ëà!,…•
u7ºM»®ÌÀ¤|«”×IÝØUMª»øp¼ú+]\qƒ¡ •2“‹L“­.wq-î£_¹Áž¥†“Ü —KŸ«Q˜oà\•uã/°FÏÂíšA8’Fgy‚IÕɬ0U›m´âÀ\a°H’!dÚÏF5ô÷d¨;Wº5,ÍÏJD6°
V_äH·^ÎÉI2¡UÃ7™`Ù²"˜’jyïԈ
+åZ¶¨î)Þµî3ÌTõ¸ºÈ%™=‘F°)lhåRxÍ&´h€¤6ÛI@ª{<ì„8e§Ÿ¬õ¨Rb(Å*©‹ރb,IÉü¹`ÂÍp…û̑»
+/¶ ‡6e1$S¸Të·Îà‚Ûò+´n%*�5ݽ³P¬1}%æa6íT3ƒ¯o¥7k]cï7Háô=)F°§Ã; °‚˜ÞÙí•øÇ�+½+Zd9pÚ®e¹õút/€© &»uÛäñ�¾"œ,gH±ŒŒld5«+e¼SŽ¦µÓ¥®e˜¯˜ow0•z̤™ƒ©íÿȤ.ºP—ibDb¿HÖq&æíÀ<¨æQbŒ‰…v–Ô¯¸”_ù2³#Sc<?vN!¨Xãó	…8­ƒ%Š	Ö5OE¿ˆØ¯·•…ru…Ú¸³*œ·Và sBÝCŒ´ÐÉ&vk❃ø.€}%›Ôt´p4”êã\A®Eµa_}m75'\»"¨>Fr{œ
+š¼•<©áoq˳Nîº÷d	À|(1WJ°‚fãBϺËäµÚ“Ô³µs4�¿ô‹.ö.AX¦s/È¿	!¯‚­	ö‡|ÍÂÌ6*ßK«²I(s70�Ï38¢¬•¯Â •£ˀ,ñ\}Fɚ¦Ùq�¿«†qõŸîâÓ­3¢‡nÍ«Ú„A†jšêwÞ«t·ä?ß¡ÿ°HêûÈ?¯`/’`×FìEÄÁ‚¢Æ4©P”½zûÔÕÞá!{--HQ3ßôTWU×ñUÁÀpnëÀŒ”)Y¨¾NªÐGÜÝ!áa’Ÿ±¤2؆0O‡í"3
&l…c¤Œ¢S°µŽã¸Éqú×:Œ
^eîOÁ²—Î&
Û4 EO7
ÑTPºf€¡!K5L2a:ä‚åϐ9&8ÜáÞp]vt7pU¡ZÄïg,ç”è&8	)hHÆ$°T.d4±‹‚/uÒ¥㲔b?bG®¨	^ª’·\i œWÝ\ ËWS[6¡ì¢—
(JªiŒ¢¤g`ÊBe"…zŒc$ìWD9@jOšÆ.œM>JwÕҞÁÆâSï[.퍤±oe]tN{Jlci¸cˆ§ÂÑNÁHÓê+68Œ¨#ºÓמ•°gæÂpí9mÑyêS
ANK¼*8±Vúl
w}X`¸Aã�‘Œ(£Z\©	¼‡µ
•¿kžã+µ@Bå+gJ2Ó n°B¯b©k¡smÑ¢¼
%÷œ-—\*¿Ò•ße`Ãb½®œ	šŒDœo6y%åÚfn.˜÷cŸ¤ˆ¸h³ÀREÖÎÂyB¦£*¬±Ô"€t8R¾L®äzY¨ë#Xg
+ةؘ+˜›F\E£´±`i€(¸•ºjƒ¥h”äF
+7Â
+¨Šã¥Ø0‚—¥±0•Ûµþ[&Þ©¤83ÇEOë(ã-$®ÎRá{:œéb8‡JuÔt¡:ÆhĈ\)=¹èêpèʎ‹&…’œ‚-™AÈúZŠ¡1:]¶¥Î/µë@$$×'Œ
"48_“˝"±Zê4øŒÃ)€C“Ô¯¥¾S ²�è ‰z	¶8)ë%˜¸•ÂB©¿‚ÿšÊ¿Ô^èC4½D}Ð×2¨ì�žã/“¢ž=Wïÿ
Wyñw£}¹¼|{ÿébµûº«ùRgïVw³ëN]vꦛ/7wëîùD«ð÷þËä>Z½†Øð؉ûd!ЩQÀx8…öÂC+ƒQŸ÷÷pó¸ø
 /Ê«ŸÔþ«Õ%nð/C�{fjY×*‹sŽgþ#0WÎBÓéœ£<?úLLÅؾÈ!}‰Û¯1<ÉJâX:`uÔ6g’O™&„òFNH E–	œõ±’]ð¾¯ü/KÇÎééÐ
¤¶áž€c„§°Ð&8pÔµi$�¹¯ãŠ²ÝY2p½Ì&PZÜÓZ$.®\ƒ ո±75X‰|	oÍ=»È0xÞÈØEÜó˜¸Z³€-…Y‡º6Pˆ±X+Ï'C)G*j¨Î	.]PÁÙÐ0ÀSX�è™s”:á"˜iê,ȇe’¢IASÃ(8)Y3p!bL#ñ`RrÂY´‘ˆÙZÀL¢Œ×BHk›† 0r
qä„e”ê]ˆ,ŠH04)¹äýî×B¾Fê�Rãà0Ԏfë4Ë|aû>ÎwŽùU?ÓR`X†k[ô‚±®=�ÒVU�³þ^.']
+Ø1jÕL¸kï]»$w±�íُ´"¥£ù‡È”vLhá½k÷€È:k¿Dʛblà¶CÒÒn0t²°³v-*ÇZ&kE¤!Pf·¾vlAYy>Ã$÷+@‘Êœ’Èíp3´<RŽ7à2¹œ
fB: ŠQ„C¹I)	óƒ±Ç3˜£©ã[LºŒ ¡Žfä`9è8T«YÙã`m=1�½cµ v¦ƒ:í@?9€‘)yž@é3O*œÕ‰ÑSé�/C³£µªPö#)Zœvk+™ ¤E
+ûm3!œ–Âœ(%Ö\X9¤XýV, …÷¬5=ڎ÷
È&èÓ }[•y\p‰gÖ¾&㸥ÒC)Qr>ãì Ö#X‡Vp}ä±�¼̀<9±Yáãx³8’Z5ØÂ^{7Z
+fhŒ÷2Ii[óæBÆ°^¡ŸAz†…Ó[‰f7ch´ó(Å&¾ŒkàED‹‘‘#ØÂêWÍ67ÝuèYYíÝÂҝ· ¶®„åµ`Æ~TÖ¢‡#5‡SgØC¥°¥„áÄánÀ>ò{ð\BLóhè~Æk@Œ6ow´°p”„Ñ.2U09_p¬ÁvmŸ­Ô�ÌE÷ódeI۔D¸xI³íZ  I§Aî55Fa³ƒmà¡¿¶`ã˜VÀ�.%ÖÃÙZ&ðx³8!seål2Ô·'­� ‡–3@(;‘A¢ØÕ²*Wà¡Ôh­‹#
+;”+t·µk+ 9rY9›]¨õ0@Š 5ææù(ÂaRµ%ŒrGS>öCžIQñÉ$ž.Œ—äݙ°NöÍmçOŸoýyµ|³†as¾¼:9a˜fÒöÁäç|’ùɛÅü¾¾ø­›m&Ï^\®.:õÃúîöZý4]N¯ºµz½¾ìÖϏ?Süð|ºX̯ÖӛëùLV¾[­gÊ©›Í©š®×«ååüìÐêçêdò¬¾镛Åtsp}]j4­]}ž.:YL¢Ž¼awÞ8¸˜EÁ!	uƒ wÔ;›’¨Í×®}ÕÝÍ‹N]vêüºœwë杝å/7«ùB\OïWKxeÓ}ãÓͺƒÃïnq›yw9XM¢F¯œ¯¬‰«›
üKëN}^-`›£»|üØmÔÍj¾d3Á¦ùí¦S @«ÅH“n9[UôÇÕ`êrgñ‹5Ë|½|3Ý\5%lî[óêîv:ïא¨ýß­§¬õK´½;.ó%ê§nÑ=³k>Žã/ü8]LŸ? ¬!Q`’Z¯îúc±Z^ª5*uµ˜^lCö
¹p¹GΛ&û‚‘Þªp.^=,¢	ËÙ5xE/‡ÉulóÅ=¹ðvÞ-ÜHRu1½½ÿïî+l{;ý´š‚2ÏÕ)2¨|ƒ2öÈåð@’CÙkÞ*ø¿NӟU?ǔýc{ÛÑÞIAw¾_Üñ©öB¶Z+Æjþ{ÊÍÝîÞ*ô;gøgŸnó¦¦ÓÖ`sdsÙÀW?Ѿq´­Êèqøú~…¹™
»u´:Ð.Hß³_ C}ê.å
Éke I*˜B
+0DŽÑ'áÂàgghÔi˜S\²a
XC'�'8ÜhK7xòøŸ?êÿ½vm{Ú¡v641 Öpz�¹…ŸbéÚGùQ'dX†Ú‚ά<ªeðqµßéû¬íÏݗþ¢¦s +oú_þp”éGw-ј†Á=i,€ÍÑ&/å`�/Е‚êï̾½*î!fG"šã²¦ûŠ8TŸb$R.«g9¢Žw9g ýåԗdùéc±Ã©Ž%e’`8ÕÚÕÄì/åŠó
+I
gdÄ ÏØ'ɨèÎÇÇ,Lû–&Š06Zµ‘o Õ'-éËáÿ=±tT‘#¬nŽÖnuÜf©rO©çˆØ²R5\lë3ˆŒ
ûä®cþ>RÅý¹Ç'ô}¤ÄŸDƒe¤KùU3QwL‚JóGº¸9øďŸPjosE| á8Ž˜´gNÚWmÎÆ©Ýkz‹79ËÙ:DŒp©d6zzÚqq<)=©ÀV8,;xÂshóØíê÷Q÷£6#éñØËG*õÐè$NÉ¢¾;>ý1Éä{\ÿpðI:ž;q‘&Ç&Ÿ“†›Î7X÷ÍŤð(zo7÷‹îvröÏåê˒nÔßÀ33à^êb
Ñô,Pœ½˜m査ºæìüÿìWmsâ6þü]gځ™;bl¦™v“KßÂ@šKÛiÅXc¹²œ»äC{W²
Lj®r7ɇ­v¥ÝÕ³ol²8pûԗMHõ<¨(aH¨µ¤‚¦,¯‹„F;·Ù8¢N^‚³[ò¨ˆ®~û<å…CN(¨ÏÌïÑ·`Câ0îÂÛÀf–š'
+ZšÑ’ïu·’[ÜÃâøñH`>üýñ§†\ ^+’ëڅûÈ£
+ªæήÁ]ÇH©‚Ž+èh€¹(0°Ç7¦bƒmyÁOzƒ•Û¤£xÔuR|ḋÒ~’|à'û¦’ͶïVý…Ýáš5šmètä×ÐÚèMӄ~]wuÃÐÛéÉ{
+GØvÎås¤ÃÁÂUÈé	.\·ä;F]‡°‡*àÆg¶5uëÂ;Õ3.{%8Dñ�¤3ß¹¤ÂÿO625§Lªg„ρª.xD”)G6̈́»£Þù¹ežÀ®<ûëWð÷•uùÍ»ÉC~gTåÚký^å.Öµ9ýѾ×]õKþëÿó=øB]SÒ-¶O÷ FÉgi–„Ëâqâôýâ¢"«#SŽ]¨¨Yz
e9ê%ž.6àlŸ!R0[…Håèô#qb©‚ÚP²«m�"ÁbŽÈGÙ±¸4|
Á³ŒêE4BÜâmÃ|çñºcj»‡àF՟Aƒ×�`£~ØïiSLã�)¦awÊé
‹á=åĸã³â¶dæ²xêÁ`ºZ¾N£¿cE¤°‚å6K1
	†ØÒŠÕÐ2Š+°¿ÞÑLx%Á“X0rÀg7 \~ øv͘®r'ŒòbƒV¶3Êcü¡–'Ü.jùڍÇ["ÈúŸ_F™Kd‹Mžø|¦ÇºÖ贐V×-½	£¥YI€ÕÛ
£
³i66Ž•Í½d'L«ó:¸ÁÀöaÓê¾{º¦·Mùú	LËÒá£iF'@[7(¬Ö!:…/¿o=ó±C¥îû¯$#‡N&ÄÑz=ºˆ%ÆgÅY¸Ÿî”J¿ÕSߧ¡ªA4˜¢ê	Bß'ËZÄjXRª¥ÐHRt÷&b~,Ñhå¨ï¨›ÔŸ%ê[B§žX:aHü9ož¸`ídÔƒ‘a^£}&ôOŽú'ª³Õhïè&ZdÇ=§þÝü’ã ’è]÷|«h䲙á~ZŒóeö²€Ÿ§5‘‰°Óh´Á»#oDZN½ÊQUXñ¬ÇBJ±™C
ÄR&…]6K›·ù¡œ	,Èø„L9!QіÄ<N¬/º@û c;‚qÕ9i+[²¢ƒÚú‰¤ð¸«ÍÇ]ÇÉćLu]Düm«t·ªù´}†Å8 *áÅÔ»""8ÄÏÞ}kÌÀ»JÞX”WMŸ÷×ãÉÜ/%,Úyý·Ó@ùVèÀeþ%¼¤ƒÏ2ü;�¥÷€·
endstream
endobj
26 2 obj
20782 
endobj
27 2 obj
<< /Filter [ /FlateDecode ] /Length 28 2 R >> 
stream
+H‰ìWïrÛ¸½’67R'¦	R”Èdz3’¸¾kbÕJ\÷’Œ"!	6Eð@Ðiüá¾÷Kß®ïÓ(R”I9’ãçK<1Íݸ»‹¨D‰$’ñ¨…¶ß1Rô¼±½Ë|E"âz¶ßryH}.�s˵
Ó4-´}HIˆšÁɘø’‹ð^"}½l íRÝÕ'	ó_³PR^4š½€(z'H”Œ¹˜µF&ڞóŸ7šG+…ÄGwb¸ŠQPp¦0}Kf´*¾®
ðÅ>砼̏ˆ¢¤•q3Ófüœþíd «Ô£u?’¨¥³3ª‰í91fр³H¶ÊŸ„/|Æ.¨¢vŠ[‡0Г]:4»f»k]â’€‘LMœ³Ÿ„ çë"Ø4/ñTøô’"šõwњێ®¸í¨ö6AÇ!õåqñ_kæü¢¡ü̈-ȍrv\T%f§_À©ƒ†i`×µ	éj{êaَºÐp!é0:& (Ö_0Ññxù	þ8ÒgÔFoЇO&
+€z|¨åŽø<£—¨šÅ§–Ì}ŸÐWç4:‚—mß᳘§Q°0gJXtµýߋéŠb²¯(&Óp,»³º˜€¿²œœÍ«éòuG«¯»½rʲcFg܄ú!'²’";<‚¸éè"ÝH˜G¿š á;n7¦Û
+°×‡‡í.258˜Æã‚E9­DW!d!™Ô#Â2½™ÏljœWð¼ØC6Sk^Ò§‘Œ7Êå_Øä‚L*Vää
+ÖºP–¸jy¬È(áa*iÎ(ҘÌ@^.‘
{/‡“"î!Ýõé"¥ï5¿¯°ºR@«ë›­Ï/ì^Ïąm‹ã+­hl¿ú7õS
ƒŠ¡Ï6¶ŽøçhþáFs§ÐQ@Q¦Œ¢Ã£>¤á</·{`À9ͅ¯WíÕCCIü³ b(?£W±ôßၘË~Íÿ™Ø¦Ðå+]³f¹@w
+R&W˜qÓàzãŹQ-öGÚcØꎇa¬5l˳P
+áj¾"H³�M80Y ìµP^ý¸„ý	ÜÒï{eßj
;·QÏ0tDë k}O€•	p»±,‚1ߊÐ<¸0Jý|(EåŠïuô|œýø
,*0ÍvE“0%ôæQHSú½)?¦ü;ƒT·Ð´]Û,<¡ûºh˱§í!l`¯Ý½¤ý꒴+xŒ†SðϕMé`6‚ü¹j±«ßùª2kíNÝ|řrqÑ*Ωȶ ùÚ7
+£`I`¦B˜Åªq6?3_&câÏ	™£bÂÄFËã¡*K´ÃEDERñLOÈT–Ôº¤Ä\Ë0åûdKºî¾÷Hvž@‚ŸÒ"…¾Cì�b
ϱ<XE<Ëщk¶Õ£ÛQo¦ƒÕo««^,tLî|Æy˜“¾YN•{pJ-V¾	K$WÐ}	*3z¢0`F¢”†a}#©—[@M7GÐDøæT)o[í2í\w×,ÑpÎä–î³´œåXeZÍ}vœ­å<èó]\Ü$2ÓѲ=·m«ÌÈ.öl(ŒK¼êDEe UTV´Ë*­¢²¢¯ûÁ°^Nb̓½QxX	ÿ됧hBÒ$9¨6ð—%Öyž²®Mhϧ…€H2d:­·û,?Üîìï»Î.\¨»Ÿ=O_îŸNÏ.z®ÿþ©óŸ(â“ß~ãõ=÷чê9·¸¾>þyòJ¤‰d¿>Œ}í&ÉL ‡—ÛK¯¾½tªQÄß>–dä •!‹”ê|µ—¨Ñ'!™Ô÷#êCa	HƒQ>$W»Âz²Éj0™*¨º¤Ý«äה%I½j%æZÚØE™£YÛBåRD“diã!£„‡©¤9£èj$a«|!˜t±ù¶ø0ÆÆkNÉלv?X¦#¡˜HÁømàåªúßípQ‘Tª¨'¤Kj«¨Ä\oLpŠª!K“õgý͗Ä̸†l"H<e>êCš¢wmÕ¹ˆ0É_Hgߏêsóo�õ
Ãp
+‹XÇÔlw‹”\ÕL\»qh:&Š¥âÀ¢ taÑ©Ñ(_²W=¹íŒNá’hùÈל<÷œ¦*ÂP(Š¹Qúå[ý¬ŽXû{ÄJÄÏéxªÖ,¯ñ[»î£‹Ý÷â1C*bIô–3¨DýDþ]ï>3Q-y &r9[˅þŽ‹ÌY{šhžçu‹A:š¬^onb¢¸Ã¥ïkÝC-}ŽJž.ºÑµïíµ×h¾ç¾u#}œ`8öÃËI¬köd&²R܃𣅱õM¼Ì]«ºH´}€®f@$²mÎvŸåÒ½áÎþ¾ëì‰@]öì	ü{êÅ_ž_ì°¿ÚMõî¼o±ÅûŸ¼ûgäž÷ô_Þúië·Áú3kæPÅ{"Bì	€ÎZ_äœÛôûþ9^ؽßùÅx”üÒìç©öƒþKýúic?dPÿ:½¸ø‚ސä¬â‚Wã14Pkò´ÖPŽ’§łOM6^×/VŽû‡W®’´¯sFQÄ|´-‡Œ(Ô<½á¾~­–ysÄÁxœ@òˆœVòj°¤™ÔƒÍ2­tÚ*ò‰¸=o´sÂ,d³V–qºO#?¨~j˜ØéÂVbc[=²eFùÌèt]XhÓö¬ÕöFúìý;Áö:Xïp¸£mG½µ•åÀ³»ö•ÓF熍«çÓÍëæF‡ƒFó­Â—ÿà’O¥fñó/&¹O(^;½”ÜMŒ,·
+îîm€ûÝŽ›F¢?‚
+l¾"ÀÏ�MtTµ5âNK‡ÙQµ³åXn;º¶\³‹J±Gý	ÜÔïßêúH:wîä®÷ÚõÝ#õ5—šÛÄÞ?Ä—
U»‚Çh8%ÿ\ªf#AQ̅TÓSý`U•Yk¸Âù(5åâ¢U&œS!ç=[Â(X…©P„®“S"δ[ŒÇğË\¦Õ c[g×ïV‰Š²Î~"üû[?¬{�± «¤À˜¤òS	Ɇl‡’-žàHÒÐÓZ©y¬Êj'Ó,ÀCYRðYoß;y=!õÇEqåä-¤Y4ÙÚÊÈ}
+y= !•’j]£K*5?Òø¿ˆO-M>¾h,Ñ~Õ2ð/‰ü¯°	xo¹ÊHÅ2lǂÝ°œ¶~X¶£Úl§£†÷Nñ_Ú,™®«&Ylyj¢Ç¦z11vá±øŸŸA~HŠÏ¹¶c£²²™ª4Eçlœ«ä¶µ¬
+™0(°$Z¾p®Š	k…zhýõç—NÄÿQi¦˜f×Ջ‰²{î—LòˆqˆÂ²X{\Ìh/	.©aZ]å8œÍý™6úŒ»|¦¬ˆõ>¤¿ðî«5©$	ï¸CE8<#l`~‰—Í.`1öFìl¥î’TãꮞªjùÌéæ>“õèwKÝ°;F,D€Ô•™õ}™ÙùØ:0û’jµÂßq¦¢.,ÖŃD�¥’E4‰i#o—§2È©äÀôöõ`µµg#ê–î ãîÛê9T—X&¾·ç}›B{ƒýd¿³9 Mõ´3Í"LK}׺zW«Œýƒ^/eçôrXíN	˕ƚ¦Rk'd·Õïôm˜-šÝ|RøÏJ)m˜»Ê¢—&QQÉ9øÀú!
aòšÝðxš¥IЁãjó´›ÂJÅKêïÝÞî^×)eoå%Žç©cìf™8Ÿ¡¯!‰#šÄmß%5�ß·’ˆõR'j¯ÖÆLIpïb‚ØXÎG¦×ï§�ºùë³·{XܳÂ6(‹ \pîq³–I
+‚ɐ,–ÑÈ£Ù±it…tà«u®y,"‘Èê(ôw»½LÐ<r¢DÀ¨ãÍH1WvlØ;	ºä]±Jt|R*)¦nZµº¹P}8œ–ÞzWSú&ë]MIÜeåk«Ê²W?§’s²ÝºLÏx‹l{Èjtu¹*JZýäU<šiSúä-2bHïp˜5X¬SHÇt®cµÒB"”j
…÷Ž„ï<Jºù|Ô ^‘®§5ǍD´HÇ90¢$¡P†`}ˆ¨×èUŠ`}ó
+#a0 àÁ§0±A`Hø¦`Óþþ;wÁP´BW¾^PŸÈV¦rÒZùŠúÈÿ/#­”4´‘¼ˆ‘š:Ãè×8œ¶´U¯h½ðx¢)·tP&®Õ‡aHp|ð÷X´2PT�×Gé˜L{Ùü—7®";Bš“dˆ¼ R%Ãta¼â1ØÑl#SbÒvcsDDD`"Õo‚™ÃN‚ Í0$·€O7ñCKÅJP®èo1ggºìTÐ1!Ú“a!:ºß(ú;ì]SãîCgÔÏÝ6&ø¯D=è°ó*(±ˆÜCzÁ°ÑE‘‚ÇC
E¬¿ÀR£ºˆ¥Qžœ
éÆá¹Æyݎ=-‚1gÚÌßôÕÞïF�¥H€§D‚Çà%5´�Îɣؒ=žQk'	
Mý@p*Á0mlž†SAB"à=†ƒ€h+±7ƒԟ¸~ô“DÔhŽ~‹9ÅðéÖ¼ä&‚E‹çÑ?Åûwà`8ú�$£óp£ÏÇ]c¥ƒò	ö5CG€º…]õ
Ú¼ä>ø š•?ã"0 Hhä›öìi4º¥×A8[\U¶iï~ôe#ϐkϊN&±ÌîI¾¯¼Â
Ùnµ¦þšþ_©yŒ£S£õZ¸ÃËÄ«.)6¸Åä•hWŸ¤Ÿ¬Ø 2ldñÉ/½î�àøú¿Î–‰F)SЅs¹ú¢¢•3×ð4œÆ£HO?ëŠgnРXé®þ&MfBõŒ†F14Á̯*Ô62W„W¼‘®tŸpÊ[¨N°Â¯ï¶“ïè½ùF=
‹…ýþ¯Ë‹+NÓ_6_ùNö
ÚA•§hó>`!¼ÓB‘BoA´þ|ŽYìÐö9ÜY8V‹Èn¡õ×!ˆÂ>�ÿïtŸ`ŽÅPvGŠó€xv?Ò‡™Œ7£Ìz6|[“¶9A(»0=@_•VôÐ*¹¼—ÐѯÄlkJEÄZ§ææO¡¼ó`ŽáÁááæޏ
C¡sð~ގä¡\WršÃÛ6éøÄ,�WÆ!M¾C—€óîú¹*Ï¢šŒ{_‰ßÌ/äá2/<#·ý_™¨ëü²´tR‘»œ|{¶(õþ/ڟ!2‚Ô#G<6Côúq*B^4Bì í‚ÙÚäø¢¶Ó½8÷u4¾Q_Í©ô֍‹ƒ]å3#t:k­{­N§Ó_3V	ø*­1W0	^‰ú$¨Y`Â[|ÄùúP«xBËà‘¢ýŽõµ0w(àÿ|›œÂbJÔ³Ãøp~vÆE€Ÿo´ƒÒ1g\¬eûyd’yšÈhF'ê4é:&<±9+CaöšûôºÕ˜"øjdiè±Ø'Ç8Ò6Ûôïµ¢W†_GPÁ°×béZ?rô*±_‚15æÅQ+‚¯’ÚSÛ|uf~ÖoVRıâ7ď=ò⢗‡^%&8c|NÄ%–¿×˜Á8ðò8.aQ³-±éŒ×ΰyäèÔyέ¡¿¦ÒÄAËI¦×¬»ô*/Æ¥lîèk/ºÊƧjFĐM¹€OAsÝôédËå]ÿIV¸,£Ûö¥ëvÖ,Œ%ø5UT×Wmï•„Й/«¶ÏYNkè´ÚvŸ8´O(#-wÀÆuñݖ§QÍ…Å”¨t&À,ÏO^Z-«âÿߦÄ_•\Z§¹nþÊ;9ùv¸~i嬫·Wƒås/Ò²9è÷wúÎÃó„…s,|äéƏºH$ûS£äTR£ì8
^¿·ÛÛ_.ÚË�4Jæ�4Êf�ºKŊ٥ϕÀ¡Œ0¸Þ[ÀuÔG’~/àZ0ÂpÄ+3$h‘ÝGovBŸbÅ
+ݘ™~7‚è†HÎâL§Û/è\9kÐ(çî#�œ¥½„“Ñ­z̨,=
+°üê,öý4§†çhKMŠ«26Ï»4az£Á/ÂȽ›C»…`Œ1áWõbA…NJѐ EîU;I©ÿJÊ\J£;ˆ¹‡L›‚Û4"A$s‚ôzA]RNa7—'gV\­ÆàQµ@dNXšqÖô×áù5PòÀò4ÈØ“ÿ ‹U²£x,‰2’G„ño9Ûð,“¾Ñ)“OÂSÅq-¸nž«%¿Ì¨7+KÖ¾>9;/ÃícªÝ±JV‚“ešÐ¹PŒÎ¾ c³[Ž†îe]ÒsJß³×\Ûøx{y’Ö‰FöàâÏD(êaV®K>Â,öܚ¨”€u~–äx4*º³Ö¶Z0"ócKw•ÙóÐc±OÀiº¨W“·ªñ_À›„ƒ‘,ÝÓ R‹c˜löÐíÉê«ÙGB§3Õ|Ãy€§äG·iÛ¾à^^÷j2 ï”+H7d½€.±Wëê¼Ìúü›l”û9¤÷¹ÊX:.äáAóÏu9ƒ·+³ÀCe4ʊlK¤]‹:ιGiuëBÒ¤Ôsøڒ²Z;n€x”Ү÷û(­þ“´OÒÚsZsá~)VdD}B•ÜȨGšò©ÓNŬñj_:—OUëÕ»¾Qoç‰zKÒªQ¯_ÛR¿×“c-Ðö¾NC¿VÆU}#+²[’‚–ck%‚`™OÜ�¸IõÓüæÌ…
ܺ2sGÀ	«<«#2ƒôL¦æ”¼p‰›ð’H¡¸×'r]CËØ
e¿Êí#·é-`¤€ìííõºýf-+_v\YÔâºÆjVÇ5'¸Ä%'nI+—Üpzq¡ô,”N‡zô¸ð‰_u$Ú¾âªpÜÍ/-!φZDC3sIVÕ7^ƒâÝiè'€O°Â¯_Ã@Gú¼wƒuxDlt‘ýíÀ¯þ»wð'áUÛÒ0„AþÃ}ôËB^›?MEpt(¢2‘:çTt››:ü÷>—Äi‡TJ›ËåIî¹»äڒƟšñÏÚúVìì7ϯïñ½SÏØ	|êm¿ÜGÃúüè�>eð
À»ékýpŒýy$rÈ"™Vàºp+þPj·PÔÇ=Zí>ßôŽ…"•ýãkÔ•ô„'¨ÖähHW׊îx•Saòç×x%ª	d³Õáñû¿ó‹×©P›8GãÌq ,Yqd¨`‚<>Ú±\‘•Æ––¥‚µ•2:Ž†Ö‰ÏÈâXü¨-UI0Tb`¯“^‹h `¡�/4NZ‡=¡M2m٢Œ!q³´øÈÒS…ÇOmT<¡búy…ŠégŒNsº£·•?,©a‡Jç{ê½	0_¡LZÇ3 ŒFðLÀ`&ú<=0όˆ&þ£ÅûK:_–¤¤µX¶.ʂxL·žà5¸{YÒq“R˜³õ)4RlöVÁqîuÞl‚Soòn¿õ~#G—Ìë½TPâêõP"NP!ϖ
^K1]5jf³9—ä×Î)~ßæË	­ækÖ`Ê7õåøP|	0�‡ðÐ×
endstream
endobj
28 2 obj
5797 
endobj
29 2 obj
/DeviceRGB 
endobj
30 2 obj
/DeviceGray 
endobj
31 2 obj
<< 
/Type /Group 
/S /Transparency 
/I false 
/K false 
/CS /DeviceRGB 
>> 
endobj
34 2 obj
<< /Height 128 /Width 128 /BitsPerComponent 8 /ColorSpace /DeviceRGB 
/Filter /FlateDecode /Length 37 2 R >> 
stream
+H‰ì—=N$IF÷p¸GhnÀàkb.ð0Ám«æ8 á®Ô8˜—}êдzºª³²2"ªÈg¬´LWdä÷EFF~W*•J¥R©TÃï¹³ø¡ ü¿ªéYŠ_-HϚøՂ”´Š_-HƒCüjAl:ůÄÃSüjAz‰_-°%@üjÁâWô(ůh0¿Z†¡øՂ¾˜‹_-ð'’øÂt:ͽ¿¢‰*¾pww—{—…’@üjÁ&’‰_-h’XüjÁ*Yįůd_ø™"¾ðÓ,(J|áçXP øÂO° Xñ…q[P¸øÂX-„øÂø,ø˜,œøÂ8,¨øÂÐ-´øÂp-øÂ-ø°,™øÂP,¥øBùŒX|¡dF/¾P¦†âŸŸŸ_]]=<<L§Ó§§§ÿþðõõå™¿\~E„é‚«'''úK³ X|Ô©E珏4	¿¿¿³¦ $vڂ¾â³_ç«djû€#Ô�ªž
ÈOñEsJ.w¾^PìËNj¼¸Å§·\__óÿ¾] œ*ÇÑ£rY°I|d'¥×××,YŃC­'"½­âKµ'Î$=”;ÍhÁšø”ƒDQ—iä8¬N³i,XŸÑq|}¦\mÔÞ҅Ø,Åç�&f>??gnnn~ýÍäoÖþ•ßˇóù<v’ß\ˆmˆò1ZHtÇÇÇè¹³³ó[[[Ä<88 þýý=™çÿ½èHr/Ä°�ñé6¶5/‚#‹­Úžìíí^\\ØÚACæB´µ@Þ#&¡hlÍÓîFš˜‰´#BÞ§ÙÈNcÉRç}¡YQÜ ´D͖©X$ùBal„“ž[Ô@”F¼¿¿s/›*êOw¥–≳:ÿD]ˆàì%¬5ыžžžŒÅuBž¢Ü/Ø2
YîǾ“$?–¯øœ „2ñˆƒÌqè+H2žŸŸÃ”4Š4‘)—…X.¸+r‹ái¯¦D#Šz;ê«972Ó¸òšS"3p@ÙpšðÑ!,°š!× 
ÿ£-7Zšgi_(†¾C?æ«\	Óp<O1ybS™²7a_½Œàø¤ßšgÙO%@m{öÕ¾íHÛçKæC)x7ì‚;§Ø8±¯3ÎfçÁò« ¬ü�‰"åÀyt'Àu0ÜnョτNˆéöÄÌ]‚­¸ÿk¼§Ö÷ð³ïˆÎ{ÁÖæwٛ:™Ì¹hz
„«ð!Ÿ$’„uVéökLVù^Ôeƒhþ
+O(OóûÑ]™úSàŸMY2jÉsÒÓc>»¯EDnñMzéy>âlaQÃíxŠÅWŽäõ¹³&Àp`CMÛá&
+‹ëcSÎJñ=_pÉà˜›ÜnÉցS/>õf~½ê±j§ú4B­	¥ßýˆÈŽÉ0ŸÏ[õú†¢$–ã7'hÜâ&Pêñ‚‡1ñ•ZßGÀ„MõP,ú¡¨Ù½“[¦o&Ë&6Â&Æ5Z|À ¤dÓëÉþþþíííÛÛ¡øïÃÃÑô„´•o=8«—T™ƒ?———­aqa{{[¥o¤­?­·@Êtqq¬À&ñ…ÇÇÇpqý yåö[/¾”SÐd2	Û;M¦3øÑёJß.H^¯@3¬¾³iV÷„žßüåå%\\?ô
+4+ÐÄVO‚7Ž¶Qã{¢W £þ\4±7®S×,
­8ãÅ÷D¯À@õgÂìŽG*q=Ð+°···óàà@6xuO|æŸÓÓS­¾Nô…Ê¢6åüÓú�ñÄ}¸ c?Áôóÿýý}3,T†õg>Ÿoyydµ†M >¼rû­Ï…2l/5"ðÈZEéù´⓶rã³Ù¬6e󨢭­-½ »»»ú žp¤â¿¹¹ÑKÚM&	z•¸;ša±U/fÊ.”}çááÙzäSN>Ma^|®×fdþ˜øæmR¸&âozò¤;´6ÆÐOûñӏ=h›òÌɐ’rSñKè<M¸ŒLæR
$`r'nºp½¹‘ *r¹ ʛ”¥»£šüäLL’·²•€l¡ufˆ±œ‰ò¡±§í é†µàÇÇǑŒ ,Á
[óŒûäÆxê6űµ@@%J”ÒRzÁç!”mžÏç“ÉĽtñ¡u-’‰w¿y6›¡!1'Ö|áåïü€Ÿñc>‰‘’\Xnå9¬n¾´eÑðLFY´PÇêô¢]%þCZ‚íßÝúçºìPÉHÚ)»ìšë8YbY
Ú°7=f³”}“ÎkH\ ·b_M¨aöâQÆ[¥=S•'O™FPº}e—Eš0û&ï~�6Óæg¿Ù[ÅÃîã‹U~öðPâðRu2«'H’G¾‡i^¬ò«›æ¹*o(N!¦húÕl¡HØ^½¥	RŽ7”.l‚Ã2ñÀvi閜ܢö†Úëu/…ŒmC)x\²´wÿA:/Tû8do"/N„²ǀ®UìlvÊ~©´ׄÔ�•À՜ñéTˆ€2FêTDÆn|ˆ—ibhV2=Š/ËÒ_EêZޕJ¥âà�Ùöi¥
endstream
endobj
37 2 obj
2034 
endobj
38 2 obj
<< /Filter /FlateDecode /Length 64 2 R >> 
stream
+H‰\QMoÛ0ýú<n[¢$ËŠš†²¢— ÏQ2
¶Ó)NŠüûQŠ”…a‰|Od¹8t§ÁŽÓ/;Þàá¡\¶{ûÓ»½a-›ruê­ÏA6³ÙbÉÊíÅúPôâ¦Þ—yÛÿ;Y_ËWwt¿)4yòË¥·ggߓ÷´uS{Ÿtãd·É[¸a g×öGòæ‡þàaQDSÕPi-5iÚõítåOØߎǷÖÛ±»¤Ølö¸˜3z}~Ï88`åÊR¥;ÛØÛ
vò®ï†‡
,œ=ÈιjÈÁÏ^@üa»ˆå°úFï à™œ¿DõÖ[`$uT€P
œŽŽÑDÉn@(k¬ƒY…pua*a„!_(ÊvÇîšd!ԔzLjèT_/]ª
+©µ
%ÁMb—ðÒQˆSTÚ „Œ‰*ý­M4f˜¸Ö…ÜFMQ](eАZ­Ñº†þŽÕ)®I}ÆÔ±	›1TMÇreP¤ºÒóBiÞø|“ šª Aº¨Pr£
+†Vq¾y&h¨ª°«B£T؎Ȼ?3AÌòn3ò–ÑN¤ºDAOÏsö_€�ÓPÈ
endstream
endobj
61 2 obj
<< 
/Private 62 2 R 
/LastModified (D:20060113105908+01'00')
>> 
endobj
62 2 obj
<< 
/CreatorVersion 10 
/ContainerVersion 9 
/RoundtripVersion 10 
/AIMetaData 7 2 R 
/AIPrivateData1 8 2 R 
/AIPrivateData2 9 2 R 
/AIPrivateData3 11 2 R 
/AIPrivateData4 13 2 R 
/AIPrivateData5 15 2 R 
/AIPrivateData6 17 2 R 
/AIPrivateData7 19 2 R 
/AIPrivateData8 21 2 R 
/AIPrivateData9 23 2 R 
/AIPrivateData10 25 2 R 
/AIPrivateData11 27 2 R 
/NumBlock 11 
>> 
endobj
64 2 obj
470 
endobj
65 2 obj
<< /Type /Metadata /Subtype /XML /Length 818 >> 
stream
+<?xpacket begin='' id='W5M0MpCehiHzreSzNTczkc9d' bytes='818'?>
+
+<rdf:RDF xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#'
+ xmlns:iX='http://ns.adobe.com/iX/1.0/'>
+
+ <rdf:Description about=''
+  xmlns='http://ns.adobe.com/pdf/1.3/'
+  xmlns:pdf='http://ns.adobe.com/pdf/1.3/'>
+  <pdf:CreationDate>2004-06-06T12:39:34Z</pdf:CreationDate>
+  <pdf:ModDate>2006-01-13T10:59:08+01:00</pdf:ModDate>
+ </rdf:Description>
+
+ <rdf:Description about=''
+  xmlns='http://ns.adobe.com/xap/1.0/'
+  xmlns:xap='http://ns.adobe.com/xap/1.0/'>
+  <xap:CreateDate>2004-06-06T12:39:34Z</xap:CreateDate>
+  <xap:ModifyDate>2006-01-13T10:59:08+01:00</xap:ModifyDate>
+  <xap:CreatorTool>Adobe Illustrator 10</xap:CreatorTool>
+  <xap:MetadataDate>2006-01-13T10:59:08+01:00</xap:MetadataDate>
+ </rdf:Description>
+
+</rdf:RDF>
+<?xpacket end='r'?>
endstream
endobj
xref
0 69 
0000000004 65535 f 
0000000016 00000 n 
0000000087 00000 n 
0000000151 00000 n 
0000000006 00005 f 
0000000310 00000 n 
0000000032 00003 f 
0000000625 00002 n 
0000001749 00002 n 
0000009320 00002 n 
0000026995 00002 n 
0000027018 00002 n 
0000044442 00002 n 
0000044465 00002 n 
0000063858 00002 n 
0000063881 00002 n 
0000084087 00002 n 
0000084110 00002 n 
0000096620 00002 n 
0000096643 00002 n 
0000100584 00002 n 
0000100606 00002 n 
0000115463 00002 n 
0000115486 00002 n 
0000138866 00002 n 
0000138889 00002 n 
0000159753 00002 n 
0000159776 00002 n 
0000165655 00002 n 
0000165677 00002 n 
0000165705 00002 n 
0000165734 00002 n 
0000000033 00003 f 
0000000035 00003 f 
0000165826 00002 n 
0000000036 00003 f 
0000000039 00003 f 
0000168005 00002 n 
0000168027 00002 n 
0000000040 00002 f 
0000000041 00002 f 
0000000042 00002 f 
0000000043 00002 f 
0000000044 00002 f 
0000000045 00002 f 
0000000046 00002 f 
0000000047 00002 f 
0000000048 00002 f 
0000000049 00002 f 
0000000050 00002 f 
0000000051 00002 f 
0000000052 00002 f 
0000000053 00002 f 
0000000054 00002 f 
0000000055 00002 f 
0000000056 00002 f 
0000000057 00002 f 
0000000058 00002 f 
0000000059 00002 f 
0000000060 00002 f 
0000000063 00002 f 
0000168575 00002 n 
0000168656 00002 n 
0000000066 00002 f 
0000169040 00002 n 
0000169061 00002 n 
0000000067 00002 f 
0000000068 00002 f 
0000000000 00001 f 
trailer
<<
/Size 69
/Info 3 0 R 
/Root 1 0 R 
/ID[<18b2d263a1973beab79ee901e9faa4d8><223b3a115985aa8ff3133f60dd6bdfee>]
>>
startxref
169963
%%EOF
\ No newline at end of file
diff --git a/graphics/eye_down.psd b/graphics/eye_down.psd
new file mode 100644
index 0000000..8d4c027
Binary files /dev/null and b/graphics/eye_down.psd differ
diff --git a/graphics/eye_up.psd b/graphics/eye_up.psd
new file mode 100644
index 0000000..3912fb1
Binary files /dev/null and b/graphics/eye_up.psd differ
diff --git a/graphics/info.psd b/graphics/info.psd
new file mode 100644
index 0000000..d4c95cc
Binary files /dev/null and b/graphics/info.psd differ
diff --git a/graphics/loading_progress.psd b/graphics/loading_progress.psd
new file mode 100644
index 0000000..20a7bac
Binary files /dev/null and b/graphics/loading_progress.psd differ
diff --git a/graphics/pl_mi.psd b/graphics/pl_mi.psd
new file mode 100644
index 0000000..e2aa702
Binary files /dev/null and b/graphics/pl_mi.psd differ
diff --git a/graphics/plinn.psd b/graphics/plinn.psd
new file mode 100644
index 0000000..b3a9cf3
Binary files /dev/null and b/graphics/plinn.psd differ
diff --git a/graphics/plinn_icons.psd b/graphics/plinn_icons.psd
new file mode 100644
index 0000000..2bcd2eb
Binary files /dev/null and b/graphics/plinn_icons.psd differ
diff --git a/graphics/plinn_petit.psd b/graphics/plinn_petit.psd
new file mode 100644
index 0000000..fb0f2d1
Binary files /dev/null and b/graphics/plinn_petit.psd differ
diff --git a/graphics/rm.psd b/graphics/rm.psd
new file mode 100644
index 0000000..bf4becb
Binary files /dev/null and b/graphics/rm.psd differ
diff --git a/graphics/set_as_default_sorting.psd b/graphics/set_as_default_sorting.psd
new file mode 100644
index 0000000..c0445da
Binary files /dev/null and b/graphics/set_as_default_sorting.psd differ
diff --git a/graphics/topic_icon.psd b/graphics/topic_icon.psd
new file mode 100644
index 0000000..48ee1e3
Binary files /dev/null and b/graphics/topic_icon.psd differ
diff --git a/graphics/warning.ai b/graphics/warning.ai
new file mode 100644
index 0000000..0132b07
--- /dev/null
+++ b/graphics/warning.ai
@@ -0,0 +1,617 @@
+%PDF-1.4
%âãÏÓ
+1 0 obj
<< 
/Type /Catalog 
/Pages 2 0 R 
/Metadata 38 1 R 
>> 
endobj
2 0 obj
<< 
/Type /Pages 
/Kids [ 5 0 R ] 
/Count 1 
>> 
endobj
3 0 obj
<< 
/ModDate (D:20040609223320+02'00')
/CreationDate (D:20040609152431Z)
/Producer (Adobe PDF library 5.00)
/Creator (Adobe Illustrator 10)
>> 
endobj
5 0 obj
<< 
/Type /Page 
/MediaBox [ -4 -5 21 20 ] 
/Parent 2 0 R 
/PieceInfo << /Illustrator 64 1 R >> 
/LastModified (D:20040609223319+02'00')
/ArtBox [ -4 -5 21 20 ] 
/Group 31 1 R 
/TrimBox [ -4 -5 21 20 ] 
/Thumb 32 1 R 
/Contents 34 1 R 
/Resources << /ColorSpace << /CS0 29 1 R /CS1 30 1 R >> >> 
>> 
endobj
7 1 obj
<< /Length 1065 >> 
stream
+%!PS-Adobe-3.0 
%%Creator: Adobe Illustrator(R) 10.0
%%AI8_CreatorVersion: 10.0
%%For: (***) (***)
%%Title: (warning.ai)
%%CreationDate: 9/06/04 22:33
%%BoundingBox: -4 -5 21 20
%%HiResBoundingBox: -4 -5 21 20
%%DocumentProcessColors: Cyan Magenta Yellow Black
%AI5_FileFormat 6.0
%AI3_ColorUsage: Color
%AI7_ImageSettings: 0
%%RGBProcessColor: 0 0 0 ([Rep\216rage])
%%AI6_ColorSeparationSet: 1 1 (AI6 Default Color Separation Set) 
%%+ Options: 1 16 0 1 0 1 0 0 0 0 1 1 1 18 0 0 0 0 0 0 0 0 -1 -1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 2 3 4
%%+ PPD: 1 21 0 0 60 45 2 2 1 0 0 1 0 0 0 0 0 0 0 0 0 0 () 
%AI3_TemplateBox: 8.5 7.5 8.5 7.5
%AI3_TileBox: 7 18 579 836
%AI3_DocumentPreview: None
%AI5_ArtSize: 25 25
%AI5_RulerUnits: 6
%AI9_ColorModel: 1
%AI5_ArtFlags: 0 0 0 1 0 0 1 0 0
%AI5_TargetResolution: 800
%AI5_NumLayers: 1
%AI9_OpenToView: -23 39 16 1266 735 90 1 1 7 42 1 1 1 1 1 0
%AI5_OpenViewLayers: 7
%%PageOrigin:7 18
%%AI3_PaperRect:-11 832 584 -10
%%AI3_Margin:11 -14 -12 10
%AI7_GridSettings: 8 8 8 8 1 0 0.8 0.8 0.8 0.9 0.9 0.9
%AI9_Flatten: 1
%%EndComments
endstream
endobj
8 1 obj
<< /Length 6237 >> 
stream
+%%BoundingBox: -4 -5 21 20
%%HiResBoundingBox: -4 -5 21 20
%AI7_Thumbnail: 128 128 8
%%BeginData: 5916 Hex Bytes
%0000330000660000990000CC0033000033330033660033990033CC0033FF
%0066000066330066660066990066CC0066FF009900009933009966009999
%0099CC0099FF00CC0000CC3300CC6600CC9900CCCC00CCFF00FF3300FF66
%00FF9900FFCC3300003300333300663300993300CC3300FF333300333333
%3333663333993333CC3333FF3366003366333366663366993366CC3366FF
%3399003399333399663399993399CC3399FF33CC0033CC3333CC6633CC99
%33CCCC33CCFF33FF0033FF3333FF6633FF9933FFCC33FFFF660000660033
%6600666600996600CC6600FF6633006633336633666633996633CC6633FF
%6666006666336666666666996666CC6666FF669900669933669966669999
%6699CC6699FF66CC0066CC3366CC6666CC9966CCCC66CCFF66FF0066FF33
%66FF6666FF9966FFCC66FFFF9900009900339900669900999900CC9900FF
%9933009933339933669933999933CC9933FF996600996633996666996699
%9966CC9966FF9999009999339999669999999999CC9999FF99CC0099CC33
%99CC6699CC9999CCCC99CCFF99FF0099FF3399FF6699FF9999FFCC99FFFF
%CC0000CC0033CC0066CC0099CC00CCCC00FFCC3300CC3333CC3366CC3399
%CC33CCCC33FFCC6600CC6633CC6666CC6699CC66CCCC66FFCC9900CC9933
%CC9966CC9999CC99CCCC99FFCCCC00CCCC33CCCC66CCCC99CCCCCCCCCCFF
%CCFF00CCFF33CCFF66CCFF99CCFFCCCCFFFFFF0033FF0066FF0099FF00CC
%FF3300FF3333FF3366FF3399FF33CCFF33FFFF6600FF6633FF6666FF6699
%FF66CCFF66FFFF9900FF9933FF9966FF9999FF99CCFF99FFFFCC00FFCC33
%FFCC66FFCC99FFCCCCFFCCFFFFFF33FFFF66FFFF99FFFFCC110000001100
%000011111111220000002200000022222222440000004400000044444444
%550000005500000055555555770000007700000077777777880000008800
%000088888888AA000000AA000000AAAAAAAABB000000BB000000BBBBBBBB
%DD000000DD000000DDDDDDDDEE000000EE000000EEEEEEEE0000000000FF
%00FF0000FFFFFF0000FF00FFFFFF00FFFFFF
%524C45FDFCFFFDFCFFFDC7FF52FD7EFFA8F87DFD7DFF27F8F8FD7CFF7DF8
%F8F852FD7AFFA827F8F8F827A8FD79FF7DFD05F852FD79FFFD07F8A8FD77
%FF52FD07F827FD76FFA8FD09F87DFD75FF27FD09F827FD74FFA8FD05F826
%FD05F87DFD73FF27FD04F826FE26FD05F8FD72FF7DFD05F87AFE7AFD05F8
%52FD71FF27FD05F8FEFEFE26FD04F827A8FD6FFF7DFD05F87AFEFEFEA4FD
%05F852FD6FFFFD05F850FD05FE50FD05F8A8FD6DFF27FD05F87AFD05FEA4
%FD05F827FD6CFFA8FD05F850FD07FE50FD05F8A8FD6BFF27FD05F8A4FD08
%FEFD05F827FD6AFFA8FD05F87AFD09FE7AFD05F87DFD69FFFD05F826A4FD
%0AFE26FD05F8FD68FF7DFD05F87AFD0BFE7AFD05F852FD66FFA8FD06F8FD
%0DFE26FD05F8A8FD65FF7DFD05F8A4FD0DFEA4FD05F852FD64FFA8FD05F8
%26FD0FFE50FD05F8A8FD63FF52FD05F87AFD0FFEA426FD04F827FD62FFA8
%FD05F826FD11FE50FD05F87DFD61FF52FD05F8FD13FEFD05F827FD60FFA8
%FD05F87AFD08FE7A7A50FD08FE7AFD05F87DFD5FFF27FD04F826A4FD06FE
%50FD05F850FD07FE26FD05F8FD5EFF7DFD05F850FD06FE50FD07F826FD06
%FE7AFD05F852FD5DFF27FD04F826FD06FEA4FD09F87AFD06FE26FD04F827
%A8FD5BFF7DFD05F8A4FD06FE26FD0AF8FD06FEA4FD05F852FD5BFFFD05F8
%26FD06FEA4FD0BF8A4FD06FE50FD05F8A8FD59FF27FD05F87AFD06FE7AFD
%0BF87AFD06FEA4FD05F827FD58FFA8FD05F850FD07FE50FD0BF826FD07FE
%50FD05F8A8FD57FF27FD05F8FD08FE50FD0BF826FD08FEFD05F827FD56FF
%A8FD05F87AFD08FE26FD0BF826FD08FE7AFD05F87DFD55FFFD06F8A4FD08
%FE50FD0BF826FD09FE26FD05F8FD54FF7DFD05F87AFD09FE50FD0BF826FD
%09FEA4FD05F852FD52FFA8FD06F8FD0AFE7AFD0BF826FD0AFE26FD05F8A8
%FD51FF7DFD05F8A4FD0AFE50FD0BF850FD0AFEA4FD05F852FD50FFA8FD05
%F826FD0BFE7AFD0BF87AFD0BFE50FD05F8A8FD4FFF52FD05F8A4FD0BFEA4
%FD0BF850FD0BFEA426FD04F827FD4EFFA8FD05F826FD0CFEA4FD0BF8A4FD
%0CFE50FD05F87DFD4DFF52FD05F8FD0DFEA4FD0BF87AFD0DFEFD05F827FD
%4CFFA8FD05F87AFD0EFEFD0BF8A4FD0DFE7AFD05F87DFD4BFFFD05F826FD
%0FFEFD0BF8FD0FFE26FD05F8FD4AFF7DFD05F87AFD0FFEFD0BF8FD0FFE7A
%FD05F852FD48FFA827FD04F826FD10FE26FD0AF8FD10FE26FD05F8A8FD47
%FF7DFD05F8A4FD10FE26FD09F826FD10FEA4FD05F852FD47FFFD05F850FD
%11FE7AFD09F850FD11FE50FD05F8A8FD45FF52FD05F8A4FD11FE50FD09F8
%26FD11FEA4FD05F827FD44FF7DFD05F850FD12FE7AFD09F87AFD12FE50FD
%05F87DFD43FF27FD05F8FD13FE7AFD09F850FD13FEFD05F827FD42FFA8FD
%05F87AFD13FEA4FD09F87AFD13FE7AFD05F87DFD41FFFD06F8A4FD13FEA4
%FD09F87AFD14FE26FD05F8FD40FF7DFD05F87AFD15FEFD09F8A4FD14FEA4
%FD05F852FD3EFFA8FD06F8FD16FEFD09F8A4FD15FE26FD05F8A8FD3DFF7D
%FD05F8A4FD16FEFD09F8FD16FEA4FD05F852FD3DFFFD05F826FD17FE26FD
%08F8FD17FE50FD05F8A8FD3BFF52FD05F8A4FD17FE26FD07F826FD17FEA4
%26FD04F827FD3AFF7DFD05F826FD18FE50FD07F826FD18FE50FD05F87DFD
%39FF52FD05F8FD19FE50FD07F826FD19FEFD05F827FD38FFA8FD05F87AFD
%19FE7AFD07F850FD19FE7AFD05F87DFD37FFFD05F826FD1AFE7AFD07F850
%FD1AFE26FD05F8FD36FF52FD05F87AFD1AFEA4FD07F87AFD1AFE7AFD05F8
%52FD35FF27FD05F8FD1BFEA4FD07F87AFD1BFE26FD05F8A8FD33FF7DFD05
%F8A4FD1CFEFD07F8A4FD1BFEA4FD05F852FD33FFFD05F850FD1DFEFD07F8
%A4FD1CFE50FD05F8A8FD31FF27FD05F8A4FD1DFEFD07F8FD1DFEA4FD05F8
%27FD30FFA8FD05F850FD1EFE50FD06F8FD1EFE50FD05F87DFD2FFF27FD05
%F8A4FD1EFE26FD06F8FD1FFEFD05F827FD2EFFA8FD05F87AFD1FFE50FD05
%F826FD1FFE7AFD05F87DFD2DFFFD06F8A4FD1FFE50FD05F826FD20FE26FD
%05F8FD2CFF7DFD05F87AFD20FE7AFD05F850FD20FEA4FD05F852FD2AFFA8
%27FD04F826FD21FE7AFD05F850FD21FE26FD05F8A8FD29FF7DFD05F8A4FD
%21FEA4FD05F87AFD22FEFD05F852FD29FFFD05F826FD22FE7AFD05F850FD
%22FE50FD05F8A8FD27FF52FD05F8A4FD23FEFD05F8A4FD23FE26FD04F827
%FD26FF7DFD05F850FD24FEFD05F87AFD23FE50FD05F87DFD25FF27FD05F8
%FD25FEFD05F8A4FD24FEFD05F827FD24FFA8FD05F87AFD4FFE7AFD05F87D
%FD23FF27FD04F826FD51FE26FD05F8FD22FF52FD05F87AFD51FE7AFD05F8
%52FD21FF27FD04F826FD53FE26FD05F8A8FD1FFF7DFD05F8A4FD53FEA4FD
%05F852FD1FFFFD05F850FD55FE50FD05F8A8FD1DFF27FD05F8A4FD27FEA4
%50262626507AFD27FEA426FD04F827FD1CFFA8FD05F850FD27FE50FD07F8
%26FD27FE50FD05F87DFD1BFF27FD05F8FD27FE26FD0AF8FD27FEFD05F827
%FD1AFFA8FD05F87AFD26FE50FD0BF826FD26FEA4FD05F87DFD19FFFD05F8
%26A4FD25FEA4FD0DF87AFD26FE26FD05F8FD18FF52FD05F87AFD26FE7AFD
%0DF850FD26FE7AFD05F852FD16FFA8FD05F826FD27FE26FD0DF826FD27FE
%26FD05F8A8FD15FF7DFD05F8A4FD27FE50FD0DF826FD28FEFD05F852FD14
%FFA8FD05F826FD28FE26FD0EF8FD28FE50FD05F8A8FD13FF27FD05F8A4FD
%28FE50FD0DF826FD28FEA426FD04F827FD12FF7DFD05F826FD29FE7AFD0D
%F850FD29FE50FD05F87DFD11FF52FD05F8FD2BFE26FD0CF8FD2BFE26FD04
%F827FD10FF7DFD05F87AFD2BFEA4FD0BF8A4FD2BFE7AFD05F87DFD0FFF27
%FD04F826A4FD2CFEA4FD09F87AFD2DFE26FD05F8FD0EFF52FD05F87AFD2F
%FE5026FD04F826FD2FFE7AFD05F852FD0DFF27FD04F826FD67FE26FD05F8
%A8FD0BFF52FD05F8A4FD68FEFD05F852FD0BFFFD05F826FD69FE7AFD05F8
%A8FD09FF27FD05F8A4FD69FEA4FD05F827FD08FFA8FD05F826FD6BA426FD
%05F87DFD07FF27FD77F827FD06FF7DFD79F87DFD05FFFD7BF8FD04FF52FD
%7BF852FFFFFF52FD7C27A8FDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFD14FFFF
%%EndData
endstream
endobj
9 1 obj
<< /Filter [ /FlateDecode ] /Length 10 1 R >> 
stream
+H‰ÔWÿn·|¾Ãöv
+9ËߤX’»©&dÇ@‘ÂÕÚ‡žï„Ó©iúô~äîíI² IêÞDŠ¼»$÷Èùf¾yò»‹WgÝõîoã™|Þ6ìɓ¸W‡Ýþ¼¡«Í‹Íæîö°Ï—ž^>kxû¼ÅCÝwU|3îo×»íùtkÈcŸ~ñÅÏÊo\z½>lF\üaµß®·ïž¯ÖϦ…02­¸é¿l͗­j„8—wÃîn{‡Ãî_ç͙jÎt#x#ò
+\_Ž·¹ŸvoïޏÛÃÅ~÷v¼½»Ín{ÞÄWÛæ›Õ;ÜY57›ÝMجÞþƒáëè«a½ñîïW‡Æä/Ò½W4ô»[ŒÁðüw¾l¯^¼Ç•Wãá€õ1q^óòë°\	O¿¿oþ"¸ÙcÄ_ŸÑΙ2í«ñfµ§
ÀLØ=à)n6iüûêns(ë5ǧðçáY> ß7/oò…[d°
+¯?¼ÀÍ&œñüßñ±‡å¿E#EË\\¤¼„(÷MÛ(ì1ÀŒ:âi~żu¯Ç÷7œ,{®‹Ÿúÿú6œîÚü²ÚúÆISnOpüçzüá¼ùv·Ë1uûëõ¿q/£ËµË»Í¸ÿn»>`Kh_¶ø›Ýõ¸ÁW˜G›ØâÐïòÀëÕþÝx�·v›»QÚµõÖ·wïÿ´úqÌ4âe—7ãöõî
½Ý™ôù,¸0¦±R7¾œƒm”˜$/UfËcóÈiJ‹í¾�A^î×ïÖÛó¼Äyu±º÷—ãÛÃùçØÑh®ó¶Þÿ¯Œ<Ÿl¾ŽÅÚÂѯ÷ëë#E]}Ûçnñ㧟òµ°C‡Ã¸-¤î·×q÷>Äm®ÈKä›Ý»roþ›î`±»›òýèßW8³‹ýz›ß€}{ølÂvqÿëýêz©¡ÝþíÙ¸={»7Íå›ðŒ=¸’ùׄkö=ûŠ
Š ?�±�ŸÑô¡|!²>è�8Àнê% zÞ·iÀˆ˜Bê’O.™¤“J2ñÔÆ“Äb‹6š¨£Œ"ò0`æBè‚6˜ ƒ"´Ý€Õbº®sít§:Ùñ®ÅúÉßyç×^zá[æ—\tóÎ:㴓N8n¼d²ÁvÖ[gÕVYi¹mÍ`’‰&˜Î8c1ÊH#׃îuԁéN;mµÖJÍu«z•TTòÊ*£´’J(Žíìe’AvÒK+ÔRJ!9¶¶IÑ	/¬0¨C¡„\´ØklOߜwÜs¼&€¥¹0–çO[N£M@lÐp­k
 Ebû¨Pðç'üÔg8Ë¿&òÍà'XöHcõ82ûõ#0'°3Üÿ(£›ùÑ2tšð´ÈîT{¯ ŽEÕ³OîÑOÞ½²{°k÷vTh¯XÛ¶ܐà‹{,ÈäA«�Š%mà-¨'@B:Ðҁ ˆAØó¶ °dÖ`µeàˆA÷‹µ’£�¤T(ƒ’p(ŒQ&=­ÉŠG¡„JÉ¡ :PZ	%60š£â$êNkƒ
+tÚ£Š2¡4ž£P%
+V£l-Ê×£ˆŠ9AÔ·E®PìÆZ†º÷¨ÿ`#” Çy·ŽC¤SP	µpЌÎ¨G‚¬
(1I‘^A\Œ·±	>Bvz?0Ô!ï´HA“”Éu U	Š5 V9ôK%3P4]ë o*ׇ!¶‘C÷dTP@-‹.z¨b€:&h䀒çI@5ÔÓ$õÐÓ�]M¨°¡o! Š« ½*ì ÈÔ9Rù
Œ¨ ¨D4q=s/6`îLR†öþüü	ùÇÁ>õÀÏÅg8¡8»á¿Å''8S͓«°'À·SÆßf…ÏŸH݁xZ˜Ú³²"j¡ji$NۈÜH¨©‘ VbFþwž‡á¶&ÆL?Íi±„­¸–§v4¥®“-Qj&ï¨Ÿ	lnk¦ÖÆÏ
Ž›ßÏҐéíëÐyÔ4a­B¼›\”_.¾O>¢È)ÚÚbMÝU Ž³
r©ö³ÀŸÖw©nªïù“p
íjßMŒ=âb§úÛËÃÊ(͌ªÐ¦*Ϩ
:âèd=<L¿,¼+À·x–„_Y˜U¶*Õ#6Õ1ò¨ìP‚Üɒ3ÅìJ°$Iv”Í([Q1¢bCل²eÊö“ͧZO1ž£íM'[N¡²ÙHM¶™Ž,f€¿w)ÞRœ…|…ÁV²©X2”l'YI6)’¤øÇTËKï(ÅX½ƒUfŸò:Vävon>;éüí'üU+àÿbBRèJ_•¥èŠ%9QÔsjx{µP5~)ÆSDLǐÈÀÑ)'Š9)¦š=x]¢*qa¨ÆX#£«¡QQlä(JŽ©fGOéÑÔü((A”!#¥HÊ³”$eIŽ„5@ìsœ(«™R•T‰�Vreœ“¥³¥¨é²Ÿó¥¯	SOÓ´ŒbfÊA½­§¤i(kʚ6‡š7%NW3§*©a¯äÎX“§c5|ª?‘K�5‚ºBѶËE
+=Í %–ü	*”ð)x–Ði(kæ„ɉ
+‹Æa֌%ÂœºåGܖզÀÌ­ÁÔ,!@|ì÷ª Ê:©¦¦Ú,<RÆ8Ùò2s=L«SL%0ÁÔæLož‹aÑè°¹¹ºß^kk•J{µèŒNd½„¶ØàS¸Å»”=›ÞcÙßM'¸\¨¥Z`fè#È-H ~Ñχ'œ£©M,-V¨=OV'¿ì|jÛ£‰U‘+žOðމ•úd‘hj#њ$«V–+ŽI)‰R§lˆÐ$=RТ§¡Aú£ =-³ædÅÑP›¬5=t&«Œ…Âd}iqtYY<©ŠÊŠBrIJ²dÉ"’%$äƒA?²zdíÈʑuÃA4²d@0H.²Xd©(BQd¢ˆÄ$'ñQy h?‹˜ù¿Ÿðóom~í	É-ˆœz{E½ü²iOàӀ'9è%A3
?² ù(˜@ÅÁ€ƒ˜ôÔ ©e`«§ž>殑èa_ïÁô@­}OÍ=‡ƒJjð
\ÕQ“à´)7ú!ƒÃ‚%j(÷û–:þŽzþT»~^û~M¿£Þ?P÷ßSÿÏ)¨)¸šâ"ˆEp”ê>¡úJˆBGb(x(D lÐû!ðt¾†„Tbz ^('áq”å…‰¡¥Ì )5˜hôÊ×è(<´5>¨9@ø“ÑV·)^c«GNþ80rÄûñ´«î	2̍P8PXPxP˜pä‘
÷øðY1âS|ø(#ãÃO`C&ûÙl¨\8a‚=Ҁ=ʃ%&.ôsÿ!ýDZª›æØ/—¹‘#Š~AþCo°c@&_Ɂ1�Ÿ†7ÞxéÅ@�A24ãÿ÷½72“¬*²ªÕhϪ@ëQì$+3âĉáJ£*j®�öQßDµ¿‹D™?ìo¾ú‚J…o®â “!»ä‡Îœ=«ºWT1jE£Ut1BŒ>Æ`á¢d¦˜®b>ˆë{.ÂÝÿøaÜ<ÎÅ¿,‡ñªþÂëá‚Û8±hûF}É7Rx¿·öêޞÊ{Ï1æÂÝ¥îK–÷>ê{#÷ d^À¼	Ü@Ï�Š¶ i
ªzеpHˆ¸€Ýø
Àp×À²G³.8x=ÛøÀñ<¯Áu¾H°Ýõáþ!Ðþ[´ƒmÁkXÁÒ
cÔ$0´è&µæ꽂¸³¦‚ý'h2hà(§ƒ¶pf´¬QCBИÐhPðV
“Æ…žza£‰ÁkfX55Lšú*84ÒVÃCÅñ<æ�1k„4DtqŒ¨â ±ÆQbÌÃD{9N¬÷
+d±‡Ô	nûDŠæ&Úóp÷>¼Û–.v±`wG‹Åv_üM÷‚…®–¸·[äìË=\d¿‚ˍzkÎ鈶…Ž—¹ZÊÖq=ÿv‘ n!l×9ê^p(	}!oQO0H\bâ£3NdLì!‘ñJ€xBç^„‡8
c8œ£Ap œàp‡
ÏEƒàÀÆí"†ˆ³†É‡nñc_VHë·YómÖÜfÍÜ4þ…)Š.<!Oß?ˆò)þ_ùäŸü»(xó?Ý¿<ïæñ7¦]Óö¼Ñ÷µn´›uOØ­wÿ6­Ké3<«êqC¼¥Ý­tÿ6{'ß4öÎñ§>­÷¯sv‡~Ù]sñ²oŸ¬°tW¾Ïï7êñ½¶fYjCÛ"ìï+Ò}û%ފÇÙý0ü½ùeùòáoßÞ}øôñËïöãÇú’þ맧?Ÿß}yÿ—§|ýôíÏîâ_ZoüÀäPüõ{Gžò4btê¿jigÂrÝtƒ¢g8ÌbTL‚Ú,°-qÐ)¸R#ætDag¸#ð€<©—¸—È—Ù‡ø.ø¹SúEöáøözDGÜvDÝBÌ9PŽŒÀá¶l Öh#`¶â»T€X|M Df5àÕ�R­`T
6õ Ò
+5ðûÁa³Z0ª�Y@T�"µ�Ò³Àñ6z¼qôxK…·TxK…·T¸L…Í+³Be?ًäñ§4¢,Yß®~ëê³ïqžéëßÿúñÛӇO¿}ýüñÓç§ß¿}ýϧ÷ï>Cî|ˆÇ4fDp¡cQ9“–ky¹	wþÑ.öK?Xw'ÏìîÄùÚý‚Ïûb÷¤pÏ<|òsݾ˳ßéà
l8–¢RxQ­¤U‚lÆ6ÒÍøvI¸Ä¸H9ÌEȁq‰rãH¹Ä¸pÁ¸rç@:Q·Á¸íïñóH=Ÿ©gÜ3ò‰}.âÏ�h4	BC!ah8q‘ˆd"©H.KGM	H"’$&	J¢’°$.	ÌVÐ$6	ÎJð$>… Šp é"š2FÅ ècèEÚ.Çv5»¨S8ýàqãè^ÃY¸óÆá£^ú†§áÏÃééNÌwâàrñÏõ¹±÷ÃéÇÏß?Ø>wÝÉÜËxÑõ:oøJ~›?ð
Ï÷önèPpÜ¥x	Y©Ô¥ÙDf€ÐL›¥Xqg	Û©`=p.øO€õð¡�žAñÕp%^Ì©qP¨*Õ¨€/äj†d­ðƒÒÅ«†‚µ�yØÃÌFÚS[ªíº„»y\
“#„:tö¼š7A÷ØAVô6¾Ž‡
+â>HaKF´=iö£M@ö*t;¼6œOŊèZA0ƒp9	iª†WŠ³äm-þò:q™|&§Éë‰ôvÂ8pN¬“ï ¼íI}ҟðåïÚÅîÀî3*Ø5f»»ÉêúBQ*¼¢RÔ1E¦»š“EØE¾œ~ü스£8÷pa:MÔÖ}$s{¬Ñڒ‹UòßÕNï/µ—žÚX䣷95§#
|$$ëþBGwאÝg{¾7g{˜"ž±1?=µSù�	ç�f¨
—å_ïʟſ•*þTúVõªy—KÞÇbos±©ÐUæÞJ\õbm«ªcE[5·N¥Ü«ˆY‹j·TÕÖª×Nu:¨>Y™«ÊÑ«Ëk€ NPÅÅõ+¶¬„CÖàO<æ�ӜàœË°Ž,ÔÃGkxitÈå�i ¯Ë¸b«KHm¹m ¹ÁÁwxï=Xç6ìaÅ
Õ=|y„7/óºizŒ
$°Fú¨$S4(€Z¼®nÖ¾Y<8I<üؗT_a]ñ[ó:­ã:@ŠøÖÊü+¹~-ßï÷f÷r{¼â”äÞe·¯vv?OS¶ûîÂî“Û'³Që“ÔNNoFo>o6_#«’Ë/Ñ㇨ðmÔwÕݴݔ=8ùz#S§§ôYj>HÊ;Éx-	/%ßtîI¶Ý˯[Yt…D,ÛÂa[dç„,­YÛ"k´-l.°õZڄ4î’ß"ùkG18¤Å1¡H”Kp¨›õS£’<*ªÀY.¨°	u6 Þê®EõÕ(Cr,pÞÊsB™(׀²mQ¾5ÊØ£ ¡8HÔ8vß«)´±xJÍUÓ0¢—Rcû¾Y܏íÞÔ²^¿é@gX<düíS¯[Èù‚7áŸtەn<éOîAc¨ânûsÚ×q¿/Þyœ;Üôm¡ ¦¡ÒbqYymÖJMj銷BS©Y±ÍržA~«“¡2œÊ®’:•zÿUå7©ü¬�{ùW'£“Ur´2–"‹Ñʑ9:ÕdçÞ4éÖ²@Ïú¤¢<­@Y¢V¤,S+T–*‹Õ«XK§z]% ³bŠ•»Õ.«w«_«àUnË*f[%÷üªVͬg«h»X×¥ª„µÍê¶úf…³Æ;Õ¸Uy-ï.UK`²S±³Ü­à	$‹žeo…ÏÒ·â·«Ð�¸(f‘€,ŃÁ	
+ýUFíòèõfƓy§Ì˜IÙå%M)iNÙ&•Z‚ÒKN &[ÄᄓI¯™„JRJG¨"½$„
+bbúAù˜eÉ;è2‡FkºAÙ j!(¦ÆFò³s3ó
+Y…‹R‘”b‰>QeŸØlbs	š=bŒAƒx†?l1ͳY„…ešw)§ U˜WÀ,œä¢•`X„=C‚␇+°ËñjÉãU™Ç«:WÝÅx5mãÕ6\m£Õ6XmCÕ6PÅa*NQ>ª›&'¦Ž[n7ë›pë¹ùÔ¹JG`‡Àc0±ãaØqð@fGÃÓ¹ØÉðlÌôxBf{<'3>:ŸYÎ,šOÎìç×8!¿>¿ϑ'9”f§(ϔ§
+²ˆF<Ûíty¾vÂ:cg‡w;Ú&žj—Ï‘ÚHqœ$ŽRÇoL¶ÞêT¸Ç«¾=¿‹¥GdxsÈ7‡”CfƒÄá51US²†˜¬S’²\'>(‘ƒîkóÁÇ£·ÃwºÛÎß2Àr€YШœÔwU^^…fnUf,»ìˆùᔠ1=––ÌÿŒœ`1ÝdÄ÷åÃI60܃\8ʄë<û$pʂ˸̀íü·H9³@"ai0¹˜	)Ú(œÙüÿïÚðҫ܇ËcÎÙ¨“Œ$ÈF˜XuJbU•”ÆN2ÈDfø™ÖòÑFZlt
Ÿd$æ$¥$°‘—Ôë ü%¬e%?a×uïpÐLò¤)•
+é@w¥¬ô²Ú	·4«Œ¥D&ÑYxùñÍe¡B;µe›²5ä f<²%2ìÂìÃuìÁ©ÿ±÷ªóòðÙu]n»mî¸ì¹Sê·Ò†ÂÒÁF¿:ojŸÏ/é]#½ÛÆRò°¯eÜن¦çâæR÷fmnÍõ’¾ýöRýfÉ_õ¯–�jƒ%qáÿyƒ›¼ÁÃÕû¼Á] ““žÎÉvÌt¶­õQnLlÒ¶ÎqSË(2i?“0Ò\V'mñ;k;o\væXËL:YÉ #1ƒ,d"U´ÈÎEÿ0÷ØL²Ê.¹7ÉE‚Qþó2é‘[9‚ð/Èÿ0—ؗ—âfèÂâbøì£$ºèð¼ü~gDf-ìf&¦g$t³Y••_.Áb"T¬
+àÄ)d	㈁aø`èpÁ†ƒ,±‘+VLJ™Ì„"=¡¤u”8	,;á%:R�*f!WŒ¤@òéŒ/HÆû‡®S|‡Î#äŽ#{ÏÕ}¦‹ûdßɞ³�£3	\g‚ÉHb¤ÇΈdŒ²7#ÑsqGšˆ¥µwfi¡EB“:8cùvu³šÉ¾0¬“ÙŽ[‡™“ã»s£[؂ù69ñޙ¡ÑÒÌÔv"{$¾/nnÑ~ ¢ônr-"€Ðé’ÀFZÝófæ‡QB›ÀáÒ¼7Ý4¼5ïú¼þZB‹_MÓ/o­þ1¾5oÝÛм©á3—ß~ÿ©ÏÄã;ÚvÆdž¿Ú~Ò·è[ùÆ~xWeé߆é]µ$Tßò3Ÿ²ïQÓ´ËX¢M4ï£Þ³|ϽßîÝLxŒ‘ïµyúÊ7† »Ð×wþ‘wó¾³Ê&ßÒøwÛÖ-ïPærÏߦwŠ»ü¶þmøýøöù¯üóó×/ßþcÿ¿üëë·ô_yûÓö߯ÿûã˟%ý¡÷›Þâg=Ÿ„„c5{ñˆ©p[
¬tõ¬ŽDlåN*Ò! í´ÜèŹR§°âÉï'¯Ñk §â”]
+Uñº¥í4Ä쓨
ÐÚiJÀ-�Ë
+ð=‘F"˜A~zé:Òª!•ƒËÍAgVÑ)Ýj&«^³Âú{
+í%ÃT)&‡˜kŒ98ßë
ºúdÛ§ÚMáØ	PB’5–ÍZ´ÙI)@ÚêRAm/‰l«œ³U„[7”ÄS±nÉ=‹1¯ä^õ©=žjþM.œ²Ðáû­;Í]ôÌHõ¥ì–d`¹ Þåë߆y™
+îrbɰŽŠŠ9 ˆmæÓNÆ*)L>3ýÃ.–Ì°úñç.¦ðPïbʑéX×:åÞOq:¿ÜKîâ士OÅü4¡ºßʪº!Bò4¬Õ4Ì$ò§iðӑÜO3V‡×.ÍnñÆ$kõZrÍUMUU
Vℇê/ÕÝVû\6Ñ�Ñ_`;¸Š|薬ØQßÀ‹Yb"57*9
+áÑðñ�ŠpÝ­c$@2pxGÇəD³*
+w2ÏI¸T¼QOÆĤ‘È45‚ps#\²NÇN€gGŽŸ�ÐI \¤Pph$ÆíF£äQiKà•BàH65:Ÿ®äE|ÛÎ]T8-¬Gû÷¼Güd~)ÐïÌGý÷ÜKþòÿÞÓgú¿ãÿ§ ¹W!`dsSÀ]¨’�wñ×bÖë”%¿³^§,ùµ˜õ:eɯŬW)KwÑù÷“ŒÍ÷Šúÿq¥¤þk¿ÔöP1ךkñb(ºM)Úý`—ÑXï&ÔшZ3#Úé )ínïZ`<7ؽ–•DÍjþ‡ýçXUZX`
®Œ–¬,]už°Z›6›ºåLiëäÙòkÌÙ«$0üLLa3—ý(äD&|Áڙk¶ŽËßéRI<)úïkQr)‡T|
+$„‚‰c$€˜ª¬B`uÔ9óPßr¬gªÐÑ+Ožè¨§?ê‰ï蝧ÎAŒH¾˜ŽqAwG¼¶k:„Ïoj½ÔRŽ©ØIÕ/Çóյ㩚ăYŽæêéc–ŒN£Ç3®�U#”%‡!'†®ð“�¡¸öñû×tSó¥–\«äc½6/)¡]Åå®ÕRF;§û@9ø-¸f¡®&/3uÝNÒ4–*뮖„öÞÙTnPðÇêxQg]}#OµUu^éò˜ØûAðpg`ÁÏBà*4´HSƒ­í´6ɓg³£Í™Ñ
<#ínæáYy”6³=Á)ãڛï]7äw!òV>Šð—§;…©1ªQ+d̈ó‰Ù9)þòþ¸�ÇØ´ ”nôDž^¨‡‘‰h'€ŸúxÇè:0EMzUOàýÆΝl†n¾`Çk«»lÍNc8É
§²#ô>³ƒSÂŶA_ÉÑ%b7n@ ã䖩Ì\>9}rûäøÉõÍùÝý3১;¨WˆÃóL¿1ÛҌεÆNlêˆLq	©˜ª{Ö8žŽ„Ó‰P
+Þ\§y™tgeO£rØ!·ÍäéýÄÞq×-uængA.Ï4¥*Ån96\’¬çØW1V®)։Û N¥sN¥¡È*†Œ¢ºßŠªKªäTzdI­òcAwE‹‰3áÅÂ>ÅA†ÀÝSßʌÇD'Ìn½ç±¦>œÓ4!Þ”G.
Üݸ=\º4x#ÅyöZ|mÓ Zq1Ê4–z	§³çvXٜZMœWL,~rOôÚ8¿û£ÖŠ«ks£¬µ®š¢Ž•¦&U]f™´JV×ÍõÕ4ÖuÖ*4^Io“æšîÚåJ!”à$õ›¯™7³ÊZCî`κÞ»KÏÂE#q™,"yæ~t¾UÁe²–Ê5‹å‘“s.>è!G¬Ù70úÀ?ªhp'Ââ—,1ì’Ò—+­©AIa¦°E[7O	)ŽÕ‘,€MÄYd!rlu:Ó‹Pe4\ ‰X'µ*«õ¢/øé’Ørf3¨»W÷.™^={eò®6çWú'y¢OÖÕäm.L•¢Ï®Ðò ÒKյӅºÍä0Vr½&^ÈMªDÛ°ô'õ¦e_Й‘MYȀ¹lFi n•Òv w†+¿UìÖgã4»LIc¤'*ÓÇuÓ8qª@uºÚAtÖ�ã¦QãÔ±è·ðcüóýëÂFrLWdê^�T†¨ªÉ0U€ªÆª®jÄJ'o­`‹§PòQLFàf`u±„ÚÊA*¹Ñ’lKutM|ž¬¡’¢¶:Ð}ö-y0…åb
+nìމp‚l¨ñïÔ¨wj°;•›NL)†(­ÁÇ|à1à³)±z•‡$ª§	ƒaDhH‰´%G5–Jµp)v)eE§Ë>‹ÆdÓ00&FkÀÆXn=7|=>KOé¦çWAn!ÐYšA— ¼�ŸÂ6p‡-à¢ððøz|—žyÄÞ‰‰1 
+
†`;[ÑV3°mX7ž_ŽOÛÂÔ!Dð"ubæA´GOHà”“°zŽ'ÇWã³®™œ;1ž»Ø;ë\Ì=›Ø-ëU—»tX؜%7eÈíhÑa'ö܃…›o[ò–7y³7n³mòdÛ˽õ}§pCm;×¼‘cÞÂ.ïÝÁ]³=[ò^
y—ZîîÍÁ½Iû2ç1⭙·Poáފ|}E×VpÀ‚‰ÁtÅÂÁJÂ4Ϟ¦–ª#¢Šð²é!A—ýÂI•W ?cðOŽÞ½Ô»Ò9ï[îZéYê˜÷+7kµQ™ªN¥>•.¥¥5<ñ{՜ÔoŒT}I]I=ÉÉíHÍø |ÈmúØ¿—?®ñ#oºn¹pÏӆ—íN›Ý0¦XH±ˆbÅ≅“#%’S‰f’Hv•
+ÐðZ‰¯â&g{=(؛¿nóÕ_WJ¼‰ýÌü’
+~0”àizÆ+»œÓmÇLhó°cqgaäÉ¡g¤ñºc‰>ŸD×;å6Pmї$F»ˆ¾ü%m}&ÐwºÎ$§³ÍÚâ¶ækËKê<¥Õ9-=º?6žÚòZIlmyôÔ´xŸ&µ.ᬖ°V_ÀǗÜÀ£jÓ|‰—Á;ÑV÷øsÙõëÃÛ£_hdð7Õuř×ØÓ}ÌK¥~òº%:>:þw ×Ò³áÝt!žHì¡ ü~`�`:3>·Šê=—ÎÄû%TKv@ã‘u´(È$æì7ŠJ)YÀ÷9MkUÞVZú¦Ï~Àìµm-@AVEt0©D.䆨¢‰õz§†”Ñ©¨òǨ2K,Y¸¶G^}Z÷×»ø2·´<.̖|9“øJV.Áß]w$”/* ò\Þ8™²ùD:_Ë}yiqiiº0©ÖekâŠòrÒbl)i!i¶ˆ´.@،¹zx{ô¬‘Œ¯c®¡ª@).Õåj«*³Ás€ñOEì·\±ª•âjfMU,Õ>¡�ՃØÕUEQ¬æòÌu¸P¦Òm×Ìèʹfõ4	š)C“Kјi(ë÷ïõK(²íÿÙ/›¹m,
+?Á}‡ÚH€!‰ú¡‚Ùˆú	²™M0«,ŒÆ´aÈô�I0Ï?çžKR”Te·m`V®¸Ü*‰’ÈËs¾c^öÀ¢¶	b#…‘;Zyù*ÐÉwÏNndµ‘;“•ÍühçÙÐáæ=£ftô»Ò<]¢©˜je =š»Ú»¼;Q•:ü,ŠÞ4yµù£Ñ׳ßí޳ߖû­#ÙBÐ'†duŒ4e¨	w�LñKáKÑ˓º”¹*ò–Ò–²HKòêdùXÄ«¸&JV¶‰ªŒ©v¢Š<¥Ó/§üC–zLR:Ý:ÙKÉS˜ë•ëHSž:Ubª!nfì)Àjå¤}Þå*{|ïóØàÙà¶PŒÌT©¦ÌUc¦«3Yõ‘Aº`±äÄYGފÌ=?UI_;Å’ˆ!‚Á^ã©ü©†SõVÿCbà¤2ҐÕJ£ÚMt2LsØٌšŒ#Ÿ=£ÕÀ@ÊeU˜½h~L°³ìJ[µ÷°¹nh:ŽÚÒÒ|Ô~zZÐ@ò´¢QG!Ú®úÒBoZ̀éQ•Á"e¬¡‚sû2I&Sè^^hacvè@—ž³Sk™÷ے˜k7tnG§3ÿîháyBÛó´>Ûþx¹¨œoùéhi€{ŒœÑ€ç\ÐÞ¤Dû§Á)-eFw‚Çž˜05s»î¹Â!+´[C‹i±™zl+í5bI^sÁ¶S¨Ð 
6c‹=§Ÿ{tÝŠå&艚Æáp«[|`f±¢ó´(qÀ‹+ôahy{œâ!×gƯpëJwŠ@X¦ƒÌ¨V{ˆÎ„Õ›cgmì§&öQI"GÉ4"±$¼öNËlѼ=zÚ£ï'\2c•VpD…
Ö`ûµØ“=v«&#MKšŸ¨˜°HDÙè›Aà#º;­U¹Rå:W©\£b…ty$¯O¹:ÅڜV¦\®J\”¼$rZ‘ãz”«Q®E¹å2`$¯Ö`'«ß¤z[AzoÕ[Ì0ÿ=¾ªÊøˆ-¾<TD¿š¡»5·®ºAÉôú_åÍ»¯¾>ü‰{7#¯ê†F‡è»V¯ª‡^ÿ‚19|9±©oûn¿÷W^Ï{;;M—C«®g÷•žÝæapÍàގµëoCq㯹øðÆè�|
öu÷‰k¼¸w×þ²ËõÎ7«šÅ\›Ç½û#Ÿ·n:»‡_­«uyë‘Ú郝m/­÷q¿òr›©ÁëLörc˳±Ët‰ûºæ;òýí²¦˜¤/½÷‹¼™~éÞ­/Ï?ÿñôüñýË_v ¼ÿðñ%úéöÃ?þóñ¿ÝÂïO/ÿºéѧß”{9‘áY·‹2ö%ŸúaE¸‘ª9T.ÚCuEEÈ|`Ô@–ʪ•YöL‰](³«qÁ>
E×d·#
Q|GâT¨ÁI…“g%F}‘ËC-ž³Qš'6	VVùUñUéUá]Utš«Šë!¶*µdÖAbÈk€´nxI ¦3òkíà`œkƒcµ°©±=:PÆ$˜¬ŒRò=p¢B¾koGðÊÂX‹”°! , �:‘|œÒáD‡Ó-A¬19œsCÃä°1;ÌLãâD4B´5`rc˜%F†‰^ãó^
¶ÜóÞTä=M{LßãE
+|mŽ[¡ˆ)ë•I/æ<y6Â'âÆ1Ûi®ËYCr¬+£F41ÃBÆ!ÅY‚c€Cxs^Ðl=š®Eó5hªÙА3 AG4êÀüÑ2kÔÌš*fƇ‘q¡g(p$lú€?“àG²¹8n­É¤ª¾·Â÷VøÞ
+ß[áÒ
+;_Á¬ú´U;éÕñׯßÿõËè¿Od|a$g”¾ñ)0ºøRg,¹!÷ª—bèH;íe¸ÇòW)†;×#<z8˜
Ø}¦úW<[1äþʯ©þóÃËù‘‹ÅIuo:MO'wïý
%ŸøñµqxVyÕÝ/w¯är@Å:ÏB‚è1r³1óY9QrKB6:&Œ
‹	ÅB&Þy˜4|àá#O;Ÿ X±P,¸¸˜dŒ„_;bŸùxŠ„¼@6•’kr²ƒ¢*+¤åZúE ½Û©†;ˆrGv Ózv CÖÀÑä/ao!ðRï¡ù0
¨ÿXf°!wh`h`Ðc˜E¯cÁ:FXÈ#™a(lec0©a4x1˜Nó0šž6Á`io‚5‚Ì5½Ô0-Lìï#ÃãÁÒ0"ÌM?3¬¤ÓÛ°fX˜ &vˆ1ö³¸äˆq.|s{ˆj8jgm1u0$8í€7ÒGÅ3踋~VXò¦Ñ	ö\äW;8¶fþÝëtÁË=}\§X…ûÁï­ô³¥ÚªT0HÕär—j_Q–Ø×^èöêíX;h‰ÔßJ)w8E0oWNù©<b•H+’p…´r敱œ˜åH-‘[$‚K‰.€—È.½ü²ÌÎ0‰b:È$”I0“p&
†D“˜&QqM"'„Û8†89†9:†:„ˆ;<†<
+={|:*Ââ"Ab¢Ââ‘"‘B‘bQ-êÙd#¥#å#%¤@-ÉIJJÊJ=yI‰I™ÉQ?í£t´ŸP¢»b«$(¾ÊS#™Ê߁‘î"ó‰%täZì«Êmü„b—L/¦ùž72½_LïyyMµOzŸŒŠošO՗$ü(Uþ³6Dý7˜ÝåàæŽN ^`nà¹d“ÐWr1[ 1¨5Ô\qGƒHÑ£'FôÇ%RohÑNꪤ>ཨòé§æ«â«Ú«Ò«ÎoTxUwUö‰š®rÞPÆUÂM¾Mº›É	uÛ4[õbeÚÚSš)ʖˆLƒZª‹£Â4Q쬒"¦ÏRÔ|-ÉÿÝEu-ÕT4é¥Þû‡wEA) y©ôÈ T¿>>ezÂâ/Ox|Æ˓Ú†SMwk¼”¿Ô ô—T<t©>'=VšÑþˆ!ÞY/Sƒ¤«ËAÐÕõFh¹ºbƒ½©ŽÔDÕK[ˆ…Šö‚VàË-–¾R¿D;xê²ÃV5èÕ`‡Í¬²ÐaÊ­
+­`A•{hk§:…]¾¢MÎè(œä£A$[UF,æCßH=ì¹²J!ƒ2è©IûjŠ…ªžîÈ]ïv­£ÊqÑUÚ&Á~W=SS3åJ¡ÏS?vF'N¦O}©æ”{ŽqêBè&Q’t:fB
™RM¹«š~%buTà¬br@ׯ;¾Fë©bÆ°ÿ-gÉü â<­’]à¨þ]Tÿ¤üIó—(õS!ñ¾PrRzW¤Æˬš¼|Ê\@fñrdcÌ}ˆ!Â$‚"Ì`ør€—].‘[vjñ¡%#K–„+	VU§¥£¡ŸTB<18142–4‘HÖ¸÷¦c§¾×Ïý~íú˜÷®‘ð&‡KùKq—HÜ,û–9W¸Ô|©e/)vÚ±¶s]g¤¾~áÖ(Ë]ªM•&ݦw§˜!RÌôŠI¹ÕGŠar•„1¼}ÃÝÜÿÆ03³L²MÁ/‰^&¥—°sK¤–D,‰V<ÕÛR­åÚ5æZM¶N%éVs©†Ûs¼µ€ÛĀ›"®7 ÏáFⱜkI·—KÔµ°»]Â.â.&=’ãoHOxóö†¯zìo–¥nÕ­FU·ææü[Lcƒÿãü_åÍ»WŸþÔ±ëÚëI}åËs+žÛU·¡{Û`™‹Á_yG"êIU£Ó~UN5ñààõQ1ÿ]½Þïõu—ãÎa‘7Ó/Ý»õåùç?žž?¾ùË„÷>¾¤C?Ý~øçËËÓ¿ß?ß>ÄC·úG¹wož±ßeÿÿ-ûD®!ÆOgѓĵÄÐgOàrš†[æ”aË B¥eɅü0‘ ²ƒq¨A242xBBG&P`¼Ë[íqêÝýÚ±¶¿ò¯ùïokÕþn¯öÚ¬]jÖ»%­žw½Ž®!‹—É-%ШÞBv[üVjxÊ¢)–ytO¤«Åµc‰Á4ESw“÷?Z@eêzJ©Ì©…«f�f>ڀƒD´„h
+LoFÿ#½\v-GŠ(úñwÒLJ~¤mÄÄOÄ1bÐBªV«Ô�ø¹÷ÎpžWQ\NJ\îÃΈر–߃iCtØ}l
+~°°3ÆaҙqÈ+z¬²ˆF=A½†N­!þúAKˆ¿¦l C¨5¬ û”×Ï¢õ³ký4Z?‰ëça÷xä”ÍcX<=úä¿øäož�;¼µñêw^ƒätóß1yf,ž›gÈáNÛx¦t^äs[FóÀ™=xV Ýõ¯ñ¶é¼pÉ3êæY5{j­ž^»§ØéyÖyAO¸Ñ“nöÌÛ<ûŽíôë¼"Ã>š?Èâi¹ynžž iðL ™Y.÷#NvsnËÜ\gOJpnÕ×9°{|kþj‰ð>à<Ûã±ç/éðŽ§gAê!üÎó•úæÈÛ#ŸÙ´DF,’ò||Ât÷œ|ÒúY˹ûXõßã[jJÔéâÙ®§õtùù6ì8NÓ¢›ôœwØ_OÏƒË <¾ Ò—¬þš×ï©}ÈÄþšÓÇ7ƺ<@ö~ÇÓ~Vò='Iì†e‹Ë®á³{0mcÒÚ"¶moŠÄ"¸u BÜVIx‡¹&Î]Ÿ0— Û)íîóņ 2ª†cT¯T®	h!¶p)èBx¾‰`È0¢?Ä‚ŒP&`†8S€¦ 
¡¦7rM
Ù¦ÐMáŽÇ·2!‡˜S@G¨c¢ñN™§POᒏØ'è‡ü4‰HAâ  !²P¡¡ÂCND(À;Pû,§Ù;Pû,§Ù;Pû,§Ù;Pû,§Ù;PûN+2õGÃ[Ìx.n.ñòIx¿ïØá=y8Êäï½–8¢�ñ‚¨1
+=ˆ!	�Ûãn:ÜO>
né$Ϧ{Å­‚Ð$ º	.±:åØhp™'.ô@¬äK]M7;#wFÜï
ïŇà=·ºkÞö.2æ•Ïºö!8˜n¿WZUáT%vÅìÈÉ(ž˜E;W»«Ö%ʒg
b†š”Ã%‹‡JeG%¦$=ˆÑã´ýЬÙw¤èŒX¨§m¸ò�K|¯&ÎgÎbèbìbðŠ"Õ³wM_™¿z½sMC8¨E[5%ñÅGijQ€ ”BmE)5˜*"(L°h™øwØž
+Ny`•wŸøV¹(åâ”OXnj™ET«Îîv]ÝuÇ;Æû>âÙEywÏúÌS÷È9P6¥ÅU£¤uLƒHÍ=b ÿßD|SˆÖS¿(L'êM¡š�$£5ü¡çÈ»â-šûIs¯ÉÇà§þ^°¤Pª
+c!
+i°F"(p
+´Õ wáxO§¢A»CÃ× ù:Q�QQ¢IJT¤è€¹ɊRåEŌŠp£Æ¤G¤¢HE’¨IE”Š*Q– K úi7OªFq¢:QžòŸ§@Q¡(Qù–)R½'À:•…jÙV“UÑ«ra²[åK�¶›¿y~£š•E+²låbfáÊ«)o΄“…{­ŠËxÞûŽ?(… þ÷(ï
Ä>ƒÒ7Pù	ï€ß°{n¯Àl"v¶&W& &Nî„Ð�hÑóä܊™13‰yó=ÒiÞ{­'kïK{ð¬½f/×ê7»û%œÞ¥­ÏTïQ=xhÞ³‡øêq¾{°ŸÞÑ­G}VóF³è³-zŒ–¢»Ø[[ô›*EC±6¶’E'¥è"öPî ¶›'Eã mîqèÁ“–°$ú+z©Q‘¢Zˆ&ÂÂè؄±ZtÒ ð !Vn½“!F©wˆÉˆ:QüÜC“àˆ D=*‚”Ï)Mbpùß7Ô½—/ˈh£øV`Žh·¡3vPãå÷`@C‚".¡kø!X2r@.ƒö©¯^T7⯵úõCՐuKª)­ê˺3Ko–î¼ú3EÎU‹îØ©Þ¤¦^ôéŽÑþ/úبvß©O}ÊpÛlµg³r,§XN°œ^£ùƒ,­X9¬bª$Ô¦m}>îiòèðrU?ÒÌE157¼ û>:n¨žå]Z’ef+ ˜	”¨`¨<gWSWE\Ìe¯ ëBµ€·gš)œEÆ"	úsZàÖOYßa=Y<9
+Ëàå¢~³Ôû7§0‚Ó‚UøPCE
bGzD“­J>¦ßÁ4<P‰À.b°Õa8™‡i
+\ÅDäêjLû«Œ%m1†â¤P\bíB;.µVIØ+	±Ü,öÛáwêJzJ»û|ñ„ᨌ52ßsáå]–V<mr¸	Â֍-_™AÛògL,ŽîØH�9ð!eŽ:·:«Ì :Ýàè/dYí`”Ô;
+/ã5¢'ÕsÒ<¡{¾¢|’>“÷ÉüÂýÜþ�lÔ¿"€T@I 4ð
”Zå‚é²Aøà>H#ÌÈI!t%DâU}õü1c}V«Œõxá«©²Õ£rÕ)DUš*IÝŽzjñSÚé妓Ä4UZJ)-º#!5iñœ-‡†“ä6›¢4³df€Æ@a /®.æs¶@XFˆJ‚œ´P’²Â;&˜Æ�›ÈŠÐÜãÞbƛðpqs‰—OÂûõxÇïÉCaa&xïÝ°ÄWùñb
+÷»áJò¡ö2ÁNÌB<É3&),Z¸àÚf]Ý‚8à÷P!‰ð$n‰ÚWÓÍÎRÅQª8×xÏ­îú”*îRÅEì7]Žhºý^hU…S•††
2‹v®vs‡©sCÞxÖ f6L—,*
+”'%¦$és„(>6ÍÛã´ýЬÙã°U³vF,ÔÓ6\y€%¾Wç3g1t1v1x>z˜¼zö®é+óWO w®iµh«¦ä ^£èYlQ€ ”BmE)5˜*"(L°h™øwØž
+Ny`•wŸøV¹(åâ”OXnj™ET«Îîv]ÝuÇ;Æû>âÙEywÏúÌS÷È9P6¥ÅU£¤uLƒHÍ=b ÿßD|SˆÖS¿(L'êM¡š�$£5ü¡çÈ»â-šûIs¯ÉÇà§þ^°¤Pª
+c!
+i°F"(p
+´Õ wáxO§¢A»CÃ× ù:Q�QQ¢IJT¤è€¹ɊRåEŌŠp£Æ¤G¤¢HE’¨IE”Š*Q– K úi7OªFq¢:QžòŸ§@Q¡(Qù–)R½'À:•…jÙV“UÑ«ra²[åK�¶›¿y~£š•E+²låbfáÊ«)o΄“…{­ŠËxÞûŽ?(… þ÷(ï
Ä>ƒÒ7Pù	ï€ß°{n¯Àl"v¶&W& &Nî„Ð�hÑóä܊™13‰yó=ÒiÞ{­'kïK{ð¬½f/×ê7»û%œÞ¥­ÏTïQ=xhÞ³‡øêq¾{°ŸÞÑ­G}VóF³è³-zŒ–¢»Ø[[ô›*EC±6¶’E'¥è"öPî ¶›'Eã mjú›5_|Ì͗Yÿtsòºyòÿô»ñ¯ùé>†æÃÇ;ÿÔ_짟ÿǟZÿåÇ+‚ïÁÿûe¾5ù{›¦Çÿš¦Îÿ½`åçÆéKã¯|ýÅOþ<þö?íЙûîö‰÷,?ù™wíþÏwí>õ®Ÿ©&j¹îöÓòçáçãÛ×?ýóï_ûåÛ¿ù…õ—_ûV¾ô‡ßýõÛ·¿ÿ㗯¿êKíü{{ùՏö£ÿX¿¢!›1
ùŸ¡ÅMΝ÷k~¨ööðO0ý‹ ¸Š»°ÀNœ±!ë¼h®Ì0ìXÆÆÑátk°;°|BŒ0H%³L`¹$d[ 4Šž^3È@n°‘	q“‡gEðäèá9,gòµìL,hìù¾:”þæú3êL:³y|Õg‰³¾9ۋ³_Çêÿ/ øwÀÁ‰]Ü*äY=ÖoT
ë*î¨$kYªÉz&Ó=Þà5#
+;käân*p>§ÊLtéPê^+‚õöŠ«”}–­:lGð°xÄFÀ¸^'Y*ŸA‡EãLՙ«Þ)t6
+çuö8Ǜs~ÿØÓP©yÀí¥nUå®Ú•ê=Öo©kh(áJ®ËØH†s¨Ž1¤sêS=-
+ú\Ò^×_ʊÒF]YÙRݨ­Uå½
+|_âºÌ¥ÔW±ûHÔÛ¢äuáÏø¦^{ú‚`ªP½?¯¹»ƒè¾¼ŸÅ«çô±:“Î\¥:ëØ/—$Éqˆž�w¨íìô£(-u ¾ÿbð£UMNv/ÆlR°ªîJKE€Óù\œýMKG§G…–¯ºäþ™¼JèXÄ%ªðÖN~&ÁÍeX*uõz«C˜}Š×ô•»ºZý®¡¥äã:)°r5o�è ½@]>x8/�ô©tôN€ð
8¾Âè(Q#݈uÝÏCŸˆ~ÙG¡ë¸ÀÌ£1"e)eg üÁ€À|"=;À@Të·=$09HßfÔ쑹3ŽDš é1ÑS82ºåÁŸ™‘Ë`ÀÑ×ôÑÐÌå¢Ø"°3;kz”u–ü4dcÇƤÂ`õÚøý?k+OôZÅo¬àÕÎÂÜÕÔÕøPC+éÿÁüLêgR?“ú§'Õ%Nü_ü_øš/ˆôoÿy)ÿ틖žþÒ<üZ¾õm|‘߶LQ_š†'ôJ“Ô8ýa¦ÛߖÝ~kè²ß·?áo%³é)˜Mÿbîc.glÝÕþ~›çölßø¾0¢å´MžAíY9qìâ›QâR‰­ÔoÜ¿‰ÃbIvŠŠçþ•§Ê‰KåÄèEF”"•ß¹ð{Þ¿žtŒ·ßbâË£âñFó-3Î;}rœ%,ƀ…ß
+¦0³‰5Ž/3*Ó)¹Ëp)ù²xÜjQ«¤,ãò’¯¬¹WmêÜ53:j³ƒâíËÞ´’’oQôž$ï÷ï»Ö½j/Rl¤Eí!I€õøyÈáŽG
+ÂÒîÊd«ŽiAõ\ózVU,:ˆõÙà«)¾âϘ%^ñ¢“éº|Í
+sÜ`˜	zÀPóv¡#„¡£[áÉü9Á«øö…c1Bz3~…×o0~ÎƧf./øË"õZÐeêB¹T_¬’¬.xö%¼‚GhÛºr]»­^+cùxĐfÚwÙFÛJòí؆²ÞÂ]M¼Ptowí®íOÿdî²ìS¥k{Ånq]%^xG:%]zâHO88ªí€Aèb7üÆ÷èÛ4C‘JÝ”xëF,K¯á.ä—ógqàÁX±Ç]ïUÜçç™õ†Ç=?«Lpóo �ÜÑù̗
+¥ç3 ÐLÖæÅËV®Ôg§ï?oIKþ»>‚Ö-cµTÕ§©$Õm?óS—žn©éž—̝jP’‡„ÔrQ‹A5òøòÇêsuaú¯¸%ì7[(Î{uæÐì!<Y-Ӗ9s6×ue@JPKœÎ0^zHÍQç<qâƒþzÖçÌ�;’¡²¡Ñab ¯Î¼FíŸ~>Qñ$*¾(±¥À¨ÈhÐ8Gí<Á1KeG£Gò#ª�dCÈ"OÊ_1²d$H©,©49&ó&ÿ�“:Â%±¹q¤Q$’iøØÐÑ ±àâîXȐ4(ÛÔfcsIœIôyØ,Îáôü‰ÎÍåç=šW0ï¨ÜÚYˆÜÚ+‹³wâ~xÓ¬aÍš¼QÖ¤û³yo¬/#{’½셰Öàž’áº¦—ÐÙ
μ¢Øõ„6@¡ò9`í	~ºÁîWÿÝëe0Ì)C[Ÿ0”
¿âŽ[p8&×âθøgÂÀ6\+®ÁGh‘ üUPLÂÚdŽœM~ÝÙÖÍ}.‘á6ñäÁ L{qÞç6%æn§e¯m·m¿mÇmÏe×ußýÎÛÞËîÛþ[ZJZØ	a+Z3ØbÜ
+£Yf}&XРv„ƒâTê!KJ¨'tµæ”i€¡(ˆêá}ádí´KeW]ÚC›èµÜ7Ӎ=¯–Ä`âºOl�f¯î‰{á-ÍÓ®\¿ÂB5Flƒþ@4’ì
ýÇÉß`||OKßxג.2㨿2Ç‘â×øK_[Çý!n}í÷ÿVÁ?Å×,%yÌê†
g{»oÊÓ8%¸ßjgݹÿ¸s¿UeÿIüú/ýc%ÛÂúpÏ7Âot®oÈkUÁ—¥·ÅAúUþ5š†™sEÍÕPSœ5w²fÁâʛ$Îƛ³ó¦çJP¾#' S
+s’­âÄTÑ98wuBDŸҎғ#' Sȝ±p'­l?êOO›üòQ쫔ðäñ±ÈèѦÌ^³ä«ÖQ«¦J1Ä©Ñr¸‰°_=½æŠÖ\oò¥ 9?ÆÌXÓeQîCé‚e”ÒԶЀ‹ÞLqª¹½jª
+¢#^5|Ù-Mv·„S2N®‡Š“.âà
¾"iêàô÷uÔ:?Š +γ$ÚVÛ~ªë®¦p—ŽTíloºé5Óô’½šTބ"Õ¤Â͝îžÔé&'yÈ£6v×S™»ûP'ŠÉÔz³ (TD¯†Ãý§¡È H 	`ï"n¾Ðoêè-}Å뗯—|ü(üÇZ*–’ú¿[Wû[¥[½ººG8„8ésÜG–?²\hY®¹ãpÄ„‰¿¨ÜÔ]ô:ùÉ·ÀÖÂÚ*”áÞe4“\‘ÚBEª+¹Ñ¨šŠ±¬.„"T‰*DÕñâàÏçõQ©Ö^k«½¨3a^Ä,ŒÍÈ&w‹Ác™f‰Ü…3MÐ4[xHFŒÕ’O‹j%¬}ƵÏÀV"Û$ϙ­F¶îëc`»Ç5†5yæ÷TZTiaeyÄ÷dø.]fqzïB˟bËo‚‹Ü“ËÏàÿ3øÿ³Á/0ÿÂü±á¤½FN”¶ãâ}9¼µgÚ»UCº©=ÒG»lb4‰&%šè–=—ÔL21“,L$%“lïпž=ҔWK˜ÙfÌ­€L“	²3éuÃÇèG\øæ¯ìøÕYgÄ,–™°ÙŒ-Î)ð ÏîÕ÷kDÇ®ÓWï8¸ˆ3tûB+v,$⸸g\âã4àZÏÿP§IýõGj¿ê5Pô&ù“’¹äc•üMôBÍ_oº7åïT¿¥ÒÕÓæÂ#0óŒ^vì8d¬åTX¥Z»Ÿ’Íϊž–V¡«ÅÏÐ,qÈñ¡*2òÈý¶„Éè³Îï–|ÿU¾®ú ê¿â2¥‡ñæ4smŠû¸åíhmÞë•þ˜!”¹ÆÂâ–7AQBs²zy¥Z»×V«æÚU}„/o5{M5>Ô¿�3Î:
endstream
endobj
10 1 obj
17596 
endobj
11 1 obj
<< /Filter [ /FlateDecode ] /Length 12 1 R >> 
stream
+H‰ìWMã6üü¾\¤HQd0X€_
+r^ä”Ã`€næ>dóÿ±õŠ”,»í™îÁî!@«`»[¶¾^=VÕ3³éP³þ1¸õ6Ô½/^õ/õQ…rH!Ù|˜&À½¬K[êR€¼$ .a‘Í/°Ë@ûh¾ú¢|ñÙ' Á/„÷³w„õa¼öz^‰6W¢�™H@ìP¸¥eÀôÍ
Ø`xYÃ暒·õ
+å€|éÊÅD¸
uï‹×¼¢‚6¶XbŠK´Ñ„5T°¼€_YM`Ó£¬–6H•%MBO%%qŠåïåžXÎ^½‚
+ôGYHðìd³nŒÓNÛÕ6 Åf ¸#eƒÅ¥åR$ÇؾM€´ÕÓJ4 …ÈD""†Uò6-Wí6͸ö[PÓíÍ|ú6Ô½/^òjšYq…	7èðX9¢µiӊªM¨ C==jP脒°‚L(´M„øËìö
+>W,Y8q\d¼‹*D®ÉÌ5Z±bÛ¼Ê
+Æ:6(¯°(ôãç
+$KbB	)ÈD*Ð�ыuр!:[lj‹K'R”mq w”ÔK(¨Ú-¬ßCз¡î}ñ:¼óúÎë;¯ÿ(^Ýéçü—úCéÂtÂǝ|hùGðq~M'ïürÒrܿՇOo>.ÿ×òØéÐD‡e焺ú˜N³>ùÃäà~ÕÅÍøbF£Ê‡‹xG7¹m³ø«é4É¡óáÊ?x^ÝM‹lu”’`ù°\ÓÌ3²jçw޶ч‡þ¡£qÝ\ՇôÛü©=?þú×çǯOÏ÷ùéË×çm×/§Ÿ~~þüçÓãéËØu
+ægusïɜÜ)?¢i>*­µ&DÇxê±´‚Ž:é]uÓ+~b(,„`ÆÊ]L0Ñ$“M1•Ê¢»¶(ˆËyqIC^ºÀè»Sm£Ä†#ú¢.f“—£¸d
+KÂr•™z"Z’©TE+Š†£D,C2׺,S<›Ź=¾’-b(ÉNjhÀu4Èy†5Á¯bDÂM1#é
+*2ïׄB&ŠÑRˆµE7{ ²„Ûqžü–+Pԕ*D¾î!íïi¼_ÿŸÔøgßqõ—´FºÌýùêWYNxëç—Wï‡÷í~Ï÷–·ÿÔÅùÏ(ûç”\Õº®m­kYóš@L€,{Ì|nµöfÕmm­ÕVZn©Ep½ afÌ¡ß4]×Új­¥æšj¬AÁ<úÎa ˜ª©ºàÜ¥•ZJÉ%¡,ÄÃö\±˜nnÍ-×\rÎ)Ç`8âo3F9›'•
žhM-ÕTRN	íàN^üӝE<þŠÎªè°Œn“- ÿ<ZÑ¡%'4§Æ„µ¢U«B×ftoD/âªèj‡ÞžÐãšÆÔ8~e8 8bÀz1ÌÑL'c+—MåH–9â<‹÷œÎܘόô&f´Æu(FŸÙéëÊ¢KÙ+K/ÅÏ$@(ˆ¤!ô¤c&%BŠ%1B@AJÎÕyªäJØÊd,‘5á-;aϓAáБGK.…M„M‘ÖµŸ­VÒ[Hq&ÍB´ =x²>“yGömŸÑFI#F346DeS6Ffs$6Hd“6Š´Šg»Ìl™«Ð;¶Ïšè Û:Bö§ï·‹’›-|Th‡¶ñh €FJh¨‚jX3«EÏÍ迀≯§šÎkp‡Ë{ÜNÄ-ÜxÃã˜jUzA!"
+SP¬Áë^ÄíՋÙzÞúþýԞ4!BŒ%„	}B&«Ë¥xPÑu uG⋀OvêÛ4œJ¼ªÃñ%¾%ðŠæÍȏ|y%Ø
+
+oJ3,†e‰Ëž93ÒÕÄ×òð58›¢¹i^l¢Å‰É‰Í‰Ñ‰Õ-»Á¬L+À¾<lÌá7îJ£åš©Àñ|/Àÿ<œÐá<î]c144Z_&XOÀI=Nï®%×4Vc­4ÜRÁ­%ÜfÀízX±Ãׄ«ì¡ÌǕ÷(†ÔGª¦¥šŠ.ÔVbq¬mx’¥SáWd…2&B&R&bÖål4‘4Š uÕT¶®m•íŸ©p]ã rŠB·Iˆ]—;CÅ_)z‹±éÛÄ/0Î{J ˆ £7OŠZhh']Wq¡(Š,¦Ë3”äÒâáÞ¶¥q¢2„«‰õî…‰ҹÕ–DSꂇMƒ¯±mã”<äHZŸ’Ð=={%æ¯,Æ[è11…Yô^Ï`S^Fo®Œ`#XŸï‚bë£Ý6ÖMc Û²×!}qf³Œ^} “Á«.mÄ.œbê’Ä%y«g-3’Öˆ%ñ
+ÁŠJôm¡¶‰²­û"Ó·6sÓ
ØK¨‹lö2£½:©mP/2Ùeˆ:š3†’ÉÀUØþ¡oËîñâòâóâôôúƒÛw¿?:>=_
۟vÛ_‡íÓøéúÝ÷g²;\Ÿžßèùga£´©Úöju;‡‡uí$z”8lj(¶HÑCÅ1V0X¨Éâ"[|3Z¼xj5’Å‹T±GŠ-PÃÄxÄ¡<(}ê0ÄtrþA–Ï)> Dn!¿ý+Ž¨‡Rs¤<ØÙː»83õ£Âƒ^°ËÙñ©ó|úöCyÅ8/󬙗qa·#æø�ƒq§Å<ˆ5Ÿ/ö¦£úu [øšÐŽßcä)¢œ)8ËCQ­×yËQ¸BԇôÛü©=?þú×çǯOÏ÷ùéË×çm×/§Ÿ~~þüçÓãéËØu
+ÓÏêæ^\¥zš¿%O÷·{µK—ú†zݗ¬k¡ÚfGà8ÿeh‹_m‹]{èÚÂVX[¶
+"Ýbà&+D€b$7øÜ¤A&±WóˆVÑ*#¿H¬Z™§&&©™ª[V†HTÛÝÊЫ”ÄÓ«"Ô¥@iÚp*
ò£Í¤*-JjÆÊ	ÚhK
+Ú7Cœ
+–çJ?šiF™V$6$&”Ä€PKóëY‘o45"­Ð3ÂsR(–G¨ÖˆÐ
+
+6A{<)B®êºn÷ŸIß>‘ŽyTb›º3Þ›FoÍ¢©k¢Š.u9‡§Ðãzž@ëÁ†–}ô¤©1w–ÿU´V[¶f´~K°¾«§•ËP}ŽÔ[ ~o…÷Vxo…÷V8¶ÂHˆ[p@_TôDd?8ô‚Fð®Á´Ç©ˆœqG+¨‹ ÍáÚ+XJàg7¬0²€
DTFå
ª.5O¨·T۲ҍU–K…¥¾û{i·Âö²jµWõU5ý~IÕ¡ª£®{e{m3F^˜>æQgËdÒ7©(L¸W½0SXýL:¶‰¬§¡-mY队F¦Rãcèº5RNßÈqÛwã!%‚¹pbÀ›â3[fNkLg†©Ì1‘õ4–Fë!¬G°ÀÔÛò×Ýø•·�¦P#32ؼ§°4rXc3ÌbŽiì¿ìWk¯Éýþó	¤ìÐïùäûJˆAKVBڍÙk#ì]™‹ùõ9]ÝÕÓ=ã»$R„.º`»ÎtuÕTŸz´§ylMÙ8w•¦2äºFΧÁ̯@ÊjžÑ|v‰	M P(Ðր¼ òt>©/1±	°Bçlwà|@%Z£"£2]Æ«Î[¢\i”-‹òåQÆ"Rå	sòv^HÔ;4²¨u0¢ž!¹0ØaÔ¨•
+5Ó éܹ_¡Fäà
+ë
+ì(&Qp5
+¯E~zÜü"*ò*ó*ôˆ(Q±52Ø¢‚{ä2FKTõsT÷ËË«U³‘æˆ6ÊšñVh	0BpYfÈoTøF…oTøF…–
+epøq%†ô'‡ü­AˆôôùêÞË[žž½+zéYú£'FŒÆöš'žWÝ~×Q*í~Ël^�í³‹Õ½õcûòòpý§ãæz·=ÜTàåÓ_ώ»ÃÍîðæ»ï2|¶}³;´VOMOt~òlss³=
÷ׇÃvóþ_ÃæßïV½8(5ÚüaCù€£ïÉYvôÅGÿ‚Ÿÿøa0Ã_‡ÿ!†kÂ_|¯iŸ=K´áHuçI¢O:½$hôŸ£uqÀ—Šf˜¢þb‡rôvø€}Ùyϒ„´q ЯŸ“:$eL£cx·´*	.`iÖðŽ7£_iÛ!€vd¥É¹´î;XƒDíܺ[½;[0V¨ÙWÚ¡ñõċw1¡Všw¾ÒGõU‹Þ×éìª&¯¯À:¦õƒâ,zw'ZԐ±r4EãnÝî]DZ=K|ª¤Ô½õ±ˆUQê=!‰Ï••¦¯d`S6+MþuW2Äg[=®ÏýeUÖèO~ðÑvïØ¿~ò€•&ç:w+òbÑ»;‘­j²ñÉ?VꙙÃ-z›s3§p²Ò´˜=žaÏŸ.J÷â7Ã"\\:OúT
%hI¥›"€>XiZÜy\)Apõ¸:<÷—Ý­¢;ˆ>ÛÛwì_¿‹yÀJ“s»•y±èݝÒhò$´%¢­+=9û„
%ú\bSSØYiò=þau™[$zji'[æùfÿËû×o7o¶h˜@Mßkü뚤úÄ&™´÷ô=R¿£­ø—¤²|çVø7j…NèÔ
+1½ªÔ1†âK(4A1êÈK¬ŠÃ‹Í²}“É}³58ùPÝzMV1ÁÊd m	«Æ&)Ù2ٖINe²=‰ð«™"fƍ>h5“Øì¤9—ùµ¤ˆ_>…´>	忔ÞÛӂTÝ"™ÑK¸G…¹PcR³fDˆ‘x7Œ÷ÐRv&è1x͝+~LCvZ•®YÉQD•"cf¤�`cæà¬áõ	BÒiLüƒ­v!ºQLGTGK̀—¸,d£q.›`ȏwÞ»”ñ½ˆ$òÖå1dpôFÏ;ÄBÐ7ª8EÃ æ¨ù;§åB´›à¸f(Žw ²–ÁT9OÝÂc,„o…1,òjTáp`¼[•ƒ+>á:YnߪbåŕE¾Y½”›Ð1ÆÑÅA⺰§óaˆ®J\W—rŠ¢(7â¦grKµŠe2â7Ø°23ƄW©üèr“1+)…=œ°v!7ÉPIY>ޒÏ,J¢Â”úSíˆJºTªr¹ÈˆQxc¹`¡vågÒ#©„$êi® EHS@ƒóٝPÅÆa†jÙ@ωæ„ÜVÆJì`Ózm.·ñ¯X>"pƙ`"qæc™.qHz¤òBn¸T1â­ñÖ,冲*¬6‰n!·™Q±’=&U{œúBn2±ZIÐøTˆK¹--Œ•jP—‹EKe±D±µ5±ˆÅFIÔ8÷õð#â`Yvnt>SícLQžµh_f)co0´è0†j.Tz!RI‰xËrÄÃ`$Mz;Ð)Õ³…Œ¹PŠl¥b©¡úä@TÞÏEíG¸Ž3¦1~¡-Y”çÔBV%‹c ”wÙû˜ºÜ\u)EŒapÙl*@ê´sÙbìqY§brÔ
+û"XÞ8¹=ŽßY3AzŒ>|¸&§‹¹®ÔzÀeåÓGÇãq›†ÅaÿêÐõøqsH¿·š&ë9œ‰“^Âjä4K¥AÝRíé†Nñ‰CçlÇý•]é{C-ĊO–{ÍæÔ┤¿2„~Ÿ+²u±–âºìŚêáCùL¤{‡G‡Ù—ÑI¡˜GE7F‡Üÿü„ *
J§Ý}ƒbÄ\–V,Æ¨i…ÀPc1!¯xCš³¡`ª#R¡(¤qÔÜjâ”+ }P(r	CÁÍqMÎKKº^õLH¥«*„‘f²0ùÖº<Eå¶Ð%éfÓ]!Lûa¢¬Gaˆ“Y…æ˜0/tõ.x*ßNÊK&¬ê^6¿Ì-öêDö·DêĆ'ÌRó¶@Ù
+½%Ί4u‘⪌<)Ø©óyÕÒ8ÐÍ+ý22]É
+ç%Ñ9mœŽ­辁Nûïpa¶פyÌö·B"æ	èT´[ìuÃõBÿýêöKsÞ:‘7
ôº9†rªû:Źßáál·î=¦¤hó¤MŠRN@ólêìsšÄÓÝõpý“Vvój»{ûv‹¾°€‰!`èhP
+CM¦ÐƝ·Üä°þõ³{oÅ[S,fæž4X1IØ̍kuäÜEÓtѐE†zÔi×ÆÊ:'ïSOP”B6
ù΂µ…"ç:¦bEÉá‚á^�nåT/ª4™'ЈÓ8PW1Ôn67š°wøÿp}¼¹Øý|³ûå°9~%h.¯ÑÈóO5<||¸þ€Ÿî?ß¾ýóæ�Û_¼£…èq£t?>>¿9îoš››M£Õ>úûæÕÛmr¥<Šy¡�¦&ê$.YcŸƒ[�†HÁ­ØríŠÅPbê
:r:†AOمÊäRBE:¤™¶YÅoÖÙ`T+ÓÆÜè—^ÿß_ò±0ÿs9¯0¡FCw8i@IJL“ŠeÌ4•¥~,±¹¬Jœ/[TÚªWc‹w‘ðQ‘ª'<c
•9T
á5ÎÁ›ŽðµD®An?7úõþ‹˜ŽÖ₡^îCéù2]W…¶™…¸§á€ŒÜŠh½JCϪ§‹ý:Æh§à:]¶õõrüKª9PL–FaX
¦ÜÿÒj4Võ!R£•)¡…C™n×1ÆÛµº¦\'ž,­Þ1rcr¸;YÔb¥r·èo2ØÄKíÍ}°`ào<§dUÐXꐩêý¨‚—Ý2Æh;oZU¶z§XŽëªR(Ê œq1—ÆÀ_ºPµáõyÚ Pê<ä¶ËãíUãá�@3«wŒæ:¦b3ãpXtÿô™-Ïk	̺-ÑS}63¢3Ö}n÷N1ÁqAɎ錵®NT—¹¢ƒ»ÆèЭc,íWǚ¢K\e®™Ùýz¹þ¿Ð}À½ét‡hÙ»%>¸Bï:?úT e;·Ë
+Ôî6·úõþ¿ÒQ†ii‡t‹øxÓÇ
+…#jߍäí2¼ªÛua£ŠÂvcz»îîÑÞªQãqG{ƒ“3ÞvDe¬å3붴w˜Î¥“Ý:ÆÚýævï"ñÎ³JK|ÆZFs¬â;4Oi{â3Öº†¹!þÜì×JüV—«{ëÇúååáúÙævY>Û¾Ù
+òh¸ÿìãñ?¬W]\·
ýûæ1~؋«oé1õ[á:…‹ Š¢X¬×mï6ˆkù÷=IIWWcØë"pfÄÕHÏá!y÷øïw_Ü߁
+þ+€‚þ‡ã>UÕÅP¿×åñõ?_üåO—¿ý}¿¼«ö·ojÊ™në9UTôÀa%3/>՟ÿTY`2¶xúØi±“ñÑÿ½½k~íê—\Xï°¸£þÿÃÁ}#}}_¯ŒÌOŸ1Íõ”ÉÛþÕ;Åùå%°÷ˆã]UøƒïÚc$
B‡MÆXÿñ×OüN÷¥†ÈAˆº¨YSèLßþ
Î9H‹x½ÿZ½¹ûýÓo/ï.î.¿|zúç‡0li¾ m1t$JØgQÿÈ߂Ž2Ã7#Å/é·§vϛ¼bCE#yú€Ž¸Æ6|	ιLTÖ¨‰q™[ÔD/yä+ñböA¾¢!ô•Xô…©ëê-Ÿ^¾xÚÏùÏÕÜOaˆ—^\ÞþõàùùééîñáÝE,lζª¸=¹ïT€ä‰þízæc
E£#aá⊵=Yu-�øÑãpx»­;Ð|Òä©%É[þ »<ßå•œ?yޗv,ù·”Vzmÿe¿\•n/ĎRk!¸BíH“:CV¾ÜÐ`c5¶²ò¨npºlÖ±$ÓUÜBÁ¤sOÔb%;*~%™ßèL”‰6³`™vígÎkk64ü¦þ ÙüV#€ƒ÷<¯ð^÷“	c™Û1ë†-XTáy·“WýšÊ†‘
輓æºiîBä+Ԕ¶=Äx÷q/ó½C
+‘C¤&ì©yFoÎˌß{+NUS4[¢îÒo1:sZ¢È»Æ•Me3†Bˆµ3¨5ºG^b7
²¾	et©»­E
`zZ[6›ø>êz|U³ÉÃ1$˜@=Õ¼B§6.ÎȆ[àãºã£&…®:ÖšMˆb#”Á‡Óz¤Z³1ñá­Ï§å@fµ)á-䁘tZÓl’R8#î!œÖCFªIRVá•|Ö¥©Tè©ßÅ£Xµ6Ñ`ņëØέO6 :ƒ*!I‘´}‘]H"€f´$՝ܖƒÃjj²úXüb=*‰Ú$v¸3$m^ño6†œ‰>ûÓ²b̼Pó ‡LB*ŸÖ—š­ò­îIT•çõ@ÙfVû€€ Íš×cf4›d¯ŠÎë!Õ֔„Ô\ÎëQZÔ&j àªXÈR”%0$´Ú¤KlöèiH­çb:2Àê:Æ-ø\µOm–ƹ:˜eJ³y³-M_õ7jƒš£eÅsv*nó¯Ì™#®6ŸQôéu éÙií·`v¾¥ÙP?K"ŠMi^º´Ù¬:®6·…€² 1ÚÓÚH–$µR)²÷…ªÜ¼¦IS¤HmèbF6c
+;UÚyÐ÷DþM³™ÍYœK“­æ´N€?
s5ažMù¢àzN]²®4=PY¹ÒFZÿãõžþŒõ¿SooÙ\»Ëñ7¯¥¿dþË~ûôñ_zί>·Ó¼¸Ù/?âßÛÏ7ŸnÌåÇ_o͜v˜ØØcÖóÑ".a@̦ s@ŸÇ£ù¨ƒ{Eæù,%\7˯–'¿ºy‚‹;»øÓ
%EíF}ÈÔ ¥¸ÓÇ.«kÛÈÓRϑòZ¼ÆÐ0àп㇫`?èdÑ	Ãî;ªU 5ÌD|øy[¿&h%q<í%#tÙg7pO$º$2»¶7e<“½úv6â)Ñ˛£™šIJxtNdFtâ)U¿Ù€ö¶Þk½àhguf(²:ŏ°h ¢£õQŒ>퉍Q¬¿”"6òÃêßa¤â’Kfc ã9†ã¼D¹ìwSØف:j0N=œcƒŠƒ„€€Ë¹µ°Ñ¤"ΊW•?¢„ðåÍÑ,¯‘uû�¹Û}=uËPîòkiï’3÷7ïÁFËL¤öžú€:!坁? ‰²êîȱä˜c•zµPW€’mWRŗ½Dw_QÃ`#~$¢»+‚Ю>ƒ„(eõ!É—éë:Çôª‰z	7X|cêeL=|+¶$a™Ðçbf«Þ’ð‹‘´8q,5sl{ñ²]žàè2
+MRˆp€³¥S'Ê˺¨¾y›-ºc¬O˜ ×OÐ!ïÐãeHŸpYbÆлͯÌ} G„²™µgˆ]j âȨ)®fß	ÐыA¤+ƒ&d; *3óÞ ªùZ…êæ$üƒcyÀ/R„L:í¥²Ì6´•l²¡ÛD¹jw3[=)8-.Z£Kuº*�¶4ÿÅx/	'övúd·jÜ<Ñ�Ìô‘pqêLxK`¦t®öxŸ尉†Ć‰Ì¼ÙEN
+-Ìà+öÔ`Îìéù´Ì¼+YºÌèeîŸuâ,=JK.©z…ÖËX&Ë*Ì× Y‚wúŒϋ¥-µj¥kÏ©eÎO†¾ç‚˜OY“£»ž`ëL\fì2»WJ°ÔŒ³¾Ì²ƒÞ%7·<0‡”µc‘ËpnÝ˽‰4h0֝*†Û#˜sâÇ â›%IRšBˆq"θwo{}W“.ò„‰8A]jÏ RÅ3âB.*!YÒÌ{µÄ8Œ“Ħ@H×bdÎìœÙÓÕq©¹_#ÏB´%%W¹öð¯”çû¯	ç—ÄóËxˆ0q'˜oé0PqHÑN[ÃRÁùÔ)n0Sòs†dð!†±îœó)o¸Îù”Xok‡ì}±d]Mó6Œ
&~&ŽÅ.ĹåH潬Î݃~�dP×aooÂàVS¤å	s>ɃµS$B+]CòvΘ}G!>‰ÆŒ¥]‘­¥Ä-Åð,œ3þc”–Z’í
+1—$^Ò}櫐¬À;=ã?VŠ¥$¯Å{!ôÏ(Ä~Џ¹Ð ³Fá<dX/8‡lŒò·¼ígè¡ÅéœúÅp0µƒ—Ä+{/ç¦]–z³•k)C`²¿Ã̶×k«Ո½»ݬ<sFá,Ž÷0Ö'ÌÐ˃§H݃Î(g̞_JÏúvÆ?õ	Wv©ÆKÝ>küYú{”–Z’í
+1—$^Ò}æk,Á;}Æ¿µeõX֙UMz~íjxS¿P•�.f*¹£.ò̵QeÈIy圽zÀ!Óû¨2˜x»«�¸–Tim˜�I±Æz<íǶ×þ¨u¢„ö2Û©±1³ÇÆ~@U^—ù€(—9TŸh_fL+Ða1zkä�KÃ_¤ÐŒŒ>pG_¥ íÝý¬ bœ¤c"Ô&I«@!?ƒþ]ÍCBðE£ÕæÁ³Vïõ‘ÕÖ§(8y/Ȏÿ‹3Ñ*NX`Ÿ°œj֑@fQA@‰Uó€½nÇËÏÄ üÂ%qjѳ…îð ÒN­ ÚS”-ïÑU¾¬Â|3ðÚŒ!3ÐÎìá„?öæ`øã^ª¾E¾LÃxÆì;›$H­»}O¦Ôú !íb«‡æ†1³Ôè)ñ¹îN"3ô¨»Ä§†­ø•U£V`3åcIbv{õÁæao«ý»5*ʾ¹Öö¶®
QÐîãÆÿG=W͚!éú¶TÂ+ª¹TØ¥Ÿu{†Íw	*ç¨ÍÖ¨fI'Žzn|’#²7Yú{IQ¨¦ï2Ñ‹Tu–óÎÀU˜¯AâHÄ÷̗…œ´ÉCb6&£ØÁäó[v¼F‘Øîó,H1 >eNgD¯âeÁjõÈÞë¹!DÙëCÆQlÚ¨&ˆÕ´B䓯DÒq¥Ð=O,S̪£¡rOV¸{â^(-›;÷°³wܝ{¡{{æ”8d8¿öñ÷¨+!fîåÁ¬ÍU2êXìE4FåžîÔGü{/¸Qû¸8¨»×¢s8�!Eì.Ò%÷F0R
váH}ÂD}p¯ÿÑ^u-vGðì¸/	âõ|öÌ$O’’‡„MB!!ˊ»e…ñ¿OÍtלsϝõƒtC0Y—çö™î®®®q	Ÿ‰ÀbÛċàA¼ögëìÙÎ:_4ýóÅë²JêEW]Öþ‰>-{ºìþ%S.	Ô-û.ªÐó8~¬¸»˜¼$Ïî҅Çqƪ­4û�;m®qG ¿Ð¦p ÐÙh,9¸fë‚ÙŸýÙ	€¨µº?·ì¹êÝ¿o6+)ĂMM‰–
¿Þ|”)¹]\¾\Ï8žYçý<P5~?;<»Y„>Ö½³‰àVçf–é=vzµF-ÄáåÅ#/δq²í¢Œ_`ï/
+r!,ȲÌOµdÕ>ä€{”óF‹ã‚Þ²épž7Ø2_Ö貞¯.ʼigÁ’ÊE#”¬3DµNÃҐ•Eߗ-Õ ›Ú»Ü+é|Jfׂ¼ï¥Ð¯WÂÅú¸Ü*×|_MÆjŠ>ÃP@	«I)œUþÜÛ4Ã[µs…aDr6%l.X‹RqE`VŒ9ýý%IрE5ŽÆ®Nb =O",JŒ“yÆhü$ªÁ *uÖ~ö|o€Ù²X'åüeš•èXsÙj�£ä"MzJ­sLênô©³-S¦ðoƒÖk`ΕuóSCß¹NBÑʔ[©QÌrÚsµƒîاŽëÄžÌ)ÕúP¼ñ»ÁJSr©–¨Ë
wN
+›hm£¨i}•‡¦`óå´$̘9öŽäËHQy–;cŒ|5ˆ‘¯3îIò-yºdô*™§ò^èWŠ).ÛY>º{ð´H˧e¾`µ#˜I(;vý‰]
+š9¾–r¼-f—b?’“ñeïÀݬQÕår>G¸›¹¦&ò0ŠÝ·e4FG1Ðÿ௹%´¸m¼„þ ›†!Í�ø;Ú¹£ãÇÎìÀáªÎ7˜Ï·;Ë�ÛÌ<Ž¢%|ws>Í
“owˆ3®ÛkÄ¡c_à".’œÃtQuéÖe^¶dÙ¼ËFûTsý3îîc~³7û‹mÄܒ(N}õyºasë²ûԖٮÿ—ò¡ÿ[€]ÿ
<ôÿŒÙK
+­É¶ æ7Ëåqîèv‹f¹’žX_ËU·\Š—ô¸W÷”_êÁR9žP™• ­„k51OM×r/gö8Ê{¿°\Ì˾Z÷?Þüý¦ž=?½þþúêÅë÷xøáåÇOÿý÷_ß<>¾ûø àËwï?<œÁÏþòîç“ýËÉûç7îôÿ¼þùæþ20þ÷úü˟ðÇ�ý|J§?Ÿþù/wú¡Ÿünv«õnµ¢†ªÓl¹­5Ô|w€ãmLÜÝ!Èðò0®÷-þyˆ=Š¾Ùç<ŸþUïëñÎàØwàî‚s¼¸•¹Ca¿úþ›ÿáí㇟Þ|üåô[@Ͼö0 Îóù雿=~üððþôìåËoß~ºÿî§Ç7ýìóÓopòwø§‡Þ€vã*öÂ7Ì¢Ö¢Â5{Ñ«àtm‹Ké,ígcßÁÌ%)Ø%`ð¦õ×Ö÷+àr–br9£u8ÀÅ›7püõÊj$‘gSÔQ]Lv­"oP�U‹óÁÇftÖ{TÁ„—?å-¯áÛg€PY±¼A±³Ñ	¯%:Ó�1ó÷‡Š_³èE‰Ö d_g;£+.
+m±ðÊ[/ácíÊ!$ÞÙwïZ،–ì¬Ä`ÄçI†ó¼ºjvÅXÙûŒÞhvØ,¹ò'ò"%‡Ä––H°…Ì<Ӄž%ñÊJ—à.ï֟»f§à†}f¡Ja.€«#Ü_¯
+¢i;?ötÅyo ÄßrÁÙ(·ӉQ3DÁâ×l¸q÷½{1&
+®»ENYcŸžÌ
Æ†,‹S™0‡,ëc�”Á`qežÅÃÄÆ4Öb`(ìCX&Sjå à¥7·M×ôÕ/€¹+ù>ÞÀaýëô·X²Q­ß¡nâí­[^[¼ráPØköìIJÆ4Ç.gÖ'YÎ%ó­–
cÆ¡ñ$ºOFÇÜÒN&þï„ìý 0u tÄ2yÅV.à˜2,šŸðyŒkê>TY‘Ú÷ݽÁir�\å›8#{owN",VES¸™8âÏB‘pÁ†<ÍÕ8(¨ÿÐrðfŠy•Ü×w³°žâ?=d/[óõ´Lìš]0ÒÛ2
[[7gpŒE[US_RĪ6:í‚t½¯‹e‡ R„AÓiùýk&×fðÜij¹UÜ(™5ÛQ¶N¢¤M÷¦À.™Ý¸­µ�‡o9Wœ 6Žç¦‚N²q¢öút°Üfau[†ƒÑ�x¸¸94iH“=­óŒ}9´8ßGÌàNeÃdo_aZôV£5²Õ”fӒç,G¸ÓÉT.³zu6Î}Bôkpqv…a	ì
+æ“®d^7T±ÌÐ&–‘ƒ‚IÂ$^#ïÚÐlûý´Ø™3Xx›ªÚ*ÂÛ1j]±ÊôdCüޙ§ƒ“ŽÜóNÌ(it]ŠÂ([¾Ò›zO¸Ñ㦾éïÇHë›7ð<ÄUUºñ¥±ÏxŸêýÄAžæw|ÞtØ:¬–`*S[$¢PòÁ& ÃٕiPºÍg„Sï`­ÕÊ])ýmàæ"\ŠM-úº˜såUKf€¾¡¨GÍ»À³¶úcNÝ;Àæ•Ï%S{ÀE.8~L¼dµ€ÛXäùëšô økº‹;I¨Æ(Œ†„ŠÎvçý›§ŠÑ,H7]iÿµ¨Ba)½T�qKzŒyýt*6)W‹J­ÆÊªørÅaAwÇ®µà¨ÉÚö8S%Ålœ5~y®Ò|›¬‰©QO«ó“vÌNZ&o7¸fz0z‰ûQB±ì€:JDu
+ Ÿ”ìÒ¯Q¢w´Y€ú2€-«´¥|¼À5“#Q)ÌìbŠu7ñw7ç×ë-õÅvႤ pÈ{Û¶üÚS©‚Q¸£@M¥Ã1D6j¬Ž
+‘Hb-ÁXEñð(»…:úX\°œáF‡øõ sù6sŸ�·Ŧ]P#ßa±ª«ígóœ
D`!Dá#¨¤ísƹ<ÂÖYÐԗgž3j®¶QoD’*B?;Ÿ/*hòɚޜ³ï—Ö·3ŸkО~¶Àlùbg“Sñ.åìaÇ�ބ`|´ƒp˜S¥$i_�:OŸ’­Ÿ‚÷Sã@d¤Z“0§Հ	X&k¥¿xuÒ
+>Å7¯ó…[±à»³/At§LpžgÕý�ä¬÷µØڌ»jk€¤Ï€©qW™F1´{}0€›Oˆf
+€Hô&eQªÞ
+¿ŠÉ¾”»ÿÑßw?IÈÛÙm-¥c<½Zõ5Í�ƒ;ÛZè ”§qŽú…Œ¼inM¦†I#0ªGE
+gC¨a’ÈWïhçéÃÉ­ÀT\%ˆ‰å;ÏÀO$z�¬�*nåZ/ÉÌ°”-«ˆÏ
+À»ØYï=ÛÃ=͸Ւ㓣Vþ¾?:RÛK¹ÕºÔF¦ã†'’ž®Åj Üv¥iÆYÀÒ肫¦Uö+'”L—H;ËǙ>ËX¼Ýu&ͨҒ¬%Îߗ¨eÿ}äUz¹›å…U§£ŒÊ•ÈzÕ"€ÅÕé‰9ʨ}æ ØÑ$t¢Þ1hs~:–l3Wö”ÇÑd²Âü–èkL WÅÖá@w—ufIu´êUÀíáYã¼�=˜/û/Ð9zá-jm3×BWÓÕ0S¤‘ôlW	è<Úÿx¯rlÉr¸•ZAìvs+µ÷‚ྩÚÊþfrtI‰!{ÐT7‡s:K÷Å)`Ö‚¹ó{ƒCË|ã
+ù•0ß8´ðX>]¼²3xbmâ1Vf>4ÓYpñp$ÐIà©ÒÚï=G¹IÑ"à5º4ò*K—Ië�Ñù¹>æÅù?ÖAÛ5‰Nž{ÈÏS	ìHçÄ4­=YÓù~—ïÔ1__÷'£¤ÆðÈ5ÏÜgpðbÅSÌß&úׄƒß<g)Ó6«»œƒ¾ŽÅéËøýYu6m9oþ¥9ÿ‰§µ(mMö¨tR6yU˜rF>Ê˅E&ÈÉCpÕ8$‘þ§÷Õ6º4|¯sU5(+Ų˧ډ ƏúKÑ\âk*q•f§!uéB¡Õû Χk½Þúd(§\¯¶–Õ›»-ŸI@5£ºÀõ¯0¯)°+;å%æ ÷¥¯!¿~¼Á;;:Jeãv›0‡;ÿ2>ύӓøÉY7
+G„m0AOEïJ`𿆜Êúéïª/$üI¿²Ôx9'¸mLµ72ü-ɧËÆ£Z194H®ˆ‚âS!†ÉïìiG¬Á›”I°j …á3Ùn-ô!ή6S`]ƒ”Õ“h ¦PÄȅͨxyͼ¤:+죄Уù+ˆW<rJþŽ`mW)˜NOþ’ ‹Tw.L0;%�•?‚²‰ñ[ä]ÝQ1©Ð*â,Ô]ap”:¢Ú¡®h’A)§f‹ªÓÓÚ`e{Oi¢>G|˜¥ÏQˆYÝD°-}Ó3‰•{¾›ðK–2A·ùYJâäQâ¢[ø~:eR0L!\{•Òbó{5I8ÚkÖ÷�–\ããº<‚'µôrsÄÂ<zkí§.ˆZ!Íð¹þ“®s~U¥øïbõ¹Ì2À–*ëmÄÙÂr`ì±VáaʤŒ'/¼=ÙLŠõñ/G4§P‹`ý—­âðpö‰]c(î%ûŒÞ]îj—À1j.½2¼Ö¦Jo¬Tö!\©XÜ÷Àå¢Òñ2èéÓ³
ëÔ6k¨ƒ¨Xz=?[ré�Ã3x”ï½}`‚Y0£ºó,`‘} €‰lßàò	§”ŠJê—ùZ€ˆ“†Òä"||ÂιÙô@"Å�*À͎ؐºU„™á˜d�âhìMõ„MÏìLÜAXõñT’f˜|1à¤"ˆUF1‚j“ó…ð6BÄeOæ½öD?:1—yÝÕ¢àd˺\pþ'i¥5ÂÜÜábÿ´–A,S¯úŒØzÁ§7·
+ò,vQ'7gÏèÙ`*o;ñJâÿ`½ xúh–üƒÝ9°¬¼­ìä»æðñ‡¾SA R“^aY£‚ø+.p¢rJwÑÀŠnÿ˜÷—ö:–ÊF
©*œ}Ù>JV…i뒱ãò'¦Ý%_t�W#Ü7Kšƒ{oÔ­{¾÷özýɑó
+œh^Z·õ)8E«ÿ¯>‹æU Ý%˜=¨‡p宑ߟ½3Ü1ª÷ìqƒ8ùþ¼Às"YkO€®µ+ùb$Iwf§@¬%Ý´„÷£äþ}‰½«y"8¡Sòä¡ú°8¼9þðDƒšh[¶0ºØ,P¨Õ
0G,AÊrÏjL0—I—õœZ۝54àÂÌ×bü,íkÍ?ë'‚
C ©W‡‘ÀÃ@õg=8À;yvÝx°ÍƠ㜡©ÀF;ute½Uå®®j‡ôôš"-œ&²éOÏòàu9	aú”�RŠšÛUÕ+{3Òáº)¹åƒfŸòþo>ÀY‘ÛÑOcZWâ¯㟩,É&XËÁ§]–y“wð°®Úå?”[¿I]�(pWÎò¼Ú´™Á>žëv!kœ'm_äNݼÖý֍ÁUNPÌXÅùA™m&€à$(Bã26ËuÂÕÔߐ‚G‘è©,)ߓàð¼Ö̦U‚oùNWçjºð£“5–"Õ1Á‰¯ÏѕÚFF…¿$yï
µµtmÓ50oˆmÊÙÄÔì쀜‘“MˆGLGN…éø0…EÚÒÄr‘ÛÓê/x'BŠæ̘“Ö®þ”×n’^æغëÂEm-PíÅ<ƒ°¸‰_þî}oé
újHâ‚4hï?7<€aÁv󘱵“Á‹FlÉÛ8)XZâè.ÞIæô³£€´S	Jc‚)$@ç’Ρß,®1³«WGPÿ)É_ðÇ£/൵ˆ‚w�=áÀ©\õ„YÒz}
.YúëǾ³Aە.M@o–
B«Fž’Zé’@Äv‘~]ÿ“ß‹r*á	„ZëÃà(]sÝL´b«@ÍÀŠú48̈ÅT3Âm­Opê	T脌T-hXÛûT›+óڜ’¶û̳K[d…ïÖ°ã¿2~P1sHÔ+8(çX¶’Œô%È8àŽ•GW%½(Œ`‡Ia”o½	<,“õÞ"™ÀtR…QîxÐ(œ’#AÿŒô\«ßqì¾em䖸> ä_í£½X£Üûº>ïZÁÿ„úãIŸ
&¥eGœzLŠ‚k5#(²i0mñE‡à
{Ý0vª«pê.-xð´QPa·à¤`Ê"Žô¨n©Ò1u’‚§wœ±ÍQØÅq¥U8ч~¥;•
¤Eæ=á²²•y1b¥æ05Ì»:e™wh`­ÂÔmž7|~«c_@S;ñ`EùWg6“âléìܧ› ÔûÜ#à†¬A›On´‹ú€\¥18Ö504ášOúÜ@ÍÎØ1Ð³},îS›|ä¿6IÌ­´/æf¯P0¶MÃr_6à
+wgMcð§!õ%2aè4ϲc AÚ-Ç7aiÌg;5ÆU¹ñܶ¨fP£-—u(¿t"›Ú8™3 }›Ô	Ùܓ`Cɱó1
+õÜÓMÇêÂɌ1韅Ol؊g-Wڑ )UVð¹'(	 ¨ïŸÈÉûCq/ú¶[•è3ŽÍg'Ùì9Þîäëx¯ø,n 'g£»¢oe€4×PU½’äàF¨»-N)[ÔÏü@B‰8ëkû"»n—‘E¼2ôGc›ÛŠá‹-»Õ«€Üj¼2<Œ¸Xœ9èçKüd·óµŠ~–ª,GõáQ«¤p¬<é&‘ß«ìñLÑ+£»‘² Ú˜j'Ÿ ®Rþ À(™x„2É"̞	5ru]^¶»Ú8³ê%…áJ&F•ýV5×ÛdÜÊùn¹­(ٚ]&b…‰øQN½S«Á²è§þ0ÚGßg8¼5…°ø·®¯¢'œm)ulþYRÿ·¼ñqß±õO†„VJfD[2‚ƒOPé­W¦žTœ;¹ÿ'h_ã¾Y�º »üúÉÄ|6ù÷Å –ûrVô‡¬lýg¢»ÎÊþþgTÙ?¸˜wÖg%øº[ØVõ9‹¬ÐÎH¾FøÙæËk¯Ÿ“¼Þ8ÎET‘Ò9œ«Ø؅¿æM<<¨ŠÀã1´NF–
+cb¿~JûÆ¢Nt¬Š w2|&l'sx0E£¦ Zui¾g}㕷ߍ›9le™÷@Q·­tbšÑ‰áo.ÂíåT•7'Î;æÞ$›ã¨üÊ°,žÖñ?Ö«^W³Û>ßa›�6Äú§”Tö¦Ü*Ò†.ÖŒM‘·ÏPœáù¼ñºÚâ^àÎÕ¡$Š΄¹˜m¨S¨ÛæH‹¸ÀugÜýäi+ãÖájÊÏÐEÓF5†KØlµS©E€Öqˆî²ã¾íÅ@aU‚
Š†‡Ö º€ÜË­5)ñž9�Å4ò´g€	¡ªû†Ø,•D·¸A(oB+)ãÚmÝáCc‘ÚåD/æº>ôŀ[0MªaÒêÃÐûU©íÁò�ïPµØ÷‚>Ÿº8l4Àï+©ƒ˜ç|ô¸�7ìB€+˜¯õŒÆìX¡Ύò‡«ÖڒœÛ¨@ÿtÉÏ«¸¶¥=³~_+µ
+fí'�`û(ÀoFõ®ÌÉÞWÏ�cK–æ°¥2¸ÉˆÔìjWS€]™©ö×ÖZ[U"Ý°Íœ©Gúw|Ö¶ôoØ;€«©ßš ¦5áö¸”‘21„W?>ö嬢´€›z×ÿ÷sÀْVÏïm™¥û|ÜéðâŽ�ÛE¹îåÆ)À¹TÇeÄPægŠ·”:à*ý1¹Ò¿näümˆe–
+w4¥ÏwOj=$&@ô‹*¨TÝ	&°©°•>¬mÊԕ~±W;)0jC­—ëß¹ß㏄OcÚ_=(úwlSLÖÊó=Š‘ zëž=Õì]`M™wz|ï*´ª·]Yï/֔ƒ	´½x�÷u¢®›¤-MiiÉ#Þû]ã-嶶§l­\ Ë'@Q‡Ø¬dgÎ{ØÀJ“÷±l,‡Ó¶°÷Wƒ•ÑâZmç„@ÞÖ¡!¼ªDð½Á9yØÆn» Vö½(±_¶¬¡Œ™ÏM_Š³Â^TqK`.•ö™Q†¾ÙÚª‚çõq_nu…¾U—sB<„º`?@\‚±ad]×<áo äðõꏰè«15¼öºUßzŠ~”çoÏÐ{åÍzÀ­é(z`{.>ΕÇ©Aà0M{­AÒ ô+Ð\lùÉTA‘Ì.r¶£T}Rgš‰Ê¡oâLˆ¶Žš£Ei¶ùRo0:>›b
h¹¦�C\„+€\‰óƒptÜîb0°‡Þ…ŽƒT¿®;’º<	ªBõ.Ñéaqúª”®§Æ<nÎk‹ ÕLj�,ƃѽíy«Û«°m €FØ	C¬,ΝµvÚªïìE°}ÆíýõÉTô“¯>Br³Ç[ÕuuZ]“e´$‹¼ëvÊL]\ºKå3
¤âÝ3–‡yZõ®U‚å.	ýê�Õ^~%€ŸFª;ž|Øс/ÏàK+}ú‰;!{Žê#¨”Ž4ˆ!:L{¤FZ2§pþC�ç½Ì>åUöŒM¸ T5Uê2Æ56ƒƒf¬Ôr8t®å*Rqû9äïeœ*ɯ²}‹ù†d¾±ÕÙÏÍî܉�si³éҍ µŒ:ŒË¢ï!‘6'ë<j1¸’–> úÒ¨QÛ�~Œ–äqwIÚô2ú—²J®+k‘X›(I}Þ2f“ÚxÎt_[ߟ¦FZ;†Ë•.>+$9€+åBO:\ÈGþà¡ùïÚÊÒªzBè²5ԇµ>攊Ë¢¿»2�‘U	º§ã±Ü~Jpm
+&vÎ\ËI7Bœx¦„­�´->ïMên°º_Zæx•ªºW}X­¯ôŽBºš†å‹âï.:ÛF)ß«d”¾¥€hæãŽJBt‹Â°Xܚ¥ÇѨì”WR®KIŸ~Ø4€Wk¼Ú)´8â,²
GÐØbc=Ÿ£4¬Î0nµMå	î®at“$wK—W_ä=é|)™Â2~>¼Žòâ*Eª×6zÒFFG|;A‚²
[3¦vÔ!é=éIOHó(D()‚¸·ºdŽϋ¡Ãøãc“†NXrCÛïªl®õ^¥%…â*CªoöC5+m’ØluÉ
+z`pÞN‹qÒG–Ç%úP“:é9lgÁ@6vó5W¢ÛcIë­ãé#EÍØ\.¿ýâ‡/þ𯯿ùåÃß~üþÏ?ÿôÝ/ÿ}ó@_þ©b;ë«7_ÿãÃ/?þôï7_~ûí7ßÿŸ÷ÿùÃw¾ö«7ÄÊ¿â‡%VŠnÒ½{ßž%ÇPŸÔd€Ç]µ	#%Ú^Có
 >i°üh»Ï{—N—wáŒñüñ˜ùGo2í÷zÈ{Xko-3fòþ Ïõýågo×¼ýTÎ>ەçÈBæü{OxWe™:j:3ê‘XÇӝT³‡öî‰çLO.(Ñ7$‹pöÙÞüæîŸñ5ýly‰k.ÞF-É8¿ãÏ™ì~6µöÿùŒÉ_>£âÁAà‹{@+ÈÏ&˜»Äw„µ˜’žÖ|ËÉc´¢øæHÆJRÃíH›Ëlî5jo€£»B¸ÐxËÜëP*­Ãõ®í!,×H©¸^àºZŒœy|îÜ{-כ›a/;ØÂßÝ°6â²Sé³²¿�«ˆ,üÒ;Âf3àÛ6–?¼y„¨¡Ó
ÂdÂvöÃ֘›™q/êã•2ÎAjñ•B 
+¦”†<«Î0Á
+­=˜Š³¹½Bõ”3ÆÀv¶àa/…½|à¬I«E]ê+”¸Ⱥ 
ñ”ÀÀcó%åbø5
¿á*-¾Ç¤…ãë2žÖî©b. ºÛÒ
¼Z´vŽƒw:Æk56ºrÀ}iÒö‘¼Ó§èÕÚB¬•¥9}eJ»/³^¨!Ÿ§*¢oOÝ e3µ¢Rœ,@Â]%Ý|Ô$W¸0]K’턈ºO»T'ùt¿„…˜™Jb=&04ïd!/™Et)F˜ÜÃÍN¾W§×õâ4ñÝÀŒ{j¶ÉÛnóé…!qu¥	ûæùübãÕª¬ÒÅ	à”¡¸Vwöc“ž735¨D:peÕÈÎúÑëxTØ[ތv×Á­»ÇÒ	0ËXtµš@yˆ‚ëÚQê;˜¡ð¤ža}’gîV•—=6V�Õ1�<ÂLþjÙ9-æåÅj>oØE€£M®VëC‹'Eý÷<$Ñ\£+�Ɍc Æ:nێDòáoSßµ‡îeWËåž)_‘°[šôí ê^2ã®ÅôÆ(cÕ«¸¦$>ž»,åu¾Èé9÷⼂nûxÚXÈí§"�Æä+yÎ3ƒÆm¢ÏL:·hXræ{͉w9ý-Ç~ÙuÊ†uûR–zMFXus8bÏuk^a$ù·D?»Ä¨šV°!&ðWºã3ª.ˆ5är;T)j0ÐÙÿ+êâV÷¢‘¾¢Ñ¬gŸ „íI°­ÎL´¾Hـe|A­3
+ÚUM®Õ,u°¥L8›Ur×ƈ<r)­^øìñæ7/ö9³.®y¸
+ò‹¬¡RÈÛ¸]‰ùï ¹Ø§PL§Vv	˜2áÍg“1�¤VÜÝr¤¸F’àfÚClsm=M©8ív¦AÞM5ў¢À`G½[:>Àõ)옴þÄ<êèG¯>G—|0{^ï“ü|ŒkÅ£¹™—ñ"«Ž5ËS•²»dIjlPNvæ¥Áý$“äbdaKœaÜh¿ƒ±Î„ûŒ•'sP])·OE½ô„ï±·>øf;Ù!oì‰Úⲗ7Dž¤Ã\`Ø{OmÕßü“K[K)jCKËÖþ»m…AՔÇ,í7×£µ˜sà¬WÛJÃ@ü‚üÃyڗ²÷ì>¦àƒ¢"‚)Bƒ°Hm	þ½³ÙsVKÁ§›!{ÉdvvŽ6F<ÇXÍØæ-%ý}µó¶Äӈƒ:ùʖð7û‡ g`ø¼•Pì-ï…IóQÿѼušs
`Ǐ¹llù]Xó<^Š5WŸ†”ÿ߆6p_‹NB°Ì퓱©T»[-õ‰ä·¼®BÁ§·šA1vè„;,+–¥#–`©“ƒ0qZ?¶–SúVZÀS™j¯tµ-¨œYuØGâPb³luø϶R¥¶V•À¬×LFlÏ%™ßF)eŽ–uu¢O¾oÍæÔ? uÖ]ÄÕùf½Üî¿^oŸw»a»)àrxyÛÀ³›a$~ 3ou¸û±Ù7šºO´5©éê¿ñp‰Æ;™…£‘]Ó㓢uîp—¿Î¢P+zð0WøÜGs F�ÌˇW
endstream
endobj
12 1 obj
17354 
endobj
13 1 obj
<< /Filter [ /FlateDecode ] /Length 14 1 R >> 
stream
+H‰¤W»Ž$¹ü‚þ‡2%ã
+|e’4…ö„d	:W`½äôû
+f&««‹Ùƒ½^çf'ŽÃbFD¾>n¿µØâÞ{§­Å^ñ¯¶}4·½|‡RÁ¿úŸÛ·°ýí¿øÏ?na=¥-ì…ZÏÊaüöqÿ¹âGl%o¿ÿû–¶¿oqυòö¿ñÂ{ëŸà´§ãö%hÛ9•ñeŽ{¯@æ=ö–k`-{OµêIª)o÷qAM;59š÷q­„rLS¬<n ´3gV°Æ&ß*}§NrmÁÿNqû”wØ©r–.¸ . Ä# "«Ì}ϙŠ^ÐBªzà@œ®”%ð\k醺MîKœIã:Á2€S	OèœC–+
+.ëzmÞË8ëñýyû!Óøë°sŽ?Æ_
ÉÂø…ôGbĆ„ª}¯æ=„!²Q†# –ð?¿ï̳Ã)øä�›=£¥AØ¡±&ÜrÕÇ;yhVã
+	c :öV̶v|ÈE`‚ñŠù˜xçÚ
N Ñd/QŸEФe&½�3Žšì<ê
+‹Ý”ó ©àtœ}Ò`J°àE¶IÌE¶_ÙÀ-‡¬[WÝþ|^£l„/¨z	–Uö	ªwIp—ÅÛÀjë$ҏrhF7cŸä¯Æß7X(²Ê~Ù3·ayԞPYT…S2òCÁX[5I,é&ø9‹ºêtöÁ~ƒéRëÏì·ä³Ïê¶Éþ°Ž i{–šn]³¬I•F†ŒJÃ*íÁR©_²ê~sÈ‹Mò;zÆ]M®Þ_D™Þ_ôó…vb|ŇËÜÊòJ¾hr%ÿ‘=nžy9ùFÉ:™Ë¼1KV0Ó¬`EÑT]ÃÊX)©+7Ýíï©Uûû“u|­‡j_ëD“÷TXí[ñp·ÞOgG§±³åȄ“é3îïùÊûìÂû)oNv"a!Ìx×z‚^;¼æ*Õ%×,bÐø‘‘Ô¡¸’o)<Éwª€[/–Úr¿¹¢|Ü^éç
+íÄøŠŸ¬8Ÿ?Ãò÷5ïýÂOþ8Ֆˆ„|‚õÃ!Æ:A£tU)£/ÇD$47L8ÍKoYáÀ­H”#9[uðy¦	WQY=Š!gÐ4=:Àì©ççÚpb	ø
+󒈳0;Ië¦÷R
+î7—ÓY!þ]¥œ _âR·Ò|eß
+ǕýG‘qˑWºÞ&±r”`î"jl;�`!¾ã’Üé0]qŽÈ„dQ§*e £ÖÂÏQã Pq^®‡çF­él^Î%Ù(VHfO€ÉÒõ¹÷·ëâšX_>#3tç9ÞÃ× ×Ø%
gìkÊúɽ¼÷þ~µ‚ÀÈ>VJ€14x¤QNIÅìÌ6È�.…›Áº�ËãZÃl8ÉÓªü´ §g±Žq”=¢ã«”/Å
+ ,SòÄxùaœ>Þ.÷¯do°`œ3üïýíbµ&ǗOéäÎyÎãáYõ2¹ÃD·ýr–ŠGÞ¥Ò¶Wù¹¼öþN¡WT	–Äðu tB?./&]t'\íÅ›ÿ¹	Ó7óVÚ[•d=œÎDÔ§½û‹Ï¿nÞw•é0¶¾¢ïÆÈ4Å:ƒ¶%ð^Ì'‘�Dœ,°-l¯RåUZ½HA/W/á¾åL|­Ð¸›M•M»4¨(y<ƒ*:€ö'Fp¥Ò¨ï%»kÁG¤ã䣛Žõ¨×®÷öζnÑ>V£¼vüiÜ�)T#x,'Eê%4¼Ç|ÈXášÈ‰-Wšƒ Å¢Xk§§lµåÓ
+~UÎùD.þ©êpÐEíI^\ kÚEu¼U8²@ïð“ê#Ø9ôªOðó¨3TŸÏR8˜e­®^ïoI_7ŸMôU•­è¢)0^“Ùb*vCËõà
ŒH-«wÇ£’”«rȅPòE9«¢WåzXGã)謸«ø¾MVG½Ý©ë1ÇÅùŠ'4²¤ÃØ*|p›/½å1\ÇTl9˜=yìÜí,f4qLŸc4À•%ü3Y~CÛ1¹|ÎòpW°þýdN
+¹/Fð2œÎ>¥ÇlO©$àý¹ûÀé4»v¹®m₢mÈÃ`Æl²A•ÁÙ¨ðQ¦…¦`kUÁE‡_XwFµvè3%	¤³àð°&	ÀÒ¾Ó#•Žˆn©ÙÃc3ŒKb+Äí,˜£"…®ï’cH:]Ÿ@•&÷
&³´­Á$Ϥi¾'cÖ¶ñWPR=Áe(Ê%Ïz0ôÔ9åô$	[Ÿ4,m…­˜Õ¦^ÇñªÝ«ÊèÖÐWõÖ«Ín_+þڞǡÅénN¼Ê/×ܬô2øǟîèž/Tsöœ°ºF;ÃÒçg¶:3;=ø“†;•ü´›„²5õ¾¦O—Òëi¯¼,:^yZKÙ}V¸ç¼œ	¸æð’è/êS:ÜãÕ£7ÌQT5ý1ØfE	å5'mè˜-’͉jVP†}0Õh Ì³.æ({Ñxh£>’«ÄÇ#WÊ̕6º¯¾ñH›>T3œ”Ö?'Vë½Ü” Œ	Y›?°°ŒˆÕ]kñ-æt^”t¦ÀtaËa×lVŒh‚ØGŠ½5$“
/`u'{`+=*Ø£>uáûD¤–V£ËԎñU¤FµHÌ1‘i7:§i×Ã'­¥­ŠÎqUßõ‰ã+:<Þ¾á˜ôÚ1ÜҜ~lô�X¹ÓæóÓ .³V€‚#†P–#¦µ՟]3(JRCá¹Rz²"´�r=-;€SÎÝàFólɪr¯7)7Gܚaˆõi“šGDS¦¡©$àX+ÂÙÀÐz³"|G‹Cž#wG&hD‹‹šŒ£üœÃúPæðË.0Œ4‡Ôt:›—-n‚×ízÁÜ,Éûc ãZhF¶w,‚½?6®1~Ý^ñá3ç’ìêá+·¨<Å·†4pÌÖ²”É&8šFóޖÓõYO>"¨A·°çXÓc·{ð’Oq´ÏG%>iÿ¸à¤½í'±—=ðì?×hŽ)ÜÜ~òu{Õ{Ü.µv´ûÍÍΏÛ7™ìæ¼[¼ZâÏî/SÃÉ¡5Ý®Yhý󒅏Vë÷d§ÿ¸ýóÖ·¿üuûý_·?Þ­Çеé:F5¤ŽèˆqÊJ¾¡†¦Îr¶ªí­*ÖXés³ƒ-éÈ6'D¼Q,†¬Ö¹«–ÂM	Ã
LEûPÜÇÌ=[)ˆ‰ÖŠk4;n#.­srgEð1ÊS-fôÂM†ÊRÃcJL:®Ô±Òp·³	¥K¨ÏKˆ
+Žw}‡)Ë0Š–K+6:³í#åÕqÛoM™H¨Nɲ^´¥TŤå
+½ÆƒQÒpã,Ö˜“zärwãì!Ê`7¸8‡9ÖtÄláL5Ð9<}nXÍ4ƞ ¤Ë5[©°Æź­áÞߟ?xð+v›1~ÜJ=ì’È©œ
Œ!ÎæÏfbÛï¶q†vX+#ìYîm˜èÆ÷›mŠÑ¬!&Ónáp‡nS‹Xþ‰;Ä	¥.䧙HÏ2]Â}¿{¯ö˜¶s­äšîbÐûÍeté²ïê´ù
!+uËó]ϊÌg9ÆwSÄI§7²nÉ¡$­.ð|±V[Ô'ސZ¶é"ÄÆZ¡Q`'˜RHWg]ýöq{iM×ċáïþk?ÞOV—t=ô‘:†­/Û!Ñfô‘>›iŸãZ­¬q–Þ¤}3ˆgaŹ¾2•ÛÕqXÔÉÑÿ³^e+r%GôêêÅ0ó ‘¹?j
+?Ø´ƂÁ3£ñB·0㑄þÞçDDÞZn–°kŒhT•ë‰sz߄ÖÞÛÓóv¯è»'žwÝY:~ãé°ê§ÃÝfZ¶ÝÎۇöZÆHóA£8§¤Ðs‘býO¡šªÍQõ¨'ÂËØPë(áAaÝ¶èFíÉvmÑ`´c5*’IãªX³!žì×Þújm.ÖÃ¥	K>bҎNÈÓPø_’R´÷ã{÷ÂËá®7wü¾q~Ýä3ðÅ<,'g7e§µ·?cÀQ²ÒŒ@_Ht&sŽ±ZÉ;tšúC *ž÷nÐcTiqy^-M´L”ž½eœ}ÂX“^ʒ¸3÷íÎ&Æå´vöéáùÞ?1{}áÉx“Çó\°W‘—ëtÌÀ‹!õŬ,‡ê¶§OkWŸnU@íy,`Ôˆvë1‚ÏeNw1	cõ£”ÉmÝý×µÎ%´{ëgçî…é÷Þ(†Òn½&;Šý¶NlÛt»jPSP‘vÓáËYصâiíìC¥‡ñ¢4bÎDa›¡@e—ÐFŠQ•ÊȕĝÁ8ÂY$
cùJ'àûüz+%›QRMnì!èÉjß9¹zô}FÃTåõ�ÌUý…..k™t¬ÊÔ¤
+ךíïæ+ý:ä,tËF/
+ÙÑ+Î/
+	kËJ]9ÆE‡‹'Eõvd(aÆ“éïîÔ}€/‡{¹¸“³ëôάKÖQ"¥ÏcKºSk\‹í&£óx¼ä8¯Bn—vÐ7_¥ÝÏ^¤àWn—ú®O‡{eûr}ÏN=¼ÃØ®¶g)d8/nÎÝrqÀ‹_i•›g³âSœÆZµJž”7úÙ¨LÉJ£?;FÔj2YsÜl° 3°aªeý֓N!g”ôJ[OLS!ðd3¦4æFGwÙ<[¢á¾Ó4¼uÛ£Kvã¬Ûåh�™n@øÊ
+&Y¶q‰Ù�ƒ¢®æ³9h^�£‡²‘6D[	r\Vàq‘{‘MÀTvB‚´÷R]¢–û¬[Ô½Œ&Œy¿˜`kVwÒöW®õÎÊu'vº”Jw3ŠnfJՐâñù¹Éåi6é5¦>¾€¿K¤^ƒúþ1g&1Ø·Ùa�Ó`ÜÜÓ:[¬zBXÎï³ïŒâv8=úl±kœè{Ýx³ozÒb™·†î7ÏdÝïü Ù†[%µ™mO>åÚqÕ-l¼U¸Û]e&Eá¿Y¡)Γݡ¼ÍÄàNlöÙZ»µâ½1z³Æ°á¹·«®²½¥e_˜U	Õþáþp-3»®Áj‡j+ü»ƒ•+T½ƒ¾w†{	ÈXõËÿÎÏ@îRk†Ѐsã {@&„â»z‡DórûÜ¿ˆ8g#°0ú8Á»Ì^ÒìÔf	°ôÎJ$µ½Œ:̈§¢…wµ¬#*±_֌Wu$ú.o\ØZ!’[¸ÑN"}ça9ЬoéՏJ3
+Ò·XY@cÅ0jmÄD/zþE?ÛCFl@‡ä¸Ì÷éq–†WE©îj§—uIŸ_pgéø½ ŊÏuÐfB;]×[[ß.¸qìô8'"­Q÷:iTWMµLdn¾¨ŸÜ,iRÔ“5#è ë¨GÑÄNBÞôW­sg^övRpÙ ›éèŽÀœcƒh¿‹¶ï€ ¸N5`Ò<u9uÞG{z˜ uÁ&lcñÈÆ(â>–œælç	É$ȨºÀª49…;ö<ú6ŸóÒeæ{¾RŠÃéÞٓýI^wQg…O{,;­ûêép·*wê·¬õ²/–tÛlÓ¯kà›·ÀÈš®÷‡ÃãøÕ×Ç·§_¼ùUÿË/ßÿ͏þý÷ßÿõ§ŸÞýøތ߼ûÛ?Þ_™¿úí»OGÿå(òõ!ßàçí§Ãü‡îÓo?ã—_ãÃ?aútÌÇß¿ýs8~ϓ û	+*êXæâ}ˆ;åÌ(æ§kó`‘Ĭç;ÖÖóïÕ¹ß̹ÍIŠÔç®(ò:�Z͓ôŒ™9‹5*üÈ)+ub÷ƒÒ~ž^Ñ|ñy}ñ³5pº)ÅeoÄú $K-J
+`[NNJ@$&e+ñ±êëƸ…àyy±?xN	FCúÅW37(ÙɹпÆ7TZ~vzÙG63µæãîæsŒ=Šv"îfqf%h<0T&SîYܘ+tí²ˆ‘Ô¢až×7Ï(Y]<·ƒ¾˜•Ý”"nµñ½è'	c4_L¤D
+N)`í?//~þÍO
ÎJÝÁ6Œ®¬O—Ö6 Y¶9™7¬­7px>âñÍ¿îÏP}M„¶ÍkíUÐõèX˜©‚ÒƒÄ6–…�d¦KqD¼Ò€¬Ñ™7.ŅB3J.¢ž
uèðâæè³JÂ#¨Nμ3P˜ü†ßŸŠ(IÇ°·Rw#$Z½Ê2%M&±�ÀCº;€«xkÌ鹍ß%I.˜ŽÖílKâ‰JääVm,Ú0lA—˜NÀA›�úUsšqq±5·
)2Ærà‹É±07£Í­ÎÐЅ›ŽàGˤkEì1qâ#a4·JmÙ/ÀšÆ¢±ˆçJƒc45‚sÕ¢¥Ù§ÀsS¨Á²ÞÜ^—mZÑbiÀm.×`—ñ”ƒ’jÊö_,Ջñgõ¬Læ"érÐ<1ۚ*¯dF*Ò^<Þ\æt³{/´Ví±âTˆ…bB–€)Ø´(BæÁŠ†j4ZÍÒ©=BDSÜ­R0Sƒ¢t-„¸†C4Š¾jíža¥7»£KתҚѭ­¯Ì¥…nUk’´@x4ÂC›ô¦ÒÆá£+è|c2”%Q사Ç`lY{eKM%a·ƒŒ¬ù÷qm•-‚RŒžГ¤‰h{*Çe<5L*„R¦zj¸îº[³Ø Ò¯b÷F*]ÍJQø€ގfnHžEGP]t}³B¶ìÕÍvAÃht/:¬êEw’±â›”oeŸH4PƒW2êȊCO� f¾ï¾JÞrŸ�f&œ‰Cˆ#YŸâÉRœUtÁV«Mqô"ŠÔ ֒Èû8~ôÑîºé`B7{ûjTgãG×Aš»Í9¦¶²Ú×!_“ŸÅ®í�T«Uf£Æ¨Y8˜Á}àŠO:Y”&aÈ·Zx	-üô³›¹#_¤(†Ag°#J8agÝŊ×;ËØ}ûtb(ö$p¦¹»	uhŠéŸR÷åÑ{—¿Ìqȃ§wË#ឥ°ôçE͉ª+Š¯®´=$Θ÷
+Ç\4ëHtõU³+ñÇ+6⛚_Ç2Šô.à¢C¬”×IØë1vÛo4â“ebªH;iø	
e"¤är¯GnËèg}A،X)E²úŠáÅ6§r	:ä>mx»®›y€PÍG¦‘©T#øfÀÜ¿�‰)êÑ´ÚYtæˆlrþydkš}H¸I8½êd’êɉܝÊg‰®1þÀEõ±E[l‘m£\‘Û[Ø]ã/­[Ά¡!YÁàRch؛š0ÝZ*Õ¸RZ˜ßǀšh€¹ã7XeUg‡nwŸ3œQµ©Hd»@²FuÁƒ4T®c´ìSà¹AYÁõt2‘i¹	 Aš»TCêHn©’CH´³¸ƒ4ë’ƒ$j	ÅR6õ;C¡“þ�¤ÌX¹êÄNeÁlª^šA:ŒøµY”}™±yÈ(&£#ç#¿ÔÄòˆ~AÕ›E´bûÌÔ$úHÇ0c£-#Î%Js&ã2ãH~oÆT»-iqˆ£#ßù­�ÈaÞ¦hå	*;œhS΋XºÏ.Wž}¨!Õó=Ö°½‘Œj/…Ü¿pN‚žãš	áüõVU"	Ñò?|WۊmÇ
ü‚ù‡ýH-©¯ñ‡„		ƒ!„pð1¹À̃ãùû”¤ÒÚ3g&ÁØì)wk©u)•ROâóàÖp¦&þðùˆ
”`~ÎY©ö‘smN€AX£<³`]E­
+ÊçF~š·;µÓã¾h�ªw‘Y4‹2h©µÓ\hz€µ&̂¸@vEµÜl§Q´†ï=îöJ»QIîîAy{I±bðz4ã6Ɣñ›žbcÈÉèbˆŒêŸá­–ºÁÊyàìі¥‡§¥TCù®½åøÓC>#nŸ½oÉôaは³;;7Ô³Ž^•Š¤ûǦ÷¥ÑtªÂal•#5‘7›ºPB2ñTÒOo`LÛ}Ú$­x\ŸqÐ	ç½_ 4NjÏ9‚ëh$'ž<»¼q=Mùà–Îï¹µÒ«t�l½ƒ6¡ïðCoo‚è„ç!c‹"ŸûÖ×sEðš;ñˆ„Uc3zH/fñœƒ÷é};–k(oL©ôô85’?
+]ysôÉó²ÚÿC/OÚ}zxyõù¯~ñ›ßí¿ýöåóWßÿøïüéÓ?|÷ýK‚_}÷÷¾¼ùõË˧çï>ßD~匿ùÊâǬæv“[‹¾ùþø=~üÐÏ·~ûÃí/m·Ï~áÏ¿î3<ÛÍYÿñ÷v¦½BŸ^£º[
+“§7&þüÊÆ}üãCºw¹ùÉo8£ùöCž×®€0ÇÑ5¢ó 
+š. ùÁcÝ¹X˜á¼}l%+`^½!Á‰Ü%ˆúâuhd,QTøÁ¹Bï¥ïÜ&>xУ“q„F±=�)bÊ ;Ý{NÚ6�õu7AÃH·§·nò‡ðvN	ÐVYªe•9s«øêe Ú4=è eÈp9èDóáø6§%;ñ?:œLm0"µ6hÄÇr«#¨Æ3à>fÂÚÈHR*iæz%ˆ™þú¬WÛ	n´¦Ï‰€Ç‰Œ]Pº<êtœàJpyÕý3·%åç ÏãÁ×®!etÌzª®ªÄžØ·'ãQâõ)[oF°BI±¡=ðzsš0´¾%`58åáÞ ¬YLŽÍãû0ˆ˜.ó$g&Ý].Ž¯ƒiu¥n£-=^9®ÓlÈ£w7Úu·Ê®ôN»¾ÚÆYè'`îé1Ç5AȇE3åGÀûH^©@·„t<ÑüXLò+}…ch[×ÝyÖ|ñ°wíòeš{N€²Ü'`hR3­u›	b.—<g'8¼.ËÊÀgólwýž-4¬Ê.1ÀøU#†ò)þDx.9	â+œ…ÔNpBN•]Y<9õ»Ý9søŠB¨ÎøÕ lʪ¤·èß©Ê@ë:Ær[u>Žì´š[f>r‰ñ¤
öžwŒÈ®ˆTó{w¸Ï(F˜ÑQžO]:®æƒ,8	ƒ¼¿egܽ/‚}Z íË�ÊR®nº‡Ì*­Âbí	F¾®Ü®YðъÖÉ2˜™.–a«ïwT×uÿlåý5ç¼ØǔÊaŸc×d_åÝZÇ.øu&?¦¾ð%X%‹œ½Œm£¬–m1Ix‚®Ëç“SŠõžàì£xf0µ0Ðr·ÂX,V§¿§õŒ7ьǰñÚ}ãåÐ1¬dKYsªºx‚Öª¼×(#	3BÖužÎ:4=£¡Y²L;™ãdgÙ²Ë@Ž±,É©­	{ ¦¦°8¼ÃkìÂ@u‚Ae°ñáìI W¶¸°°‘»ÆWÇÚ¤4m1ÞÅʒ-A°É ӎy‚õ¶‹€[e1æAŸV1hI¤ïG›cFx8WÓi¤ú«?Þ
±œnx6êëÔéwŸ	£jàø�MpLŽ6Ìïk/k½gu8l§Ø¾÷±‚ÅöÐmɬÐtçç|†ª¶ž°u>Í'í¤´ëÊé5¥’ý4êÅ^utà¯ÿ ßrðsÌ$
ø{ŸK‡c?§Š»d… ã…Ý ¯Ïl‘R·&Evikäx’>ªj ní›\ö¼îo(à5”,}’´˜
+ÃOõT“£Ÿ‹×—v~,v¶áû9hÿÃTÙÀ_Uª½á—eƒy¿åb_Œº¯FÑÚ4Þæ º„ò¶«TÝ Ž)è/¨ž
A‡_ Fuð€‘P¤+á¡4 ¬…�—Øa!A›Sïæ¢cT4®GŸî•C³i&(¢åeRRÈf&ÜêÔNu;“Y?bEw.¢bGFö”’‘Õ暲zmÛ&¸Ú¥"§
zæºLK‡
+ßµ”á:|š«=¥Š\“•ߗUáYċ ñe¾4‘)¤s«+sƒgÉ®OÉÊ
à)ÿ¿xfy½’§ gτ#J"†e±²Ùµ
+:@8Kêan7+FAkʳ‘¾�!X<4`¹7¦?Ny ÇÓCNZ@/¾.»Ràæ“ß½ì^*%ý·'¸j¡¨p†øw°õ"cõmˆ +Ÿ$ØuîÅ`£æÔH‰jR£uŒä–Ö}n*ÑË.j“ å~–Ô„æc†Ù¼úÜ[Ý×¼*gÔe9Pÿü"p%n&¤ÙTߪlNW9,¾±)¦«R×"Øó\oé\	bd16Ój%X§Þ6ôÒ&»ëõ¶c³ÖûÕª¾àx¤÷䦜£ðuo¦è²=X#w•+'+zvzrúñj‰V¢«ž€åð\Bh®êp2+´Á^u¹ºˆÎyõꞥ˜VµÉ»$<r~¢÷ÉWPmîKZÀÿ•ð„¼f«—á¤éîóV2"§ÚqY%5êÑuŽKp`C‰*÷Pð‘(oŸ¡ØB´áà°®—Þ˜[hANÕ%Î^'Ái¶	¢B-AS)-ç[mŠA—Dzø1Äç$ˆ\¸ûb�†·îåÁ8šðš{~!n�öºÿE\«é±Ù½C[i¹îñbSξ²–PÃsP_;''ÚÅL­bãgÅ&a¹-žÚ…üú~Ù|Ï­û³g빦žÕ
MAŽ¢‘«[øtÄäj¦;̵Æm.3>*D·¸Ë•”ZqÐKë߀¹pŠ²UØ8vmV.P®‡A_qÝQç-+­À΁UÐ)ÁyŒóA]U”Úaðb¿)AÂKFYµZƾk
¡•N|A?µ­x¥}Ffï”÷1†ú3aì¥#á©ix{¹YOp¯sæ¦ì´ûXv{ç׶ytg§M_lê„H²Ðl|ɒ}�
+Î&hY…ïÝÿ–GçqeÃôÀÚʔ·kBúü“,{4ÔH®B¥œG2Ý#¯—ÖÁuß²ž¶	ke&ZY½Të;·èïDmŸçº–”ÊÆas®XWS€¡¤0qP}º8­™OïýA4”àSÁӇwÀ’dë`¨Æ�Ç.ð¿X8k²O<ò1Œž	/ƒÌ\DØ>%çJÔ=)G-7º0$óm¸OÎv°¹­8;×ù/ÛՎ×öâ%ˆõ«ÝÎ.^íý·݌=ErN
/E‘ p:z:wÃ1«Ðr�{òc>Œgñ‡¤øawbbQ—²¹ùfÌdîCÀ±Ü<šÒՍ`ßÆÖ_&™p5}+å]ü>7ÉQلê\œ]ZÓ¯}V±ÝNN‰TCb%Ñ´lÛ�[.hÎYŸ�³’ðn®³2­5×­CûØýý^¦°+…!
+ˆ§"Ò
+�¨“-óyØ1J&zñeñGâc³Œ¥K<Ìel
;C}ŒFU6Ã>H¬yß<*£Ò´4ôx¢®*g7Ãì^¡³†¾Õ疞&
+0ď”ÿI%<6#ü nðzà¦2¤»ŒVy1+Uqõäõ‡Âú҃É\„>»–¦
‚óLó}EÐnÀ~žIøyeûlƒ•IƒP÷ k¹ '?¶šŒáa½wݜ—}Šd­ÓïUæ-Ì,ƒÀzÆGÏæ$µqÿŸ^ʸqK0CÎro*8'z0a°£
+fupc-þõ‘¤Ä^3ýQ®"7ÒmÀñ€	Sé"Ï:ڑýëžnõW¡ì.4苯ŸSx%Šg¸¨=)Ù,s…5Úøxò�VôÌuMÙ¸0“ß
+0†ÎVwž=±¨Ö×ÇßyælÓÓÊÉwBÈxÂЊÒrkס³“¶ x
+òX¶®˜Ûv =föuõÓ(Öë[%ð¼ÝnëЎÞFŠSÐp>Z¾‰O´ÞߙpT=ÔW/ôþ1eѲò‡²ú(ƒn>œSt¤Ÿ©ƒ Cõr'~î’C[›b¯Ùô©uÁ·ï+¯Ø[¸íå£E×»v°ìÁ¦ˆðJ¿Ý%}fß­ùZS3^i?ÿUj¶IŒ
+øo^OÂX·ìJ´ÌÍw§`-wâÀ…{PV½ðu8wålE´ÇLI€ ÌØ%dÆ,°Á»¦kXRûØisßìЈG(ݳr–q�Ü]g½5cKö¤*€eßöÜ
®/šóÍaŒx,_JvœVnï¶û}T颹4#י$Žù4 9ʆk¾Vfµ&]¿öNz€ËaìÔ܏ùì!¤—öàlY‹¹RÐ,÷ɳmnvh
•”K½*¯¿Q»ˆ†f¹öÓåóçeõä~{ê6”`£T”¨ðÌD‚£d3‚LúU°žñÀ&©;:?¶Êüʀ©¡èpT‹fKf�ߦÝÇ2S÷ÇO—¬­Õ®A
Û¶öi)*BáÛbãÀw1€×²ŽÆ�µK‚Eb»2@¥*	°Ve°sÐþ^Aw³Tûi‹bÕÿ>û0ÊÚZ¦ž%SؓH�J.GçbœÆ!Κ/×ٙuðTl	¢é	†(×ïÅ
Ïăz´~ç¬cú‹1§`åók J
+ÆpeeÏQ™È1] Ò<í1Rb(�æ©%ÜÈ£�'djQ‚»§ª‚¯êò
q6–ށ·‘žq…ÖoÊºÒ8ŒËÏ�OBÁÌb·,sf“C
Û7.¢­„+µô9«Ñ©ÞªâR‰0ƒo¾7ã–Í÷¶üY&æt �·2(˜È ¯ÅKL	Ï#”Uäkð†MV±†¾V�ŸÙâã,Ð<jkóq·Wÿúرje°Ô4ÎïÙË?‚W7–!çØq'YF
+:€»jþO¶™X»œ~½°mµšýz!-•PyßLଚ„Ãò0ƒºN’þŸðjÑ¥69Žsà?js2lp×f—ÅiöæÔF}à÷ ¯½î¢®Œ~¢»Z8ôô
ãïwTÊësEªåÎ
#‰™þ!\¦³¹jËQèQøEüКº4«Ÿá¨ØÉÞÝxoCRl}}Ìàû¦¦µËAqS›­ñ0ÑóKggÛN®í±ZÓܕ'5Çx16¾©MòÌ؅-Óãbš­»AÂÏʳ}%ý½mNͨ¢‰€g%Ü=å4@HÑ«ÀYY°^ƺÒye+gÓw´MQÔ=mÄP‰eê%P¿7@¹š~:˲„Yéüù…ž?Ç.1ӀšeÚ¥ˆyW#@d»jÿ�SO0
+öϋ°®0¯�ŒÕ,Ö$6AÌHKðHµWGkゼªÊµJ֍`óòäŠ`�·¥;Œ’5ˆ†ŸA°þ$°ãNu8>6BÑ+!q'Àý|~Ö,áÎIIp±‰bk­‡iGÒYɁ¿S�|xøÅç.~Fp…ñcX"mC`WXŸ«?í2O]
›hsbz²×9;*› gŠç¤ù~&Ʋßâìdo`&¬0«3¨9rPy;ÁãS4³vô6ÐUŒ¾´/íŸçp鮅Ö#A=4þl´i€ám—^+åkœÅx²5l(€uW–Ûo8‘×åÌ(-ˆlɀýäÅ<ó‘>RÜä¾~ÅÜÈþþ!,ƒ€Š.Œ¿§_7L¡û
+zZ¢Pˆ±pgI/¿åüsša^*nÅz¯‹K"`L?á¢]˜âð,¥>pöfÀ1‡¯Ï±õQ$ÉþÜÙ3?‚ûQ8€±¢R1„8«à9c×)çu˜ºd’‰³N]�ëìöøØ*óëcÚL¡ÒátL¯ÑrôpW*ëiè×çÓ¯¦Ý׏÷PìËË£l”D1k›àÙðÉâa<¿àaÑÖ¹[KµÒõ=ç~;Ç-ºu`fU½“óJ[vï·waè=ð=„.I-ò	}nݺ„ü!,…g™4ú1	Že§±Ü-ÑV–ò€¾SÅýý¾.
‰’b…¼iä,Ýfª¾ðf/² 8=¬_øW^Û!×ÆjIŒèFlýtÀž$°¬Y»�±'ìð@è9v3à5Ïè>û7Ô4m�e#@>ÀUŁq¶,À4 /ÞÜÒ[ r¥O¦Õ;¶Ó,ýY)¶–ýênjéºÃþªKïóÙ:Á¢?gê‘XZ#GÒCy7.P¡@O“ÐÚâÄÙZ¹8Åî>Ô8[v]«¥Ý¹Ô2�lQY°=5¡£éàÒ$¾3üS@‡ÝýÆ[<ki#â
+>Á‚mÇ]âM ¹NñLúVJy`mo%à|\”vy½¿Ç,Í_Ï0„ŽWËÅ`ªêxE·qK@+gS{yˆ-}+Gõ<¡+«5ž7x”C-Õx–V'Ԁ±=±
+ËàËö¾Æ
0­l­øTµ7ɉHöC=.Â÷QZÅÄr¼.‚¶0~#Ã@½P+”ÓX£òþ(l¼s6lK:×øX9²`[’RÔŒ¿n€}Ïú£^Øß5%vä4ƒ¶~µ‡¯£¡‘ךG[šÙÈ5ú ŸÞ:·šv9
+âÀæ]n¶)ô«‚[,Íí°xÜ6õP1wIŒÑàžüŽ‹ÿ~}ñºlŒ¢Ÿò–°0—Œ+±Sç„(-kH^šR“Ø8ʐÅYW»g7FÌrF¤Îª�3Y1ÀÝîï“Ši	›S¾Ô¼Äj(“I¥ÅŒóüüµ7±ƒ}FþÒÖºuҗø߇|àÙ6¼1ÕágÓ¼ïø»|ԕX½¦zŠ—FàÂ^ΓÙáRãk�HãcÊÙÅ°ÄðkLiœâ,Wí™sý~™Èüú?ÝՎäڎörW0¥/Eŝz“N½¸÷Ÿ(:Ýö}åÖ¡(‰šà!ŸÈ3n9/h§¸WÊT€P› ”4{™õÎÁãí2�-i˓*C„”Icßxu<ƒôífX‰}©À
+Sˆï§âê”À²¥€–*
 l€q_ü^‚g$½stn$×�9^°¶¤/üÌë‡z»ýÚ»ï«+WËJ÷ŠCl.#¸–w‰ÍvVNö1ßF‘­S`Ký°÷BƃÂW€gÕD™Ãך»(Ëw˜êêPÖý|´MþâJH™AÛ9£?o€WÓ¡Æ5E¶ß„½l
zH7¾ÅÇj‰9ôTÏjÇýõÁ0€
+Odœ–§;õÕ¦@+w¬â®5RÈÂ&g°-ŠPÅ2ê3l%pƒÉ8­Ã\|1óM¤Ò¹¶×ÔQX[òÙ>OÀrX”ƒ‡w0©s ^*a
;×¹	–q±T<°¶Äé1LRŠ¡ÑK’œO͵ø~%g�„½a€#¯?øÀ…4Âçêì°™¬Ýâõ¨§s5�¡ÿÈ€!¤zÂ}¤ÿATŽv€“'@о˜éPퟨØ+Å(@0
–è`Iz‰•¸é O—1ˆ! ê´+�faøÃÕòàn·m=‡×›¢ú$ÖJ’ÐJݜßW¨*“­¬w¯¶YáîA¤Mks˜ð&Ðû‰®í)|=\Ë¢Ík^:AÙ6rØO©˜žÕ€ÐX©Oy3~~æ†>_CQÝR5"©b‡áÑ¢ñQíì[ŒÙg³E›Ð,YVJÔSzØãù�Ú¼UŒriBit¢0G¥@–ÿŠ"ž“²ýVuÔü ́­Q;…ótuQ/ƒjÞÖZ÷{KC¹î{A<Ž*1­¬PzÍ$Á€°~XÃ‹¹ÖJ•¥šÂØïá¨B¡ç÷h3¯ôIòŠ•W§$\jV&Lßõ&pæÉyÃÅɦ}RºìÅ.0ó}38Î3더a¡pXð5ÄÞßxL�í½³åG*™œ�xÚÚ9aw÷‡kÍ8aÝójì›ã|ƒO9Î1‡Ò••¨ÔôKp>yŒóº5YPué¶bu^°sx`=Î~m›5A­v£~̵I&½\‚ˆ¾Îã44@Ž”ÈV�´Ï#âʼB —¼hõ–lŠ ¥ä±P¼6ìØݧ­­m\$“µô­–q�m¹öYL›
ۤ�°±í-ÍÍÍ ÝOPwHìãö/9FÀ¹âh18³jBl+±1L…ƒ:ÒÕÞñ'òŽl}]î´z ÜDôôxÆ:KÔÆó¶—|‡U>`ÛSô£N%SÒhL¡°•¦ÇJPoUŽ
+aÜ&9ìZ¼35I€$•3î˜oWK1¬ê¼®¥>\œ ØY–Ãê³õä#Á†½bÅH”rªê-ö~nrУœÑ9[ Ò
pkhG�;Úp'[Œ`Ù>R#Ål©\yT¤xíÝ£pÈɬjÖÂç	¾®RÔúaw	ET·¥çI¶Ò¬ôË£ÚâÊG(–섃¢Ñ$é8àcéW}nŸÚ	#ãSðØ[:я¡‰¥6ôwþq®ò'õüþû¿S ‡‘‹Ž_›¦pÏr8¬Û¦«_7netÆ—W1HB,‰¯[ZÀÁщQilãx)àã©YN]®š䴐SàÛöÿz ¨V÷’ë
+˜ZdäS½H_ž)ȶÌýÀ3Óêõ÷Øÿz]¡‡¤±Z˜ÛoÂ}KzY§Ô’æવªù„¾镕ó$™|æT¼ª&OéZkÁ¯	jD`F=T.ÃJ¦•)Ö"&uÙçþ_Ob}ó:Áߝ‰AdT
Á|Ý[~[ýã|{qPŒë{¾M’Ì7²2ÛCoæÚÙª@JW€KÚ;âÎ%û3�Ç›FEb,æõ®knÏÀ”HwÝ�kÉÒTÓ
¿WlGyPҊœ³¾Z5a±N
úÎc€©VÒw°
+Þ)Áჽpj]ÀçM<"*Ášv-@tX‚ÇÁ(@-•Œðs	N–TP«êJ~Öt 
+€"^\[)±í­%jf�·´‰ùRT›Ã<ó6£¶àÛIx§.Ž�k´˜	\6T|囵«f"«c!€i.ÆpXbÏÖÖs/|„vÛ"@òiǶ·°^ý~?@!	ïg/qd\{’<À]*•g›öØ%ã¼î®–qéE¯mKߏ)IUDîEƒAA¥RÚ®T·n —Öm¹Ê°%eá°ËAÎÃ"oñ¿·›ÀYpA>Áɏ`Ù|BëI ¯Æ*lÔ\‘Ùe\›NðÖ]òU«Òñúu‡ýJi˜ ef
í9–À¬Y€cw9�H»Ñà8¼‘®q­æ?ý!"¥ê"ZRESK©å,MàÛ	Dºôù”¡¿¾	W“9lùúûj’.¦ÍX™4^tà•4² ?:a÷ygÓL	¯†j‚³®âC‘}üùëvz)¾üùcGç|_8pðü‹ðއ¢Ï[éÜNylÊ|Ï"Š•^eÞ6ûº·qîø®l¨,¬5
+̲®0Àêr49à¾Æ
½-18+ç©ÉAøë±}~¾Â&¤ÀÝ­ÈSÀÔpÿ	jÎx/îuÔAåT¶)¨·CÝçXâþx¡)y»k¯\ÉDÍ©a÷y/škÁ°£íÐT¬žàÙ£ðÝQww(”:µX‚ç#ÆSšœ!1»`oi–›õ
OIhõªËŸ7ú„ÑÃoÓМ
+雰U_	{1jµXíA²¹ÚÛÿòä®FACÆ´½m•þ6`³®âbF9S4g+äA¯o^ØiɄÑÜ?fî¯Õ¯ûHíj”ü¦_™Ð1ûïsòn*öÏ ŠŽæ˜‡Ë¾	Oä&“kwl1k‰yåÂñûUŒDߊ>‡Ô0ÅLûù¹ÿS›k‡U·Ñï±=Û.Æ=ì/¹€­’5¹‡ßk?Ò¤ÚjÒ1>ïfÃ¥xÞ2øz–Rº‡ü®·oŽ°¢>hÒgª§¨SC$*€DCOb‹�ckm­›ƒØ—TË[_÷5¥Hk(äç1g¡J;Sòõ×ÅOÁi9nÈQ·nCÎR©Eã–æ ÜCÕ¶:¨ ÐÞü[-W.ÉNLž2¯}@_ZÂçásíL_`4A‚x76§
¤€Ûðql>`èó·ý{„ƒ°½‹?yA‰1lo³ýQ²§³¶é.°,FK<Æ
^”+í¸Îña9S>xó}\TdÝc()H£†*OWúiǐe]—€I±ø}0±.¬Œª°˜¹÷ûäahÈj:î[_÷-5Y=ûê›pO1åÿ	´ρáÒðPmeb;KG‰Í·¤gkÙ£±•7ÕÇÛþOb´ˆÜÛ®7±jǙĆs+؃àŒyÈíVª"ØÅnjoq_ÏYçùj­ýnX@ö„ƒ	_zºz4÷YmíÂoAžèkä«bÛ°‡·Àw¼Ô¹n^¥Þjàß1|]5¶³x¾	»­¦Ôs04NJÂ›å]¸Süaeã+šƒ%Ž¼ëØk;ïúH•¿&ðugً”:ÿOyµ¬HvÑ/¨èAZ¨ÉwF.¥Á›66a1FÌHcj²„ðßûÄ+«îͼb虚ÓY‘'"#N$ˆ¡!×Ö)¶2g<Œ´O¬T]ÀªÏ`(ÍAÑ�b`ø;Š!`Š¼6í¡k+W0ê¸XÝzL²˜T¢ýŽúౄ¦°á9MªÅ#úY.«€ï!<`76?«æ'BiM«'œJ2½”ñ‰‚¯!üÛÝp€‚•ÿ'È;Yà£.¡ooãå‹/_¾û>…—ðJ/Aþ|÷¿›üóáÖæï'÷õ蟿ÿôᛟ~ùï¿þòýÏ?ÿðÓ'¿ùáã¿?à/¾ýôéûû^bú6¿ÆÏw¿Þ~Á?ñù®?âÃ�ýúR^þôò÷„—|ò¯·¯°OØ&qˆº2é fÐ#9Œ‰¾ьO¤SôÙÄ<m|ßþŒŸ|¢ˆ(t±ãÝúö›Ð‡ŽH]ðªÛÝà–j5˜Õ¶‚#bhˆ
­¾¸aˆºøÞî«©¬gE˜­V-Þýæà– 8:ֈh—?&¿Hà4bì†6FÂ²ú†:o O<9gqqƈ5«¤VzÏî@·ØJ<ø
}Do“²MàEªO|½F!…º1z¦N	µ¦‡ËLäÏVKÁ˜Ö;úP°VÜqôÜÀ÷ÎH£óYGcZ
ÅÀÑ{4òÈFé™è·ÛeN¶Ù»Èô¶*¶õsæK	Å>ٌЅ:g4—Êf;‘{Îg$AÔ5Ì·i¤f…ACµ«Ñ€å,OԔ9èDc&§ÓYpJñd”^ãwÅrž;֙Í]V=o·mVÞdp›ë‹ºØÖжÚz5µã÷÷”J
+Aõ—!ÙQÛ.})Vy¡Äû²l`ŠaYˆFÚS’(©¼¶†RÏC«âýþS¦|oÜå.Ü=Ÿ%žîÓ*©Ul½e÷ ¹€©Y9ò³zØ¢º€BXJ`æz©–mY]”à¶\·…½dLsÚy›|ÎwÞ÷7<ï2²OP*#k(u±@Ϧ*`Ä>P«üƒØ_xéðì·\û‹
ÿ-ûiKˆˆ÷czöñ+:…àŽj€­Öh%Ñr̋cÚeoK³Dסiâ¸ì=^”϶ԶE¹)`NfI\ҔçîsEȎºkš3º'à.A•Rˆ’<€hVÍ@£®#ã13À…"g)Póþ½­—µÔO1*æÝ4¥ãq’)’2{6Ù<(¹>ŽÙM1 ÒÉUR.ŽA]dy[ÛÚÙÔُ·5?‡‹Ä•‡-a—äÖ,2p®Ùåˆ5o€ØÆz&·'Ðé
#Ðél}ÅØé'«üns±KښÞ§8Çd™C΄É>7	’‘ƒØ‡%h×þtÚ5'
ñ0Fâ”f!U[ui–ÆÈO wMôâv:›^{Híduñ÷ݪ–OWÌ¥`çÎÆñ%È©k{S¤›?©1%…ó#ôÁ{¬‚¥öcèzèd?ŸM.-ÄjöB,J’xPhâ‰W­[ö6<orr’ËçÐï®j“ÐÁXÁ
.K¡€$ ÐPRñ,Rj§‹tFrMç³ÑÅ®X5Y¤oX<H¾}-D9#R·ô_¤j›Ömœ	[ôòSŠ7jpA˜æ9B	S PK­ZI®A‡x´BŒ¬`æÆuÈÀ÷F‘4–ç³LªlOV1¢r’¾$ä6GTI9/þ.y™ú~Íá6Û•±­¢m½-ü.‚yáôn ÷ÊE‚  |cy†G(ÙÆVo¢™x*?°*³¼²2‰mŽ2©
a>yŽ"ßñ¹bž¨XŽY°š³
+¾îҎ¿ÑÑÄTñÎ4ÜÑèG“<’§ˆ D¯ß_²ÿHó¹Rö5uQÛZÝVõ’­E,Ÿ‰»ß®(Þæâ"oP&]<d99fgí*\Š%"™Õ[E™ø|&I¿›‰ºå<åXôžÄ%uðÝAÏzî!ϊÏi­iñOwÈ!ww±{v‡
+2	Fé¾*™]ymÊpS¯'u¼Äæ‰Ùð°el%%@C(@¦54.¶LV5ur…®Oá4‹‚›w/Éú¦lŒâq¯uœc O¨˜Úù,“ÓNFÃèà@€ôkéè,xFKŒ•­KbwéßÊ®¨šx	ì~»$aK×µåuöI<c” *íÐ�SÖb|(LZ›Ïg#Aï'«ÜîÒ°Í×&·S'l,…DFƒæm:¤öªo(±Ð—>˜ˆ;†ékЗ&œ£\€õ%dÍ2À‚�L”“Uë †¡½ÿÄóE:!à>ˆììhÙ<5(¸¸{VÅ9ø+‚Ò$ ½Ù²ëª•2ÌÐÖ¤Zm뵛ø\/öÐ7N^„sú–¦-¡'òÝ1Á–.aS& !Ú*Å
N
+X	‰ë;ÑuÖÄëN¨
ŒŽŽ”àí›Á£G¹Ó…/—°ô‘gË`ÌÙ@JÉÖÂdž”ñ\Z3Ç»õî\^Cð¶e)ÝR…¥Ø}MXèŽm“½Vņ‘kò’WºÎ’x
ü~»$iKçB½>Št*À	ecg´‡ ×A6š(†GÙљ£Ö(Mhµj¡¤8%u¡ænJ-£/6õQ”¬š~BˆTq`Ù
+mXò@¼»»ÚÀ8}9¹cKVÞTÀ¶V6uuTÄkD÷Ûeô[žÎ”¾3FF—©£„J²îNBP€SiFVY?‹¡á`Kv²±Ür»*R	é&-\&
ºó>¢®v³ÚäüWOD\˖(tÕÏxá<y…¹Hœ*K4š‚-Åh“­“í£©¼²I=I3°¥ìO'3°€³)–mYmJð(Š×Øï·–¶l^0ß8´¨0rMF³=ɆÈó¨Vã£Ê4g°ÍÈãbîh?¤+›€ÔµzrîêæK“É
W	@rÇiJ¹ÙK¯ÝÓ£Lî	¦xQ‡­’bø¥§.ƒoŸœû«
DŽÚ?—ú]™ljW|G}¼Dx¿]’qAۖbÔN"‡GVÞ­®‰K%&«ÎRD9s’[Ÿ!RMïêú<πbE‚’¶¯£ZÌӊYb)B×E:4,l‰Ã(1EA¯‘Rf¨¦Øԁ‚¸ÛÐSªùŠ^TRW:m»Êñ®vu³)±)“×àî·+¶„í¹EUñs—£6¬ÔFW›qjTÄVHcÃE¡›:L-Z£‹FÁA
•Ï‘»MÄ6e›ôN•Ì,fiøPز²=¨ÿ¦óŸ÷Ìî2yHÕ÷àŒ:ÿ¬ÃÄ6W¬µÈkÄu£Ö¦`nÑ$`Js×剩`ëº_‚ØT<ù{–É\1خӸ3Ü
®¹t…cRoÊÜ`ÑNºöi|1E”‘ò½^üvûŒ“Ûp¶¡oiº ôD¾:V‘Ôh«Yàô¾œñÐ^d·Â½RÌ�•ª`0Y¸vÊëJ)|Ã£qºžZš<˜ÚYv#›…­<¾Ò÷ ¯ÎPAVBPpÙ×Òìl䫆úX"µ2IÃÛ暿·Ûe®÷E±ÐqIÝÉ'¶Î:y!ÎéÄOVt$´1u¡wI{CŠó)B‘ $øôàûŒ¨ãfv{•þ¶U£Œäí…4ÌÒ¯³’P±�,ÔdáKScÍ®…~K5šy€:ÍS|¯9™1,éÛæù¢&våsQgGfߝòÊÆývÉܞâS6Þ›èÈüý’xKz3Òb(\’Ê,ñ
,±ËПÉÀžú´Û²¨—M±jÊP½¦³0»,YˆàÿŒW»Ž$7ü‚þ‡
 ‰zÆ{á¦6àxgúÿ]bQ=;-öÀÙ¯G«ŠdQíiž“3UCnNÓ„í¡pwü¥÷¤GŽ†`Šðýgf»TMyò{u¸ûËÇm–.7ص5Ž‘/çhÍ]w(“älxô¤sÁ?YMEkîìÂê<Ä_L§j§¦¤Ö{*¥[Pô
+¶’6Ç=‹Ý¿ŒLFFëD."Z¿ôõ‚8½é>
U ¯FÈl4ëÌ<¢!àGìç¥_Ç-ý®PQ½zß=óÇq‹’‹ç
öèÂÔÒ$¯„niŽ^2‰Ö:gМ|NIòy€Tmó²°$n+X=%߃I¬'IÐLì,Û ñìza«¹ÀÏHMÈîF8³]õÓÇ>³L]†öŽvW"®˜áÖwOïqø(ìH݀Š¢ë-óӆ…w!““Ñšb–Y“š¹„cÒ©1?è´Øóu#Ù;[ý´.
.a¹§íMØ=‚XaEY#ø_ÿ;ìžü®ÿ.ՊÖ"«„;—¤YwB_‚`íÕ,DŸã„Á²â	(‚Yrµ)hÃAÉAl)6&JÍ Ü_ú¿³Bðo?§¯‹¿ÉZÀ~kɲËÔ lRœ9Fš,ŠÁš	†ÌéÛ;K,Ž¥/„KÍÌRâ„à*§ÆrDp9•ÁVóy\Pú:Þ`é¢îòã2ér~AêóbÃwЈ%Llà^€+J±	-sIhÖ/JëZ)2MÓ°Î$•
�A¬½Éj
+÷–4]'
+(¶`Á@cãµZEXÕÈÖ6“â¯ã
.q.É® n¤sAìjÅw𦽭üãé@^e0ÆÚ-¤âÉtMЌÁ-%¨´‚"ºDLO3;Ý·Ý£Òˆ_)	ÁË`H²ƒzfQÃhÖ1T¤tíø4&±Wm¬¬°Ë Ãõ.n4ä¨m÷jÇw@Ç-xÊ!
+Hïe,1HLá֛•mìCç*‚#4û6º’<ÇÌ°ª—Hy.-ÑÂÃf¥ ô&¦çd©…‘„àOçömB©#w•KåÈKsń´�û9–^xTN«¢ð˜JW„Fû6IëÌVOmÙöéºàAì� ºj•M›®Î°#AG«Ž®_Mþ†yö sA¾#$1jBø© è‹P<Ð$ƒ°1eõ¢œËó÷Rì~œSì~t¢ÁdJ­Äs,K(ô~Š5(g.,Ù#—+A¹
;5mï $c‰1Bô^F±ùžz*F]
-¿„§Wd»_üžàã¸ÃEí`´€^í÷)†aßöTLC¡%YÁê‡m=6A&Z”E—åÇýeˆð­	æЂ1d³¡xžu«Ù
+"KjNq¬š/$£ Sp‰Âà,ý”®‰V2Á‹iÃE¤ÍÞ3¼«áN7›ÆN3¿§÷8n¡pAóñƒ.[‰·Úª}ÚRŽ¼«Ìo”Ê›ðWÏ6»A
ùÜßí"ՊõNB|‡¯Ë…ËšÃðéè;\Oo?Q„³(ú‹ù¯Ä|a0Žž,XšvLCX³µãycÌKç
G}Ù¹!öÊ0\a?ÃðÊö5pvr"8¹×ý½ßë¼_¡5ô?ÑÍ
+?ÄÛÍ:·Ù+ª…K*Ê9‚½¬`(¼¹õµá/ oNÿHC×8ý€:ş¹5ýçcÊ[°Šºª6§k5)í�.H\°]Z6HÞÀç}Aìj¡wðˆ)º”D»¹Aæ†iÁÐI'|C_‰`.ÙàCm%ö
+!)"É0ŲTƒæ>ÍK#þŠÖB¯F­+Xù{TQíÖ;v¤¿Ž7¬¸ü¹\»º¸Qа«ƒÞ±#¤hI‡ÂUúz:g”»…ѼjN|'\$SFbiÉú…Â]Zj³ªlӋô©<4y'¤øÓì/îԅìóXjCÖd)àJˊº:\ßèâFCŽÚ6t¯zGTñŸ¶¯ôÈpŽkU©X=+ÓÐÓGÌ#Àg$É »uJ>¡ÕÌ$ódþۘŠ“M2Qé6gÖùC¥ßò�Ü«
+hqiz#àëxCÖÎê�\±¸²Ú�û¼˜Õ=uJڃÉt_SÇÜÃkήÀÈɜ{,l;™®¾ÎÁ̉–œ-(‰xà}
qœ›ÚRŒ|¶‡Å"8é¸ý¥LHËdŽ?;DqÖ %èábŸfÍa6ëÐìP ?ž'}Ú1r´wº…f\æÐÆó‡_‹‰bÓÊjŽ®\:j}5¸[êã%Ïì3‰áz.¾Ó6…Õ7*Ü°3½>P{XÀlö‚‚AÇu/ˆMaÒok± ŠA˜x–bbƒÃêd/v©ëÛ\½µ
+hèe&7¹”§|
+·
Ø\%Q\Œá¯üž}G)7šºÊï4¸{vã	³|eIçvö…ÉOM|Û¨lˆ
Y(¢C¸`=Ð|Ĺã®Ò,ÁòÅJßcëðpÇؕÝŽ?þ>¿_~»¯	È3bùP 
+­©ÿÿâÒÕzçóëhòTBa³™ê3Œ¡óñr$V†Bçö¼Ýbúۂœ«Ô—/s[¾m÷#òóâgøÇ#Ÿ'þHgOÀoÃö¼Ñ Àpî5®#PÉe/Q¬±{p?—²>+â|ݨkÁ	¶áÐ\¢­jÙ�Pçàâþփu×b«ºÒ¹¢Îoç�К™ZF§·`n];&.ÍMì€9¦èMÐ=ƒ,n0îÓZ;ށjèϧŒžCî.÷\÷·¯u2s1¸ÁËÃÖeá†0[W>\KN0l-‰¥7ú	OMúæYæ	¸ÀFYF´âÈZ,8ÂY)ñ|H<½c	g_ì73nÃم¸ÒCc5|ëS¨ºÒt]¢ߢƒÁ4™à
+^ ¦h†ÃÈ6²µÃ²ŽT?<®jzN×ý®Çq÷.7ƒ›l]d|oðv¹qYܳ½ƅЁûgsÒîρ6í)ñÉçAs}X‡W•±18^f°.3rïgvh˜Ý&òà΀C
	Ç,QƒÇƒ”¤J„ç‚B|{WCŠ”r «g
+ùÔs:·ö”c:¡€·HaÉñÉiIhKñá¤øŸ��ç4ª#
endstream
endobj
14 1 obj
19313 
endobj
15 1 obj
<< /Filter [ /FlateDecode ] /Length 16 1 R >> 
stream
+H‰¬W]kžÇýúÏMÀõ›Ýٙٝöʖ{ђҒbb(%ÙM]°®Lȿ}dE͝’^íÇì|œ9cz<[]ø²T決ÚÅæ’�Çeu6€³]Z;n®¦ËÔ6
+ƒbm¿¬%# ÖOP¦ ëÒ¥q�x4ux^šáÚ<Ue…z!j³,˜,ÁncÀ°€©`ÍÈE‡ibfÜ7¨*i@ãµ°ÿ_W¯®ìxòôxý=>}õüOë‡?Þ¾}ññÓÿý·7wwï>Þ&øâݏïoÀO^ÝÞ¾ùðîíAO¯Úñ߯¾ú_íèG‹¯×¿à?ãÃ�ý|ðñ—ãÿlÇ[_ýÝÕ3½]¸é8x^†‘�S£‹ÈÔÏàoÀdvá!ðý!¿vÈ-ÌûúÓU?^„¿^aM9Úeô1ñ‹Ö·¼ÌøŶü|ý&Œ˜p>¢‡7†Éw¬€	m&dÒ¢¥¯�‡\ñ8·{®¯Á³V‚²`D‚J“ÔÕè<`µ¾ò²†[Cú°Ib¤STZ–`o$µâ9Rw©¼o´‘­>³ËšÝ-íø¤:s?ãÝS$aí¹–Q6:)AæfÂRž3ÁáŸò�†‰£`^̱¥°F]¦Fá¦îçf¾0÷Ãlî=mdi�ìžåT±BQ½ÉŽº©ÝÃß^án{-bRQËz]O+³à˜«@¬„*Ød3Ï­UhGM;Ȉ­zhƒÏÃ~EÏQqm-ƒ=Þ:ÂZº°Rœº\cý³ÔŽ�S異4ª¥ÅÄ®,Pzx ªfœûu쵝YöZ[ñZ¹˜WW
+%¸¼â�76k/UzA~„¼HÚH«GúpJ	#ßfù§ÔälëÞFêõ(+…±=* j„[„¼©Ò9ÁVyídÈiãÓö xf†cK®…3V§< «&³ÕMÔ¤×þ	¿o†hæÀ‚³´À
+‹ ñ²T¨"à0s]5Yû^›	pI9`·M›•}í(ŽE«Ö¢ËW¨ñp "njƹ²ѳ¥`	c
±kí_Ó¢0Õy0’ÍAkåAÀ$u¿µt °Ñdî¥çþ¡mê–f
+(©iÒ+hΗZím6p L<ÁéÔæû^˨ª»ñˆµÈKq€ ©ÂH{QÃÜ)ì0ò¦RXD©Ö¢Ì­òšÚ>”N¾ìžáû�¢N›…„ÏËÂXTü\Qy@³ݖˆ€-(‚ôöD½Pä€!KuVXš®páû±U¶ CI°Ö™H–>\ˆf˄G÷™äà-ÃÓ}X•‘¯Õ,NQP®Å©’72^iÒ!ž@`âV؀ê†ÄÚ1ÂX<åeyhë³WÁ5”ÜA„gŽ¶ómÁ‚Z+ØÖ΃ÐUu„îs«ñvç4^繖’�0¹jJP«›ô‹	kh=³À^ɹ ÑZ�óŒÛKÚ «FzDÂÊî­æŽï»É »Wôãæ¤bÕ"Û*Ölí
oR‚ìôìñ^	ߋ„ŽìJ«Î&/ÉàaU·Îi€ÃAE
–Œ	Îë‘Íûy697 Û¡ƒ™ ד{m·ÍÅ(´ˆK;	Øüà*eVr‚!­QÁYŠNERiå"étCšl8ݦøbJ­…Æ•"¸¶‚ z?	NôLBŠG'Ã"y[´3,
’©Mµ_$•œ9gÝ":=ˆ–
єÇ
+—$CCf«Bêž
®þ<ÏSÏx»”êqÞ¯F+o¯:Zôþ&'Å:ípð&>áߖOh#Ó잗R#áu¯M³îu4À…àÕ®	"4
ÖR¶I_«™0õ•BÁë(÷ƒ/µß¶Òô2H6ógõÎUFÑðÝÞ{“äáµj2£»R«Ž.1ô„cq^1ÔX	"cFn;™î:B™g®]rŽe›õÌl\ë\ÿ]×n¢ìq ÀɳDiÈ£­µ9G¯&!Ì2ԓx]Ò¤ù.4¥æ´S«÷§ïÀ2û¦øØïÚ£ÇøUÎÅÏbØÐݸÉågú—Šö„{º¿ég%(vKôdîUƒÎ3sоÞöÚM®žN™ôxعÆÌøÕß<ÿx÷òýÍÝûŸnß|üåø= 'Ï\@ãáýéñÍßï>¾¿ýñxòâÅó››O¾ûé}zü+ÿ€oŒ_/£Ý»Ù½Ù|j‰ij‚<J³!W—l)lYÞÒÀ‰m»rïUȜèⳊ´Ûܪ-¦á£ê‹Z|A1©Rdyß¡ê@\Df—Ý»E÷ø?øRúúUâ,µªC~(™™eÉ\:¶Hò°ƒY@Ó+œzî§{¥Žrlº)Àõg9xhQ@£ìÛZ$›sÈÚ㒐)xÊ°}™E¾:Ø¢•:ˆ_,6}À»®È+ïËlf4üYKËZ«!.ˆaÑyiŒª€F‘™S?ç¢r€SÀ9ì4‘:@eO›c¶Kx.ÞW!Yöý=µ×ãÜ|¡gùâ"Õi3âÉÍÍÇ>LgðzßCKj[%upÙ˜!?p·wŽ=΢¤Ãè©%Ð8E	n­Îã£"Å …ªTm͋(†.ÀÁ|ö3A|Pã0�âu .�=Ëé_À*k&ܘ­ÖfCŠgls¾’<jF€nê€N³´¹/Bupd÷ví|•=>a�-{óák¸yÐö«åˆë.m~…š(©âÃ`¯sCBe`҇a@ŸV,¤úGM%µèL}ïèLrP³‘³œcُ¼µ»þ¹®ýª­ú<´1×Z4Ô*1'ø«$úR$TY£ûqܗ
+OJ²©+‡j·àJ
+2
~ߗ§V&…Ò»Puž—™KÙ.]œI¯¥lë8UÞûÁrPmÉ)à9'"ˆÆÙG9"T볘4Y¨¨J<÷¤*Sʽҳ„J)²Rhƒ³ÀœéÎÍsì0ìiÈ7»!ɟé¿…ÆÆüI¹ž:‰F’ç b5›­ë:ÐNÕ¼
+—KC–dy#%œWm58Ô|tó8�ùªŠ^=‹®+ªcͪÕ½”¬U¤%G×�Wˆ/##=÷“í¬@õ•*5d>Ο/HŸÂU£Ä>ÐÌ¢O$‡×AY2Sa©3]Olr†ÃâàÉ›;5€*zF¢KDjiÒÔ ¨Æò@Ñ°È®=åø±ÎXÓ9&jt@›Ž�v.,$i&ĞÆà€GšQð¤øàÝR]
+ ˜cÍ"á-»®‘Rx'…Ô,Ä!‰ù_×þài€%MìvWOÙüÊÿ_0¸a›æœ± ^JûàÐ†®Ž9)|ºLÜ q³ª=²Pÿ·K¶8…¯ÿ±^u+–7ð	æÎMÀØô¯Z}i¹H˜0Y0!,Þ%?0sáx1yû”¤RŸ3žã½
+fñÙÚþÔên©ªTüz±¶dã›FL¨ø;;R{ø	ô߀‡ÑD‰q¯¹TހT6oÀôi7”à•´,˜ܨ²%G!ÿ>Gz¿M6œñ:¼:|ÐÜ{òæìn£µº4A2
+Þ¦´<}>ü˜q⠄:XRi²&Õ~š!i4N]%À&´0V~AҘԶ¥†t‡ßp0©w¯Bgk•Œlmè£I²|Ïtp!&9í±‡$ŒþÈûߋßëˆñ¥Rz¡Mî&hYA•*1bê°ï¤tŒˆ=íÂ^-Wòsµ‘‚6UteÙ(Ÿ¥pº˜Ç|ϘN~ ù¥².ù•¯×Ö0ÃZìf6Žp>Và¶Ó,¾÷¤ÐnÄÚá7P­5,ýVã	Ї`žÎDz€ÕËÕB*AX·�MödùQ8óªuqÜn|^-;=c¯FâcWN×(ûËP¯
ƒ·4®Û;¿Öù$…n/ù}ïÞEøµÅéÌ~VYü~ë᤹ò̘–l¡Ø鐽¡W8œ%HÔJÂ)“*ãÎ~ó¾wBÝöâ›O»pá|EWSaÏ—¤IOCZ–Aá«À„=LÀ[&ýÑôwûòŗ—wůrÁý\Šÿ÷î¿þ¿rþýºò7ßü^ÿþ»—ßþøé?ÿüóûŸ~úøãK€ß~üÇ¿^^Á_|÷òòþùã‡Kÿ!¿ÁŸw??|ÂåRo7û~üÐϗqùãåû¿•Ë[û—‡¯0>ap©qEÛº3{~âÒ*lÚåÉ`Ó¼ŠÚùU˜1žîF~zxñÜþô¹ß{”‚É–cþ„hF&€—ͽ/kþ�ͦhA›Ut}<qË$lBNPà·œ'ïf`³ÂëóAL7Jè™ð*©AC3X˜ ÉÍçRësç†3eD5f ¬’UôÝ25óØÓ‚±â}n
÷£KA'<<¬_ͽØ;C¸¹¹÷ºá*;²k»^©¢‚Ïv{·0ˆQü*ÄSDF¾ã‘xNÔ¸ÕáQÔß 1³c¸ÀE̽£ƒè}Þñ›¨¹›‰Z䆻ê`¶gÂsGatÿ007€¸ €v€`kgç÷ÍD'ƒÎ\Ûw‚¿H€7<Ö©
+˜‹•O
+xbZ¸Bwžˆz9Äbّ0ÀÖyè2ûETn×!ù™Ûœ}Ån@!ª3`÷±έ¾dFŸà¨”‘•°òÝlŒ‹>0pF
¾“�3«ÞÔ2Öe“ïÁà%=`ÈöŠ‹0›e~Çaõ1À|eRºçånÜÇSkzY©F—>8‚X‰Å©
§%€c°,wrÀ9dŸšÐâWap+@ÛL°ä÷n¯"¨™ºÇûye
›Ÿ®¼z¼¸2aÀ²®Œm`\ý0nè,áUrC‰Ñ†o·6kMÂÙ8,6Ñ1Ä`IÌuò6¯|R¨Æ^|»V…	O›êD.}ÇÛ!	›0\k´š—p{+œ6 <f€Q[À‰{Í�Ûkðu·oŸ
ZêÍËׄ›œG>Pí—7댄덑¼ÁØ˝˜÷ÉÄ}Ó:{Qúlé|““eÿxµs¯'èKRj‹vLúL°£ŽRÆMé'§¶¬Ç–$‰Ÿ!†¶Ô’¸›ÀçIÌd3GP"ŸÌ@9;J°Ö¤Ù^+³µX’°Žä—Ï0êg9§]ã6wÉÏD›lZç‚�a.©é>2Áž¢í•B�ü|”ž+ëò^·Ïljùz{¦eSMï‹Ä;º—æö>à>ô/ô?ûÔÝ1ÁqÀ&—»a¹†«‰ŽØÇð,ND›áO±f¡Kã
+.¥ê[xõy–ˆo¥°jæäîþ–Øo?y̳f/4Û3aô©Þ;$@“¼°BWÅ6“âýÉՐOÿ¾v¥¬,ó`UÈBEå
+—µbuGg'
+¢©ŒQ¶—¦W”RnöìTŸ‰
։Áuå!Ž“^V·šTY=01“p”0J‡J¸4ó2=O%,Ê»Çå2®i™–©tf1Z#ýÛj¸ÇÜ.l^ªÌy.¢KæÅI_çù‹ÖÌKÎU
+¼’üã%À¾„ıV¢Z1äïØG\ŸÛHG]‚’v´™‡=g`t'@$0O€Y†Ã66®Íµ»TªþBÅ%¨+£j¹Ð¶ƒ)D=fTòòi+@7•�ÒòE�Xi®•“D1ՋÎÐÆ%¸7@f•ÚÈ»E–»r;gr®ÕÍ! §Ž¥áÛ}¥}a÷áo|¿$—Ö^òfìÄ}ÒÎà\õhг¼ñ°�¥g[†KâŒ³ñ`¸8Ö¢–,:[;¢À�	:nK%¨êZp™ÓÏ�WFö+x"ŒópvóRàZ]”ü!\ää½tž¸ºZÒ¿Ê&¡ÖRsXÕ$^Œ>ü…ØÎ÷p}œèµãljXjlsÑMáoÂ�oÈ;É?éØV¢»p­{t(iû\ãÄÕh=7orAà×æÏÎ[Ee™づ’懞‡@ܜ?Ĕ/æu+•‘×0D"çnêäJ3šçyQ↢3’0íukñÇAÉÈ‘j‰Ö3KiÎF°–~}]è03в„k[Ám\Ûf1“²^¥MçßWžÖ`‰•˜]– ÀÂmŽùbFÍãšVŒ.û°­aѹ¶²Ý;¯}™×š+<¬œÚ°nœ±=G„�gUF¢Göé;œJg¦?z§€ï>óûÞ²–´+Ÿ”™aWÎ7’ZqWXÛI” vùø½Ïõ銅µø÷É{å$èuh^òg4&f,% ¨ÚÊpäÅYs´1Ӯڔ…8`;µI,¡0ÖÐ6Ù7Öæ‘ßâ¯ô1½°µä,¦}nªæöטúk6(áFÛ·´¦èN^Ϊé£F›9ˆÍ«Ãþ7vR Î+S•rÍ4Œä’yÌ<8[¾Wz*cy+'
+³¼ÿŽÙ ×@Z#G¶Ì š“U$í	§:£2£ãGúŠ0â.RÖêD‡Ëª	¦áÄ80³¹ ¿FŒ:«Ÿ6ªa+Ï­•[Ákµ ð]zpáÝÛbm
t"y™«%ØZ‚ÜHO·íá×OHýèÖÊ´*‹LMZ†PSÄÚ'L©œbs¢ù*Œq|Øs¬«¤Ù#Ðò@v5ß»˜É$HvBþgü,픁ÐÊ]i×êö(CY˜z´p=e0¬ÌübÅh3°õx\€ÚZjώÊ@ʁvódð4½½
µˆ¿r,Û»e�sƒ’æè"+
­e«#ÈyÜWË¢¹©ÏŠRb€JMíljYTûéÔcÀk=à9:7›Úgf«Äü«0åæ{|¥¬˜qÖÂ+ä}·™`+-ï°¦Íóé©õPÏÊ·1zî=y§¯¡Âé®ì
+Ja{LˆÂ‰+=aï147¥ÈIŒúÛ£/#À<š`6I²€Ì%ÑÔÔ"ImðØɒbãèà@ñ8à<¶*|uŠ
\yÚÿ±]-וÝ0¬•T#Q¤>ëÙº‹é¿‡€" ÷&ÉÆdž%^Šl.·P(dÙQÄáÖB<{´�µÁÆmÑê¹7}üV¼4ԕ*ÑäèÀ*\£¬
ìSÂwIÒV¾ìi+€’˜V[.ÁÚU²¸0ýh�|業p¶µ-‘K“RVóA4Õz%¦“ìÓ%¨ÏªB!„ªËV¥€8á„cñ-»	ŸÉ€w<
+ˆ%Ó9Òhی̭=ÝM÷ï­Á{ЫËî	¦~ì´èfX_C¬ç†Sà§mÎj‹`Ì \ð7ØÓ�Ç:d¬Î³§W\P‘µ‚¥W3(mPMóÝ_h풂WÅ$ˆ¶£†ñ~ôÙν«d‡Ez‡®ÔD¶þ¦f£ìâboÔ}R!y²I!¶dƒ²k§I¶åÃ~ûz¡©M[T=ϔY[CMs´CŽ6·ZìЭ34Zû¹Çþ1Çq…F6͖ÞÕ6«Vó
+ ¤H¶ZπŸÅݘ÷,(oÉ*DaT3§f›Êxr¦^l–—?yÚ"ñÐRå"À³/
W¯!pq†‰}™.{“%#EXB~õZCÓ@¼¦+)(ŽlÏwuεÃÉ»ÿ+�‡xã.zAçúџú¿^9W‚VÓÇtzu)F÷cJã©=P
GÔw¸é!ª·t«ë×{€¿†ã–èõý¤¨¥¶!ptûr wña¯5#ò5mA‚5l£?ÑæMÞ«ûýUFÎðRyï$•·�ڜ¬¡q´»�MOé˜F>ÍÓ½½…bÈîÜ6U/Â0¸ä¼]èX*Â>0eõƾ2Ãqƒ~´PyۓÎøÒ²ñÌ6
Õ[¹e5¹_k
+£ÕW#Ž¥ïDl½Ô»оVÑ�°ÖD¥Vâîú|¼ûwR°a„âzûPïo2Ø®g?˜’Q™ØìB…ØéRرx߶{÷MÎZ×îaVM„“+º„lŽwØ&­ÑRÂÐê±#Îjƒ zHj)KøрՐòý¸^µ1eÝÄ^”íjø«²ê9Ž8b ¥¸uÜXFqÐëç
+Ç#æ+*ÒE¢{•åø|ꓭÓJ—å§ÌMJVÍ&+¥ÌBwi^<åÐ,àWÃJ›Þ³ªamD�79sTÊ®¤Šg9¬gõÂԈ51F¦¯â`Íý
>‰@Ï0aìYº¯ÃS/‚#D$wú?”¬\Åoù­%mܪ`=åm^S"2öýB𲀧·Í”a…ˆ|^{±³ý7æk
+Þ9ÏÏSҀûZakF9¥_õÒ¼�çl’pGS6áÊÂ1}cP«�uì=ùv­‰&ÖьB¶µ¢Œè“ “	sHi¯Ü8¤òµ%4C®Fo)q·÷V¤ã„ìÈÌé(4ÿ–LpaÇ5ås®éú0ãÑ+G<mj¬œÉÚꥸ=·˜/®€=”˜ár¡3™·Ú)CnªÞμù­#]v5yù…Ù3œƒ–]7 ä›ìRg‚E¼o[„Ž³ F6ùdytÓö8ZíX�Ǔ:£+_°»†±kv«ê̏eñ‘ü’u§¿ûÒ€Gð]„ôXêòdnòÜ­MUl:ð‹FHߝ³ÀOuï¢éĎöžyycLÍY\ߒá8܇"ƒUÃþßB½KËë¸3í½vt¶"R¼Ygº?Ÿ[¯6|D<n±5iŠ½Z˜V?¡·)Îg{ù:.®”Wž×YMÕþDI€Û~4Š824£Ý¤m!ÓËÀ¼'s‡¿Àv“ˆË¦©ÀBOyU‡Uõ(’ô’¢?™ÃËÌ¿hÀGWìœgWÔ3jîØ·zaè¹\ã¨z|척ØÂô¶Æ`P/¤·[½ˆ½ì<qŠ» ©¬:¸ªúva’FV[÷g[\8vÍæ‘Ü2¸d…Õ*à)uj%¾Ê�ë¿üÚ%ú†}̈́ZP"%'bèÚ¶i¨´U¢uØKødÆ$8C¼«¿ª·Zîø2«Ig:·‰y€kk£\|ö[pS…*¡4Íʔg¦ûó­HÓ¥ûqÔûäý‰gí`ªµïp%}u–”à �U´ð®3쯃w È$ö*‡2}¯^:g]g-)yèU¤ÿôj/¯rÙ©€e`÷2�aŒ‹Ü׬ɅàˆÖ5´MäÙS3<÷ŠÁ£kqÄ}`ÍODmϯûÂ
͞Ϣ¸j×ì@�NÍ9¸ëóþF	ðÁ©ŠÃv6w¿Ó›âª&ÇCÙ|ï·/2m0·}uÖxö*oúÔØs=W(=Êy‹GxVŠ„‹¸——{e¼æÒË¢TÂõ¡µR,�c{4Ùýô·eíý¢»vñea:»»âeKÞºB{GüoÞתš4{ê[þÄIª¤Ú¾�ÞÚ©Aalz«Á]Ïz{
+P-Uöæ>eqäê..IWŸ[Šó=ËÎdÅlòqZ%I÷z à°«•3†~tš+°ÓXœ3LǦ´ëSæ"£LX¨¾ïºûCøã;	CÍ:O^½O‚xíћ8òíðàà‡*¹FÀØë{ô·V¡CæY²›Rd@e‘ï¢p™m_l±6žBcÛ68ۓ¼[_„ïæ+xm½Òu¤–Ü÷k`›¢éÕÊ]Š1æûZÌ[Ê	[­`	î›|‹s6¦æ’Å	tÄâÔ1YÔÁûÛçÒP:ô¦öÒ}ˆ#Îþ¾Uý•÷¹¼ä8¨Z¶|ª£17•Þ7«Sû×õk…eÅË«dHæv0X3µ=#m=Ç\˜K‚ð—ê£HN§?v¥`:jCXó˜9«wi¶ZL³¸$,6[9?4ü£ã°=
eû‰tδ¼Làé— �^ÝóV‡¥’ª¡ü¬Ò-BHòÎbÉé'1•Ú;׬H»É!‚ÏX´ÜzÌlƒÏ8~܋Z-ª¯{2ÑQ͆VC4!^³¿µE¶—ÉU
+/—@gn㦦·ë³E®Wސù΍tÐ+cR<î¹CzDU2;™×´õTüwÜoêu̽iTuy5Kî‰l€¢“,¹®2H¨Å[	!Ϲ6éìÀJðnnõ¬¡Dö¥ªíÉb'Ïޚ è¡l
©À§ÄI>âÏ9Ö¢œn«tíⶲºBv)…JWŽ)¥îs«ÿ�WH¥þ4iþ¿°O\2ñ…Mc
+ÆZïò‡ü[8+Öß–Ÿò~›ÉQ%GõҒ-\['çœú.ù$A`Â¶+0³í£<®aŸ	ÈðÞ̜颁ÝªåNRÅ$˜Bì(-‰iK�xšr¸+ىyUÈjk&šc^’Mg³8+°ƒz_0u[Fêà9WvíY+E‚ äq¥;À½›&á&/àââY}€Jwkðaf¶žÉêJUFá˜eœÑ5Æ),R9×}Eø	ëŽE@÷¡i`€Ÿù¥Ì­Ä:“(9�v*80kѸŸª–Yw€?†/¼ùâQŸÍŒQ¼“_šÁ‚·þ�·&þá»j²UÝ
+Þjïÿb3®;Ì:î¬ö?½ÂHNº’îa0aýÖÑV�»�”¾î÷«‹øz¬/ù´36À<|2œ¦‹¾î¤³iI ù0˜…46ªÎ¸…/À^5'[	àpÕÖí~Ï=)’ù&rÏ	fSZdŽ™õ`+Me_ÃD‚è[bjˆÄPõ„h5z°_jÓé+¸ÀlåÑ2rÏ�¸Ëñ–[š~É?¤‘Ò
ÒÖjSbR‡ìnl¤¶s]µÐ‡…¬»gX¥ëb’ì´*Ý9CçdÅ‹kÔýa ÝÕØïß$«ߛdà²o(zØÃe”ó3Nš³“ï¨چ±ç4zõ¡éuËâe†¨ß:ÌNöòî§6-6OõÑQ	>G⒎²‘ÕU«°
+ÙRž%<s¡Lòýԁ¡ƒW¾íLú3c7æ¥cUâu[X؅Z¥]¨­ÙyݙžÞT'±è®|Šf…®ÑöʄATq®.TÒ¨2‹ÕC°®Lf5XºztöJ°Ìª~^4óßÿ«_ÿQW¶)Z˜`“5;#_!£öíKNGþÉäF€Æñ�°móœñ·;ÊgöR/¸$M¨þþF0ÿV„#=Ï >šö‡;Bªi3^¸-­dhêÆ-CÈsA̓µì!p72·¤3ßùyÙM ‡7·Âßr“¿¹Ý¢®ÍM¾£9�¯*=¡cáJ¸F—=>ydF@¾ÿèÑÕ?„ŸÖÏ.òŒœ&<›60’þÇ¥.½únûñ¬)4)æ—D_hÂÁK}§	à}«A²ü±\ŽP×.YÛÚ´vÁ?ïKk«<Š×µ+︣�ì[û–Éq¿¯™¡ ´wùÐf׬¯¿9ð|t°éV;ºõçÂÅ
÷s¶
¤˜-€;	NwNM7üÀP’Ð20ûæ€ï6›¬®ý’H}?•Hf]Å¢8G˜tæ©K€ÇћÉŁ÷·ý+láᙬTÀ¡g~»zî’�CÅS/£…×°ÿ2Âvˆý¤k§…ðÛ´¾RÏ!͘ã+þÙ{ΘXgÕ2Äq°_½pµË6yö¹ÒžJP²ß_gì=½Ü}*§ïqK¼qÕ·˜9ÌjiN$Áµê‚]äÚ¡¶Ç>bÜcã˜KÖ	b› ±+,úÚJNl]Wñd}üœ·åö
ŸìžÞinÎ&}´û`¹ìv5˯0Tㅙ½hJÀglċÏ̦ÏÛùÑç>Œ`éo8DzΎЙ	NW.´²՛QjY׀ȷ¤Ž%¸/‚þúÂKl¥0™¾6ßnLéâȚç`YÏøLšPº:éj½?Óî²&ÝO¢‚Z.B�J×zµk`¸1»)Ï›]—1à7·¾?Gö2$ÂÐVŸ$)lLÖEÒØáâ^·òSžôl2Ø7²ã€Âµ½œüþ·]œßÚ8çæv{ïÍßNU35þ´¡7¬QädϘ#žÅÅ´+Ë`Û½ætz7ûMã–R¶®],`®öc1ÃÄVÜØ;ûßì¾>L­b)ÔÕ¼½6—à.à¥è‹1XP·ƒP»TQbîïvÿLàÉD– ơ̈@wYÇ
+‘åÚ°ÓüP/ÁÜ.£çæT6Èàzë&×»°ZÕZWÞ=°{'ÛAÑ2?„[U͇p8éh ³$$€¡kŸM<®h™¨ ¥]˜ëªF¶ÏFù ¼­ªÍVþeä¥Íz€iùçnE²p'ÛÊ(Àv¯ÝÖ¦.�ØCšÓ�\¹<P'ÏÚeÙÊwpÏI"/߇öL´{Õ]|Y|oöïû!ۗ|M"ë+%jžEå,^xÓù[êÔ܇
+ kžxM17‘ñJ¶Õý¾©Û¶3V¬‰™ÀUœlln»nM}À#UØ­v¾ˆn<ÝtÑÉ´û=–:& Ž›kßR.ø«ÀœÊ‹›Á¹ÏXFeèUÈW1>_°Ð/ýõû·ß¬¾9ðìüvårV7Û°5úѨFc%µ«&ž)Á`5>4èTt䥆ÎnôîJµ¦Ñ93¯×€T@°å¾—m%ÝkiÿöÀú‘锣hʊâò½¿>¦@Òà²WlYØc™›.ç©Ñ™9ÂçÁӝ¬æü‰meq¸7	€»”ëݟN¼‹Ø+ãñÒûõÐêõp¶§+cUÂ^í¢¿l\¸î©G-kà [jž>yÿ«‘çʅ‡e\563æ°*„[æÉÁD“›%†ƒ˜Ø;äRÍ£¤Gž¡›¬>•îq
œK0t½4¿ÝÒr8Çe”â=U4­ÎN«¢ô適ôZK™!­,¸Ú[ª“ålþô`¶¡Ž(z(À«7NÓÃ0ÓÅ
5|Ø´û–Ú—ê˜P›¥ÐëVÐ.?„×"”Á‡ÚÖE÷òÿ²ÁÙiAÀ¢*ÃõÜyžt߯"¸Êf-A›o‚‡÷ó$z„;Ï
+¡0T¤½òl+ƒUçÓ¿>:À¶]Ñ殮v<[1iWc®Ê­	ðÚêD
˜¨s³S ;+Á~¡Ã±˜|óºáN?&>sÆÙøîÔ	/¼H›ïÔôáÃ#ÙÆAܝ¦©`„ôO|(üa÷`æõkü¨ÀO®Y�§gŽÐç;”·+A"øÝê‹êY;Ô4;sÅøø!<Zö&6G»/€ÓÈ`§aŸ( ˜)FF¬«—¬÷¾I'­ÏL;ÀZª8Â'AÄÆÊÃZÂfŒgâ…Kj€+†+
œ
2Ágͬ¸*
 ¢k£]¸~
§·sµNŠMú:BrȀoqî¥Õ¡Ëj²jKÜyöÀëå.:îX	o[Ò~€ý†0:Á5Û3÷§�ðÀÑöM«›Ä¿“¨q#Áî(óV¬ï¯Ï¨þ…4«Ò>U<Ðvc©%S›k{km¦Æn-“ôÍï›Zr€2ÊN
Ʀgðp|}rJF‡ÆP¸ß�œK¤òÁ
9ZÌV©¢ïÕ´Q㮨úÊY1 ÃkUTÜIFnׁ1ïÓ\_§ßò„/ÁæƒVcÔ\¶±µHœ³<Ú·-E°:èk?Ó
+™æ¢‘αòê]³Á(÷EÓÿ›ID=G>Á®Gô~³5Í)»žò|]™¢´­˜)><듕wH‘)ÕPýò̑Ԑ*p#bxÚíE†­YsêíK3‹&3æQ+’þ­‹¾Ðƒ¬åQ[ýúè×ËÌ·}û‹Ùr®´€5lqéÌ¢8ݚæKò@)
+A¬^ËèÖEԝíàÖ¬½
¸KeÎÂaíh}Up¡H\»ÄÿÙ]i „ÛÝM௸ÈÓ.•Â_ã0�ÚÊÍ}ì	b.jR÷är€Žº á)aqaª›£óè(•W‰žßî—_Ø%I
PŸ §+¾œ3z®–tƒ~5˜…`3F|
+â›4±ê¤h¨S_nù¸¡³ÅX{ã^¥Šxґg1ådµ®›ña×ÀôÜ«W·ßÀ×¾ê¿Ø+Gr¹‹k¤Bp0ßo)|éNkwª•ç”°èâì
Hö ÿ,TŒÖy¸£b?ِ¶
R:¯¿jt³¨æâW �¥LÿÇ{µ­ØuÑ/˜Ø/)Äqwuõ-y’&yH˜àà ¢‚#á(0cPFÿ}VÝzïs±Ÿ!GKµ««««V­Jµûm°Ñõ¦Ìþ}ŸKØfÏg«ÁM$•ß»¤ÞlÙ44@Qª·~|ÙïÆyN·­˜‹Jc{	@´;HÍýbö–pPë
+«ö_ Mv˜ ¶h¡á²“z¿�{c€”04±ϳ²�¸>{†P€P)KÒ¸"ÇbxTrûb››`C0ò%³CUòèd¯¸õÏ}<ÁëÈ©ú÷Xª(Ö¼]=ÿÈÀ˜ƒ]*ÎKñà�O[$82iÖd”êJ!¹ó`4²LÅ0SÔO^êpw
”tþ¹‡¡²n‘·�g�fîò
+Ýq’bwPô¡å‚ÒyVt±.°ÍÍK
`K‘Ÿ[øÞuèÆ~|š5Žœeë~½qäcŠF¬-,¥ï¥údÏÂ:&´Ovž"Ës訜f©ékÃQUk'•6ã‰ÏŽ¿]{o@3úŠ½·Z½£–[bÏ#Π쁁0w­$ê>s-õþ›7KàJkåÚ·D¼q,ruÄíÛ¤e¡µðÖ<ÃråÄ7>î¹Ç×VßÖ±];<机œ©¦Ôö²Dݙ[Ájöó2`"W»*Eoãûë©Ë}Á
+¹.mŒíêù^°›²ÅËÙÓ%p3Å,pµI°r;Ø:È6ªd—–—ø^ԗcޛÕÔ¹ƒ>Ó�Ξ÷ïOãrV£zØ;xq,bÕ3ADšJ’‰}ñh¾d�l=s€UzéWlÙ£€îN©mW#ð\R³.6Í;²?2à2“ÃlkÉ¢’B9±Ia€™ëÉ©G,siUÊî¤Â˃½8þ~¥¬¶æʧNî+e}— AÚ�g]Ú{å_–ƒÜ+–žáŸÏ
Äò¬u»z~$lZ3YfF‹„aÍ°Ÿ.˜	lØR'«Å?Ý6Z/­â¶Ã.èëÀ¢­0ìÖf&g¥æpº˜S8­ƒ¶«Ázz‹¨‡ˆŒd‘|p¸´Þ&m€49l‹ÍK¬
yq£F fÉmËrj$|yþí
+…>"eµ¬À]_h@¥úpâSXÑ+»1°ÜËÁ›yÅ5ZHÞB-âj=‚ÈŪáZdnK±R3.–`¡�æé:»A\m,-ŽÆÇÀô«Õ€§ÑÀR80c-ÅRÐ˒íEŠ„g0ÞøÎa¬#ÎfÁ¹(ÿÁׁ˸<`†î–_ÑJÅy0öµU~Æà�©Y¥­Á¢†ì“Bþ6>Ïìü¤º»~˜“g~J3ÄE
+¶<rȓ)|0÷°Å2p(ß«è1Ñ"~©(¢úöúqçÌRR{pXøQ“×…îÂØy
+DB†‚Íb°Ï¥ÛÈ~(ëkH
Lؽ†WAYxçÖ\sÌ©:zæ#.ƒ™?š«p‘Ó+‹@¥¨ÅÚ}›b‘‚ªed£‘¾p[VyVÿƒP–uuQ
[sd+œ>ÃjªîÄG=$à1z™w<¼îô4&µíj·»ø¤éª(u*kÁ ¨/ՕUÙù
ÚÞ¤U±9¶‘3¿rà››¹½x¹½ýÇɯ¯^ýy|ÿ§Ç÷¯?}þßþöîééçG_øáãã	üâÍã㻇ï·úbñþ¾ýéæ3þ¤-oIÿ¼ýÿø~üÐOoÝþõï´½Ûïn¾f2V/ÄÆEF]5âaÊ¢]Ò¾;!{”„îN|\G.=¼oo,¼æ;ù"ɦŠ¢_”ò|P¸£Â0ý�‹€”Ò�¶jX—¬òߪúà¬ül‘”¢²µ­ØbC•WÅ-`g0KÜAÁî°ÚR[U<€»m~f›s.¦.«ZŽ1ÕêEÄj8PQ©p¢Êî€eÙÀ/H8ÌÖí$k�A¿}9�_©-›"9!hÜ@"næ@üý¥FՄ:@¦ÛYHäi€qYЏ¹cna[d³2P»
+ È^škíàíé3Î"xìÉIhO½R­3À’ªEÀ}Æ+4øåááuü°R¦ƒàìá ÎëLcE0fñ›éø6P™ES?UÄ+HtÄîOë3
û¾Ê‘Íi*-;È)ñ´�Pª™È€q­J"T3¯;–)‡
îpÀ)O‡KnÛ)ˆêÜAššCyŽÊ»ƒLZ2¸—f·%[i.ÀÔ䲸†i<ž‰•ä„ì9 ë ü®‘;X1½6ý¥Jt9@Â®Õk.۔µceé2°É
+¤`“V3ÉZPƒ)Ÿ9@6¦¿^‰-\–ƒRÍoÅÚp[b}F8P‰a 6öî5ÔÞ³EÐQÊg¶d“èÔ+T¨\6$"¿™6¸u¢›kóĤ”kSëH.ÈÕR 0Ú=R0ãh5¿UK²ÁýYÛËvQ¦ö=z+©ÁMF¹¸&H§ªH0K0—;è¶U)¬Ë‡ƒ¹yɁ–ÉAà`3"¨&L­)I>€¢ì«éd1}[ò:,¢nÌZ©p?‹4~MÇ6Jk/ˆû¾8˜¶Úü¬Æ–.Ðee‹Šd/äC{E�ÚØ»_uQ3jM†ñGgkú:ËðïX0˜ã²Ó8²GŠSe;et}
s�r…Îr¢ÏÍcíIƒËë` FÔ4CYþìsTi'ŸTÙ ŠÎL‰§ßbž@èñºþ죞}.”´Ÿ‚ûýš´õ�a‹Á *Øîߍ¸×L°M‰Ý:÷þ, û9†—›n)J뙥æR§:ã…×T<´ÁÊ4ên« RÊéQû: pFi˜„ÈèÊíÔ+iõwA÷U7TR\%`™!lÃM÷L¤À»h/i\m˜ðfæ`Öé‹ÁÑMõâóLöªÜLY©..59Ür%ŸµiÌ;Ú®*³{(د¾ÿæÕ§§?~¼úøãã»O?o¿ôÝ3êüåöÍߟ>}|üa{ñúõ«ûûÏßýøôNL_n¿…áð×e Aùˆü®ìâõTþa²ªÛê4”Mu®É-¨ìNw×}Ü=gü{"½¿VEŒd6{¹6ŠëkÀÓ¦kŠVùz´•G4þêhš4èPÑZý]_sÓ!Éã&‹«a^Q;lœà^ÍÆ7÷|Zý½Æ`:T4,µm÷+hñÁ¶ÚÀ;T/® Ÿ)ÈÉô2·_®zv	
ÞRì
sW»q’­tGc ™ú9.ž©xL@C'΋ð–R•ðʈø–õI|>ž1>0îT­UñՖGÑj³†¦4¸ö¶ÃgNž5ÀýÈ$G^žœW¤ëq'‹û_¸e*1½ÎÖ)oë»km¯KX<c€ûV&e½:„ƒ`„×j†>xáäK쀎™ì’AÙO	v@ž%š§ü8À²ˆ(˜‹	́aM;×'€kµ]
¿†éq€DÉAÎ&/àuÊ¢ „z8=B‡3àîbh@Í‹`WH¸œ¸×	Zw;|ˆó«Ç½Bà\æà,T
+Zý,ÿ
+ïù·‚8·öB¾êäÙê[ށ¹Cv£@:•vxösۑR€Õƒ!™y½o)ºÈFÌÒHå¬j ªgHm­„_ppwsêb×Àb;C׆Z¾¼Ù3=»ÅÜ©¶C·
+_¯rç0Ñÿy¯zäÜmx‚ÜÁ'ð$@‚õk}€´™Ô>@nŸH”¾ïeRh<nì5Eâw±èá¡Êàp{ò¸;ÒÌÙ·¢þõÇÞÎæcðf؃NCÜê¬/¥bš·É­“÷³’9	ü�Þ‰êMÆËÙõØ[žóÎÖ ¦Øä&%Sn‹À;}…‡ÄQc.²çÁ‰ê\£Tæ¿€tîaWsn)&DÎï¶GR€-ùDC”4
+x|\%
+6¡ÖG,Hû÷ᆁC[Ýξ{ÿÁ¼©¤ëöÞwÀÚÇnÆ×ÜdòŸ—üŽK¬7š¾¹`«åV-V@{ÏÑÂÄ·z¯ƒÿ¤žèp^qôz®5íþî­GàȏjÏ-¡i3,{ªÚεF”[í²v#€ÍZɗÔÞ\:bI(ž˜“«©j³"‡GW?Û¼^"Y…×ʆ…æOŽÙR	UÀ¤ÂŸÔëê?,
³®™\Zü-ºj¶&‰´ø¶|–¹ú0”ÓŒ³ØÖÛ\G€Õ«§4ðþ½VK¬!ÒÖƉÇëpj´ Mò³½¨ƒh¥¾8 ›ˆZ÷©¨?¶´•ƒmxH*´ÅòÈzm.=¬šÚòï¾gÞ®Kyi—±Š	¦"%ä‰Âº:Ýs¬Ô€•¼ÆÓ*¾g!pö•‡_ûÒÃÈÿÀqäOêš}€§ºÕ
+~	E€Í‡äKýüýSÊm‘<Í0‡ºæ6àû¬Ÿã…éäÙ»‚ƒyp»ö§V‰úÖúæPù´¨ÅÒî„qžÕO›¶
+{ÝDÛºG„ÌTq¸
¹EÞ¦ôW~L‡UÖâ­^~\¢ÇõÓÄTŒJŽƒ²Ž’½åt‡ø/ՀK×ÍÏ·ü_Ò¶¹Ž¡ç6¾ÞŸ~nä5|àzÁô€=¾,i‡Ô+FB¼Š­…:÷¹
T°5K‹žj ´égM(;û⬰ûq‘†“
+!âŸß6å SÓ-ŽáƒêŸÖ1ÚÍ `ó_a<9Ç3þï“~jëÓª}®–hÎûC1ßü{‚\Z3ܔלî<:E$@n:Aƒi$¦KKûÁöƒ!Y…ã­Øx·ûýEXù¤Rúf\ÖXaž'5|½?ü ª:_ÜKp%Šà‘p{cI™š4Gқ_1Oî»Ýûà^5‘c»‡eë;à~ØÑ›÷ݒ8[(
+f¢ÄTyóîW\°šÌ‹Ã9ÏL¨^ñ§Ï¯v=糀sª—}…áȓ€0ûÍ%eu#ŽÒ …•ÏN’ £©:áe]’ÖáªF%u‚½Ä·F±íŤ‘,N%ájq°P‰vHj±àÜiúYôøÐukÿTînú½r\@µ„´ªh#=ÜÖÂ( ‘iÕc BJ
+õî Õv|Ï¥ª¿%ݵÀÑdySÀ-WSô õ«q¤
§Ù=¿8;Zc‡™â 
;Ò}„�¿¯{A²½ÎWÕ J•�¥¨:Èäv!xH$Ú§WðŒ\ê£òØáR]ši`ۏ¥.´¸ºÀµ+¤ÃÕýᳫ:[œRÉÏ­)S_Ÿß§èü¦ããE]‚g‹ïéo”‡uLé™øbg•H3#ÞÇš¼>.ÀÑê0ê"Ïju;{):€èß~Mc¿EGE¢¾Lò/¬QdëčÝE2°ôÄç½®®8ǔk!Ô®õø>J04¯_€tbÍ°)ØuՆš ’4�ñÎép#ÿ�…Fœ^áVÒxŠ3e­$VD¸·E粀±+'Ó1Æ8Swl”�Ö¢ñ–R_0ª°qFK†Æ¨ŽXw‰ØÙ¥$-3k¹4é⾧ËA_ª®9dä@VÛy¨Ä^Z¶È^‚ÉG*ä[Á-ª ³EÅ:­3Ŧ¸¦Æ̽×®ÀŸÅí¶²:KBD
g>áÔºqA†p®ÍÆè¤Ç0bT$8f°3:@Œ”`.Æ^9´ ×éÔ˖äÖ¯tˆX·>ªƒ‹݀#ÚF¨ÃeÎb¼Q/§š_Ü=DæٓüNë¾uÁjé«©Ã[Ú/À	¡»8Á%\ÀàQš+ÆîëÀâeÜg	¢Ÿ¥9—åHXîÝcï1°þª†5¨âœ4ƒr&M_OO*€³ 'ä¨Buå®�Ž·ùb­P
+ºc¹°Y‹{›o?bÌ\Åo­Õ ôj€Rz^@>KÖ¼/ý ³2|[”«#¹À	ÂÔ³Dæ2ªÃ:Kk»vÙ‡ŸlBýÿט¦§Ðô6‚gEû±´ã¤‚ÃVU¡XJ‘é •È̋zNb1Ú¸µˆNUÊmk©ÂX½«·)’BøJh^¶uEÁ%`ä¤ÇYÛSηÞðœsÃ+ÐJ8wË(Ë€]œ¯0};Ö4
<“¸ƒo§wÕ)ž�v™uÓIú*º@i~X¸©ø½«bďuuÆ…§žl÷wÐj^`Ñ8²ÄkTá˜âÞhÿ…¯*±^…*@_vúxßC¹)þCëçÏ¿ølþùO¹…‹}Gæ¨4¹²¤’Â;&0H·L1¿À–ù¯xkŒù˜h¿¯?î÷š	~RXu‹H¤C“zí`VI/,÷$åCÈR˜zsôÑSÆÔBL—�›«£÷­ÞVˆm&Å ²%ÃE±–ºüFãK€5Æ}bÆpÁgJÎâ;8¤‡Áæ³âa€ŽÙŌ_�8¤Ïôgœ•ã|€‡ðYš:-¨¦Ã\á”ç0qJŒ²†…v¹‚­ÏÐõtˆ;´í�yoʟC>_”R¬q«Ì+„Ê|¯GM»xƒïØ’·ÅÆÖ:–ëdÍQfì5˜,ßsHè½Öôø¾Oç-—>ò­Áô™Ã³`â‚E'VÝÈ­Ãhi…úcíW‚öî Rúí±­—|ÞÅc^0ÄÕ‚QÇü¸&¿uš·Ø65ς)­Ó•7Цº+UTTGX°TA–lâ´%©ÏkiÙ³&A.`÷£¶¢6­úCB›1¾-�¤VòÖ(n„{0ÓqAÞabšïL*	b_o,¨¡vaAuAeޔYÀžV³m½?íßöÔk–6û
+˜•Â‰žNoNLß%§íÂQ‰”k§ùÓKÛ
+4ï-ÍkÜô™¤½çYJžÚA(м×V¡ÏA0æ½8Ã%ªeïàŠÂIÖù~²–ä¦ì'¨ è¶xùÑÑ)è ç÷8©î/D²Öó{Í(hú…§L“ð¡#"9¾â%g"“¼Ž±eÕN9àR[¼€î©Lм3…Ù1
+üºƒX›úžüö+ž“FN±O‚e´å¼D“6®›F¼óÌÚ]œ±8<³u»õ!‹ÿÏüϚ†MrL\˜;†L°ÞÕñà†$ãœ|qŸ3î7T8 ¦Žˆd˜.gçP٘ÿ­Ï­fRÐá%:»Í„ö<$Àíô£YüÏVÚh3Lú¾ñ#(ópò.À^“ŒËl¯#é¤Í÷Ÿgë9oü †M6~¿Âcà·€œ%æ*g‹Ì[œöÊÞ:ãfÁƒ5xtŒÎô®së/Æ¥BÞr¢î'×ü¿®M­œ}óÖKi`yjt/
¨»2ÓZ½·.<Ú¢7Œ-š)௟mðqÉoà¸äš«è&¨¿ÿå½jZ,»è/èÿð6{‘F%•TÒÒ²Hx!!`bB0=ƒÀë…c㿟#U•îg^Ü4fð›3¥ºõ]§v}n–î¹ÙÀ*KCŸÊ³'ž.Ìښ·­¼Ù¿0W´§E‘qk´¤¶tn㈏«MÌv¼ã¸ò~4'½¡—Þݽých+éû¹’Ë8N
+X³Œ|–Οƪ'’UÄî“È>(¹”„á°]Þ-²Á¹S|«ËsIя'Í=ïEv\Uۋfu¥,¸®7}'g\ŽœëîxÜB2ª�gFiy0L!LùÆ
+R+I“àóp
e0*€¬ã0 
KFF	O຿Ï)ÅíU…o{ÃztæZÚ&8f,í®=8…J1¥ÍnÓc�^®+€,;·"&éÃàV%ip’§t-Œ#®¢Û¢‚ø®‚€8áœâ`�€s6ÙÀµª‚PeÌZü;FmUIéüBàY»²’G jyn­YUR2Bkš³€`Ù{Ì	N¼­Ȇœd{Æ,¡ÚÅYƒŸ¬0 UNÛ)	["•¤²„²0…dIc‚Ѫ�—nâ]-À˜ÜšÅ»šÇ$\˜à¥3­z»UÞÛ­}?—¾pJ-¬
±”Zž}Kzußϥߏk ¡œ,) ^†f®–{cʽús3ãû¬ULˆëªÈ¼#^¤<×:>µî³©ÔAW°À’-c@kû°·§ð¾SfO6¬*û1ˆ¿–¶‚ïÇâZ©N#)oÇk7 –øx¶†BÖÿÍm]¨:'7}Ös!«,ćD…òN© %™Î.ᆁM’ç V“
˜ú2^iÝO¥M´6°OÆe°½Ž¹c(ö¼âZ¶‘l½íÓ®ò4K$:§_ƒ>ÍI·÷¯mW�Fh
+*
+â¶I—¥}ŒÁñáÐs²"wÍ[{|쬹®c
+ð"Òf}?&Üc
+‹5iA²l7=@ͱÅð6ß
+âPdûþð©ïދ.c™äÀ«Tù©àLÙFmÛ].µý~®ãB¶¼ÐbýâÃéo.ygÞVx„ñ«ÕW÷8ê½n;Í£4g½©¡ûÖcòáe}k˜7ƒ³EïO{YúîS'°VÚíÔÒK´ÕB´ʺ¼“l"¦¾ÃîçÒ×±†eçìd[£3ª¹Œ‡­²6÷Û¶§j¯3|?æÔö&¯nƒÅ¼-hé—Î/|`
ðÃÓ.3úنÿƆq=œváìŞO^ÝødžG,a>¾°`0™Å‰ÿª`ÖK`Çôæ[vê,ÇWdÈ´ëI¼/zòFi^’ƒ]—6‰”ZV&{ðqVæÐZø*.å۟Yh+¥Éj¨<–Cá�lÖ	»Ÿ«xÇc„-æ¸0²ÇµpnHøÞêx¯ØWxüº)†rpz°óká&ñֻ䲓1á̼úâä:Qì¼)¬„!R£Å
¶tíQëec°3Ã0L†yì1Ç‘&ϱ@n1uj9ÀÌe¥âTïu£›ù™kÇ7¥l&öªUy/ÀŒvì`߶B¦Ñ”Òy‹Øºb„YF­K?ÆlälH@u¤ƒ±•H¥æãËx.cR4笏Q–µXku0RôãØø`ï“Ô¶53u74ÚA©˜J
+éùÙÁK5€¦f¨ò8$AÊˆ÷Ê�Á{¹ŽH¤N~MwÈÁ#Œ¦,Q3V•ÊBwVKЃàhßR•HDP&Λ̀HŽM1üI["b‚ú;›ý¹Ä¨ïû¬«/)–ˆÌ¦C0ó©O;-bà8[l"¤þs’<y™ŠäŒ¹¹ñ YƎ¼(9ß<µÛ_Þ¾ý;~õ•€o̱:þ÷ñ©LEôw_ý±þ믿þé—ÿþø×ïþùÓO¯
+~ý釿nà/¾y}ýþñéã­}	•_áÏ·¿>ý‚ÿ63<Üþ„ÿôëo¾ýãŸáö±Ëþíé÷•j§¼È¥Vžs㬱hˆÅDï[´2fÁ+oÀSÇë°í/ǥӕ£‹1þð›"›!hcž0U2@Ô#Õ
+Š2W“„%ãÐpl˜ä*›ã|Ÿí}ê'¥~©µd
XZ±÷%õN`iÑ@Ž(´3Þ¿ˆL)¿­Ë¡k%ó-ÅjÁõÞ£p¬jÀæ΍Õ0°Ul¢»´åbhl¢Óê„É°:Ãݖ×Õ»’L5‹«ät;µþ²ÈP@c¶$|<-æÔÇðÀ5m#ë¹YRªê\‡“c)® ç$&¹piÚK~Z{=ožv	Ōã2#/9xMÇà‘ÏÖ°½{¨õÍu€C›IÆvO2/L^éýZT°ö˜ê÷Õ·£«²<ì5*©Yt¹…x;À{D7“ÏqÓRñª®²ô%‹MËKhÓCMîw~¡;øÿz6ÂʘÞච·³)Æ):`¢~ß*¨K&o
+æÀ
+ÂóhM­YCT¸¤¬õOàš”í[¥¨‚8¾a•í}„è¨0À±r¢ÉÃ¥6à;XÜ(N©Ø{ö4�–ÐÙ;À‚”¤J•�ÌðÑh	ÓðåIÕrqYiÉLMRÌþœÌ(4µ°b)že[rJúý&A|íH3û3‘ï‡Øé®FµÀ(U�^Ž|Ln
+ÚTé`Kl ¸­E�þÕ©`±@)Ôø~
ôÜJ˜Ë¨Æ¬`÷cن¦—ðYöÑ4[k-t;-¡¯G×Ûß À`’±Ú$mÔÔÐ7P³nG¿3‘ýï†l|œmX1۞1ó·}†¬‚›Vp	Dç‚\L/§b²)ˆ)XtÐ+­$¹DŸaø˜h€‡Ýo×\+w·áSAÔyYL1w9s·„¤ã§¸D“Ä@5c‹Y9“ÉŽÎԏqN·Ó€_šLô`³8t۝@‚›{xr53hÇ:wø¬s ÚõœlúVï?J˜Á‘1\Ç¿¶:߃9Ì›˜§Mm‚Ît»¡!Î÷ÞT}’ÛŠyá
+—Ûi�.äü͇1tŒÔ¦G,6n£_Ñؕċa`Ô¯(å¢3 Ãc¦i•÷æR™¹ïlKn3²(ð‘ßiÒ lS	«Vl\—†œM9Eíaî9S°ôg
+ÊÈx[Ϟ‚}^©´¦ä²EemÙÇóí`쇠‚±µ© fv8…6e%9hé`ˆ«®À¼„[·õUâùJ-/þ¥QÈn�y+”Äþ©P\T”WØ~AØQnóû!%3 †à
+HªE¨}Þ�ÙÇE÷ çl
+í Ä9g
+-9hÊÿ»lT6AiÕbØ»ÙÀœ¼Åb«Õ@–¼º¨Ïגðø†yÆ+Æ(7÷«Å]¾]J¤GÅO˜³¤UÆU!Nó½Ì‚	!š³Ëù…WF¶üœhav"÷Cu½LýN5Ñpr">¶Ø‹)h!¸_”44‰“×&E‹6Gߍ’’–âçž)&[Å9¬ô¹£ ؕQyÁ¬˜
+@me¥×@þßÕvdW#˜œ€§ÐP"®ÚïÉ?‡mD£;eŸ;¿”„¯î.*oÛ¯ƒ¾û‹¿îo~ä2S `¥e°ÜWW!›Í^@ŸnjM˜.P¢ÞITYP")ý§Íˁ}úÍ÷
ÖßÕqX%“Æi5ôè‘Jê>æ(ÏÚ¾98Áž=uÎ:vžÝèI©%睶£—þ~TͶ~C«tê÷¬Q¬FTÍì.Ú服9&óB5¶å橆eǎøúx:öàéí›ñ=þäí¯™ÌØ*ùV{©–fÝûw¢£{qÎz+½ë»ñ-3-aòs�ÿV豔ÿ”ýÇù«þûxÛzMú¦¡ý®c]cUbgóâËëfkԔk-ëÜ5Çf|fåS#´ÒèjÇé@	—Ó8‘ÀsB’îâ'ÃÏDO¯œU햻<Œxvæ§ì á¹¿”jÄ59>l
+´³œ}ûL2؁ÈA@ÇÞçu·ðCa–$‰ÍP°h\FEs£MÈMa­€»s#A„µDa*æÇtù†	K©Ã-ØÙ9Š�̘*%»§øñÄp�Ánå�âµ;Õ§´ÁJAEˆ¼‘ݪ›z 1”Ü@º!ّ,­ˆ*%íBTÉÙÖ¸$=’nä6+²÷õ’›%wõ~+*H¨A†—ð3BL"„ríñ±JÞ!ŸëôE7¤x•Œ&)˜‹¡y³]G#ôîÇkoWçN BëwâGˁEÁ‹ bbgŠ+Ä2usˆ6…ÂÊ~û"¬ôԒa^(ìÙ[ñ˜´ü5… ²ã›`…u
Д°y<¤F[ªˆ¾¬ Á&„ího-X½gg(ù%Ýc§í0®®æ¥DÃ8I9Ä'mM•÷–~©É¼÷±oŠÝùTKãZ®4B}°]»[{q£—X¤QíÂÙ—[©eVñT
+¨ß©n`&¥h<rqÆhš–JéÉñä¬ÈÎåüÿ¬1GÛ|JFrVH§¶‘ü9¼ÀÿG†q0…1;«Œ t«N–LÖù•Fnד–lL¹]ëÞÅ­`V2FjÚàwK½…1i\l—u̝0ä¬ÇZŸ4ö™]�MéԄ=)ú×ÇÛ³o¼¾‰à1ÚÇ=æ�#³;›Ü{‚}­‰ýxòì‘û™Û;¡•H—"Q	æ\Æ$îíNgïfxMèÔ=xvõÜý2“åّ:G.™M†ßÐø8›¶e£¤‘„Æ1¤Ñè\§bj×96̝à‰Ä_xÕù«²%—º#ˆÇf)-$Îø`~é7MžŸm§$&¼’¨» Î«Œ!ëJ=Ù@fÿð,¾SgIÂØ£tïŸEu“lKЯ|y®¨ü¿��ÝK¤*
endstream
endobj
16 1 obj
20139 
endobj
17 1 obj
<< /Filter [ /FlateDecode ] /Length 18 1 R >> 
stream
+H‰¬WÛn]·ýýÃ~	 õ69ä9í“ä4€‹)¤uQzì:.¢£@‘kèï»æÂ#«U
+†ce‰{8œËš5uo]e{yö|ÖÒöJ¥n³jÙçh›a}§DˆÇÜþzöϳ/¾qq{÷å‡Ã݇›ãÕíýö[@çegCäÙöâÛ»ÛÇ÷ÛùååÅáðñúõÍݕ}¶ý‡¿v[¥}t‘´Ý¨o×	K«-á‚ËìÚ(À:t$Ø:/¥Å+�ÏÙÒ@­ÍŸQÛÞ©h€eЕgbÄ=¿o»ŒžpW¢<J.:Ø$þÏ¿Nt¾;ÓíüÙöæ/~úââÕüþ÷Ç·—·þáOWwwïn^¾{ÿáø>ÿîx¼º~÷vstKøÙYÙ.ð÷ͧ³øS¶ºÿóæÿóüð/@Ÿ¶¾ýqûÛßËöÖξ¶ Ìº«*ÛSë.‚¬X²Ê˜»
+·Ïà¯Ã!j½;ü™‘_€Œqó7g¨ÂZç–~ƒª˜ÃW8ð´!}µß*‹âØÇO|»·ÙíD핶7xýÞ;2õÉüœs—"VuÀcԇ¿j¶}HªÞ*°Ì¾éædå½1œ0Ð<ïÖ¿nZ½‚Ê$Ô¨[Åõ(Œ-@f7Z¦¤8t—îV­÷ŠF	k¿Þ¬ã+òr/xe—¼¬ªD{νOÃțad#Ï÷™Yx8.xî¦JéæÍ}Rïi×¢æUÃOcpD)ຍ£Šˆú`”©¸Q<°ôê7µ}*ç÷µ¢!½�ÈneÍv¡îy&D@U²±ÑLWyz0Y¦‹õvëpezâ
+õÇöŽl¡E5ˬ˜QFß÷™T·‰Õ`<Åo"Å×ÅO* â>Á½AÓ@AÒ(ÝÇÑÊÕº]êÞj<&exRð}™Å‰	QãÙÜ(#•39ðôçUjᩱ돪ö–X/#ÁŽ0ùã;.Á‹G¤_,ýÃÈE3XÂæD-ª9jåu2࡜fv>@ª$a ì¼ÏLÉt†—b‹@£ÄE½€Å~B$þ| ͙g‡ª»€ÂåÖí.3“í.T^ÓÍY±Tã-Q×ÔÂ.睥ŒYC~ÖfMÕ«z"Ô0‹n�¯ô°Ö¹e¯ã­ŸOµ¾³Ï»U­HÞÚa¶p±ÑC€‡‘B;«PcÃŽBŒïáªú€<[	ÿ+ºÉǐ•̀¾Äu"‚^½LÂiTgÀù¾ŒáÄ÷õ4q–;zH¼	ËOM™ÑH,G\ÀN^Ñ^Q“´&;qö&¾RYà””W[2†Ù-mJÀm°D«çÑVNû/Ê<œýãé™W¶¯ŽwÛùÅ«Z¶ÃÍõO7o·Ÿ¸úéÝv}óöÝgÌM(côò,ÝØÙÁÍFú'ü¤­xëh5xlhOÒV„õm‘}÷ºAà¸ç#S¼‘ñ‘mT,ÙŠ®#&fãËsóÜ«oNO"4©{{<,Ôfzrΰš®1æ:»w¨€ÀÙ*q~=z `aì–Õ]	¬9Æj¥&Áš¸Œ}ÆðÜÙ<TYN0¾–‘ÝÑwc‡ÍoUôÏ5OC¬æ©£SgÍ2ÅYYWa૳âÃ䐅‘#ÏÀ°L ðm˜B±åÂæ`ƒº÷†‰èú­éŽéX£ECEvÌQòˆáeeDlQÁ.¯<
+(¬Å~<¤5`°°“·'Ç£hlá/sŒt¥ÌSgô>¾G;Î<ú²Ðd4sӍÑ]Ô
+pÑou>h É£¦#Jòl#T)žŠÖö1¡ÖÀñ98™jį1<›Äó¨ôh0‹ ±O$DP1`Ò�‡ä#–Yó¤€Ôr )ÉödOçåG¨Òѽº�@Ùªh
+nD	/ŠYÒÖðWëBÁ„slBN{)ã
+6³Fõ:
+ғáñ&“Æ>¿Í%¢É.9ÀxÓ�f$s’-Ñee‹€ª%’Ù�¦Aõ“Ëú-FNIleVGÞ5ÊÌiÖ¡ôŠ›WœMS›*1î±rˆwƒØvQ5ÅýZßµ¾^Px$ˆZÖ4ÐbÑpXÁ
+Ë@é==Pn	¢$ó$i[û¤8ÙHädÀÉÅA¨Ø¹Àt !-–TjMbÚ%À–2=5$±2ZÆ“…ó{°ÄŒÉjý/ñ=h9˜¶› (VuAè9Dãåý‹zì±G!ÓØ»¾Y'–¥ñ/ÛäÄ!‹…À—h:[ðt®‚åµ
+>®âÃÓÅUo㙊¿òeNÜ|£¼‹“‡l9‰Ý´¥Än1FMà`)ÉѲ­9a—î íÑB#š´ç2Câ6Sa�kj§4PW–ŽBwIj´»+z‘G@.>ÇbbgßaÐtáC¦8D|™ê ]#dx²í^•ÈcŒ‹òn/`«-gˆ8Q!¢SBI¨ÍçµÐøì<¬5E{N*šjd»ÂmÎ>™ƒÃÓ©±œýº+ïV-½ÿÇÊk£Ù؃šg¶œo{éµýƞEŠÍóëÇF~~0r„{uû2_wñäj.»Á3Ä6³]ÑbÄN¤>œ¬¡ѹZbW´Îî±¥JbX³²ïA�ɈìºËú"5ó¬ï®jŸE°m ‹ÓqBr-ë6¹y]+ÈoJ[ÒÀ·Dçƒ
+ˆ»PÜ%°!»"ç.—C¸‡62R
y@ˆmÔ5°Q¯3¼Â«$­ŽêŠØ6H«Ø—9ÆSc¯¨¡'1ÆÇöŒ5 7tåXÒ¶æ°ñF­K0"8ï/³¾Éƒ¼þ!ØÖe©\9³52…è~--ÓʭщÑ13–D´á4݇_ÖÀe¶9¦ì,=ù“¸æPëK¹’íE#ÞZlw²d
++öڇ¢¾€=—fÖ!Z@:L¹©”Ùrjº)·ºrHÉÑ]‘®)®ÄLhQ_9„̧P¾Ã
+ڟ`EÏm¦”(yó%u¾”V}„dŽ}JÀ—öP±Õt­«Ê“^"¤Û’;GãXïO®Q†Ø3=Ñ^å¾]>Ùɇ³Kô<Ñ7)¿ªýÓæ´Ši1ùÉô†÷¤4·ö-#¶õƒbæ4=	¥ôÇ5EFÃtºOÉÖu."Oo$Y~bJñ>ƒÔº
+QOÈìçsó‘Ù?¶W cÿγ½¡j¹-¶PªÙÁ´g¿zzÓ<nQiÂòl{ñíÝí‡ãûíüòòâpøxýúæîÊÎ>Þ6­\×Ò¹-bà¡D£B¡)„–LwÌ(Ü1ÚRHˆúˆºÓð>{­6’)×Òg:#"ôX;D¤mi+5€×ÜL|z@ºÉßiÖEË֌“+…y1�¡ˆFÓW°Æ�Fqƒf)àÿ°_m­u^Gôè?œ—‚ó³o³/¶ÛBz¡%‰i ”bŽ”¸E!™óï»ffÍw$K†Šž’`™<DöÙßÞ{Ö¬Ëæ¬[Š³)oVŒÌ
°çÄùv}¬Lã":•7t E/ç6{ËÄ·ºÇ)zøìå­_½}óýÅËˋësþÛ/~Ë%üà’¯ß_ÜÁúcÕ¡L†„ç08:Y	Lx`@ñ‹XÖ¼bö™kÍ0ç3øt,‚¢Jî,=݋&X{îºêÎ;	¹kWÁ:ÁýÅ
¥5KZ[[xJh*}Ÿ“,—dqToUÙâæ`vþZùÃDÜ5WbˆŠLP––9¼KùÅ)NË!Js¹-°bïQÄËbí§­¨¢Ù¨®”J­T夊AW€¤6{¤Â²\À?Ýløgd"ºês‘”DÝñžDB¹©Öq¬œ×ð20öEþãÃÆFPVێ¢M£»™äV\w™Ii4ì¿mÐÕCœû›Z'k8!´Ð¬ÐI«jÀ_2*Õ•Z<?BÓR
+¯R«ÈÜÂ̞ýNŠƒlpmU^nÅ¥zômÐSvȂŸqƒÍ̲^[³Ë¢Ø’9]»JaÖ4çâ¾ ³.\?‰bÏ8EKžÈeÄ늎œjï+p‡e¥¦ºgCêÊS„ÿáý8°´ÝÀZ5ç&ºwl:»\›xìSº^fõðRÛí·ð©©."lx ùK·"“M}Ñ=´­Ö0C1Ä©oó
+¬Rû!=|]u¬©Ñ‰qíÕáƒC©òǸ"[ŠcUV„Jüóžç-Ÿ#õZóÑuw{Vv¬XñvíK‡yPº]5­Hf¨•©’λŒÚðI×ùïVô¦~¥Yøëµbúz¼³Vs"[Õك–´ì÷ŒÙÁÇ9;ã˜Mµï¾•R¹¶ûH©]£ùD±z‚ÑÌ¡þÏËóR@R“ï,#MJgâìÀ7µV<‡ûíÕ¥OÝ­›_x@)´ß¦‰ø0ݓw@¦‘h¬ÿ‰žxŠÓj‰s(§0�´ `5,)¼+Ê)IÌTsû]ª“¡Û‘HElâ˜bfn'ªÊ4éE™…:Øé!}Ö
+gmäÅI³Wp2˜-ŸÔæFöΤj(ƒ ¼:³Wä9F-ô
+Lî
¨j–Ø«Âð ä4¬©Uým(ët8²«{pª9;<NÏé-pùO
rj×ñj1ék’TAÃqC¸ÏòU<`#á…G²ÚÑ=
ý7 Ó•sBPIµ¦ákÙñ®÷’Q‚—¼…ú3ž�ª“NÉÆAP
J7Ófÿ˜kÕõÍáox;uîÝ=ó€†ÌÅ~!`D~ZR9Ėlc
+K´ö—¯M½QB×p
+¼‚ýÃà¸<ûö6/Ni üÿÌyuòRÿÀ^Q�T!Ó¥Ù«{5˜Ã°Ó„Dc.»¤á\½suY“	�¨J0ŠÎv6àVÎ3d]3ë\²•Wª”û¤››N„;FÆW†+€1“/Õ?³aª=_Šj[ÄPZ>p9ÅRý
éK‹Æ¦â³Ù¨<Ø]Ù4óXÞó²‰ÿÝmᨐÁbm?®-Ëé!;z±-ã×FÏÜrÀ8œ RÁ4*ă~˜Oï÷ó(4ôø@öÑ"X&Qðxî+°ªÄeÒ7ó”k͔NK&@‚÷ÙÂ^?²¡#X¤o]ÒT7K H(\ÝÊuZ®,c#0=dµ§Çډ”Ê#”€kÍfº´ªmj‰Ï©zRÌ,¢<§+‹ZD³¥¤“
+·Å1WÎú
+ Ê·j†Ì¥K/wCÅLː¢Ô­æÃ×6±ŽªÅá¶}kÉÓËЩJj]Õ셭ím{ÝM2ëôŒ‡èn8c©q„{½<P°X_ÜëfwÌY,ª–qÔUWÜRÈD
+ùaÑJ¯Y›cK)\̲ˆšùòg±üþDgêO¬ëzv�TO›¨84tXÿe+DËvô6
hb£ºxvðåóŸe‹–ઊh¶]sk†UË[C«vî{s²!
Ù-jÕV-ï¾Ñ5¥¨éÁu³h÷h€Hf¢œ^·ùŸbœ#:“-2a¯5–HçMõbs¦×³]¢Xk©öùÓc!Öj(»¾xùû~økGyޮ芵†E+笮íkàæIÇ­(.ì�`½¶µ0¼q•¨¼û8§kVž©ÙìL5©ráðkÓ¬.–µ5WC\25ZUd|†Çm¥ºM‚â&·šè„”­‚‘’ʸ2SšÑªäûNçÔC¸§Ù©žS“‰¯ÿN¶ÁgèÓ?/É×Þ;ïá—iœ'7¾É3FZÂë¨KœË¤XԝæìNƒ€ÂÐO¡ütð÷÷ý…GZ3/=²¸?ñ‹"Óde“ƒµmµîkÓ JS* ©»ùG1@…GQ§r8{ð­l¨É*»r}às¶ßò*t«riRÍð¢ÒŠ/žuh¼q3:0ÛbŒnxá®Gw§™ˆà{sÂn¹›þ?¤X­AÙM#\kzÆfÁùλ+#ÆP‹,¾SZ«ÇP»)Ã_Gë«=Åᣱ·™­âƒ*-–Ö j‹A‰­ÒíÄ[…(§ùìsɐILµ€A!«ÄTõ9—,jJ£^mÛ¹äÄÛÍ4ýlï_ùTø™yH‘þ‡ÖG—ˆGÎUEÃdõy7ÊWpQ<ÜéÃhõ”í°ÿ0¦=›µô8ÿ+zPk”•F½Ø»·Ègæ‚*‰£—Ф=m~v½Cy6çñ¢z§*kY1ë©
+Mˆ±mpnñsA‡¥Ø’˜©30—D¢AÕkMõàsß@#Ž9ö…
|æ‹rPÖàcjdXVãí©ÛË<æð‰WCޗ¹  —ðг{UFåà˜RýX/®Ü´Ò«;ÃÒ<*Ýoâڂ?/³¾™ÚTÓXêò¡JmÓXÓé2éߟðñDð±ûò,ø-qvë x÷	1¾:{}±ÉÀ‰¡æü¬ïž}¶ûæo¦?ù/5:ý\},ZùŠ[{YµçÝóJx{¿°1
+u8ÃögsRCݏc˜A­
Y@æ–Ð`ÄÕö÷‰–”L‡‹áûâiÂ"4Øá%ž™VvזŸƒ5»G¦®Æ/"Œ³-Í®ù^MÕýTÌüÄ^íq|õ”çÇ_ǯšY{á„.páÃV­ðl…ô´Ú°¢:s^¬19æç¢vü78z÷Ê>胃ҽú´0ƒ?ÁÂÚHH)Àž¯˜Ê´rAӇ "
¬Á§è¯ú¶A©z°rêž+RµÐÒݵC-dÝ4ÍÍÊwhL«zª„•U¨1ÙoYÇSþ–¡ch¦lv€äþ¹±=æ^7(@‰`WÛ�ĎUú2¥o·Rì	€ƒéoˆâXþbjd¿к¸Jfª¥>æðè2Z)»›xJ'ù	)>Ç̟`ð1ÂàWá$+n±”0=N\…Ž2%€¨º¿,N.ÙºWP¨¸pÖ}Ùmõ¹i¼»J½íZñ.R)ä×ZŀØà
+<§@¨`à'h5”ÿ�‚–‹¶ôæHF÷g§iR\‹KÔ4ýř(î_ìt>ò‰½Ùc¸ê)=ÍÿÑC¾>[Û_¿yñÅüçï®Ï_þðóoÿú槟.~¸öâˋïþu}§üìõõõ›«‹óUw,ïrþ_Ю}óθávóvÀÿFéÝ®íþ¼ûû?Òî\W~y—b×´·°~J‡g—[Õ?Ý­0{™âåã(o{\ãld®çKºdYmwä1Ìヺz܇u…oÑ ïÞû‰²ùº÷Ù(ÿ‡ûjɱäƁ'ðúú‹Zz3«¼˜#ðbP
xcÌõ'(~¤Tf¹«ÇîYÌ®::ÅOžÏ¬oï~�»‘ߏús¬ý9×X´8€na}�÷íÅ5üee'D¯œi®ÖNø"rÇ_cvìTPÀ6z–}ɯ‡yõ
˜
+ežg={èl?Ûo¹%1ÐvÿÔ,wxÒîÂipM}ÚXh>o;ÉØH#,…~ÕßÍùD}†· «4	, „Ð(#ʗ8l‹úuƒ§_-·Þn-Š	ˆ2Êç9Û!?R©úûŒÍ#ù‚“2øàB«4CèPkV}õ™m”+ô9°ƒzuy¤ó‘ Ghú­X€H€°zÃã\§F1–ZIêV$åo¢äa
‘X°QICh½Î¸RÉ7Ç5Lwp¼kXÍ$fn´°ºü¼¿UlT£¯ñ)<	]ÚGÖÊ´ÒæûÁÕ(
+P¨‘€X>ÍyXgb8—¹¥l+sC�,YxL<È)ÉïK‡€³ÌEàžKÑ$–"łÌFs)ˆo’ºŠå¡‚í.›‹=”%‰"¤¦Ä¾­a&@*Òt,<E»wޝâ@zU’°˜Ú9j+ÜF€Ìbó‘6¯a©A$mZÛ§(U	]Û»‡]9ç4?›6Mfƒ¡¦`ŠÓÚ_µLåÌrRíŽÙC9èc8Cf¹�œÚ²C¡b´Ž¥õs¼¤MdÇË|*Ùز÷oþõœ¬Lú‚`d·!3Ѓ’Zª]nm5jÁÅYDÛµ\9ꞙÞË0rùý1BtrIÛ6f\R£¥‘r£{“\i:�°BF.­+1ÀäÊÃ
À¶“KËT]Ýï*)x
lØðfri'³<–Vdr5«m ìäê}G»{†¥•mE‡©E[xÍÌ£èíó÷ª tQAñËÏ¿«JŸ‘BPRèY]lh_èfá]B(ˆsßRÞÇ/ÿúÉö°¯æÞåÉ:ÿóoÊfþÎæåɕÍúòYþç
+sâA ? MŸ³Á»<ÿ³g¾Çýß~ZGw�½ÐÃܺ¼éyZ~½ÂÐÞ­B~ŠY, –‚ÂfäíÙöôâOÒyMÍÆB»`"½Â—ËJ*å¹Ç?€ÍÈÛ³íídAž(Țǭ˪J.X´ÃBnœ¬ªê •òâîc	y…±éS®sG-«ʓ²XuüÕ3‰í[¶5N«^=Xðæ­[Ýãºå@ÀúÎ–K=“cð%`,plªq$÷>Îä`Uš:]ÏX¤¡ž)xäfÿvÅ»Œ.ìò¾Ã»¯ntê–MMC•Æ™šÖ\Û,#,ÒåHٞ[àŵ
ö(–Ñ-ÜåÀ%5ÿa*Æ¿eSí0º°ËûᄎÑ=ª[n©1æ~½z¶z=·zsm'ô/Boñ.Bo¹qB_ó¸}»¾Y]àŇwoÝê×-œœ'Üêe9^ÄƧvd¬PÚ!;r¡hŽ˜ú¶JûÝÒÍ®ìH•¼&©ähŠ
+÷)°6]
ÓÄ<[_OÍ|=û¼û~g8wƒÑºóšpâÉßÛ	³íܓtKë`ûûó“ïsƒèù/Sækbu§ù›?œ÷V
kâk‡Ã_ï)ŸÏÜዑ÷wþXžàè ö"ç,9äS¶xên
+ŠÊ×õt§ƒg2°Áç»gOÎ7EÖԙ‘	7>`C9áÂýÒu*à !/K
+Tϯï~2Ñó™y,ˆªr¡ä.0¥X`Ċå„o6îiþ&97q¶“…k-·“œL­¥±Ž2Q:áeûBÎû“ŸÌÙüá¼Z/ä„<²&ßYx£|1òþC[û‹ƒ­VŒ¨¢ÉÀôVõï0Ï0„xúÏ°y{¶ýýÓ
û+ÔÜOÿ6µ¯”<û¡©²~@±Ö2Y˵fhî]‹
+ßü$}øIÙh×s4TŠ¢Ä[¶·7Øy0ñ_4ܖsíå¯vŠdjg‹ƒ£U‚eWjš¬ì4Nt™æ~k)žð2ý©„Í›ã	ýûÕg§Ûð]„¼Á?¶ÝúÑn¹áè©ßR}j·;ªžšf¯­ð·žû6“Ë+P®¢qC!rí^CÏ
+ר\ž_Ç*íÕjÎ|1"´øvÇc7ôœFbsâÞW”)Y}”2’9hãŠl—Žó=ª˜ÅæÀéÆ÷°z¾‚:„ZúV`™6ñÕù¬Z‹X9žµlKfЦ7T-¿=?øv´ÀßA|:ˆÿŒßøzŒÆíðâû€ƒ	˜’£MÕôŒîù¸ÙeÆ+ŧÊC±Fã
+A^Í
+Å]ŸI¦–š€#w’í³ìÄô]¼–	ì4üIõÔ
+8—@ýýoºJšbß“¤`cJA}¨E{WTU.qº·¨üۛ]}¯öÍr¥Øõ½øª¦¸*·oÕMÊß¾?ZPË¥úשã=7Þ¯‰å瑘0A¼jA+‘7“úTFÚ½D!Ë	TÐÂݒæš:y9Y…’£¥~ 7»ú^]CCîCßͽQŒ6ºYVŽ°JצA»—nCqðP(êqòoOÌ·¸•ƒ²h¶P=غƒÎË0ê+èï÷×N«—q˜î"žŠð]î¬Î¢Æº
§N•b²D0Ns¯Hy0Ť|;„§ŒZyK!€Ž:ü"3»I9Í$Y|¤e!WÌIW\aåŒ$
+EÂê•ôˆÆÈbIÑb>'jߺ-ù�]â>$ïA Ãú5{y÷oq*MùP´o‹G¼Ïô¥õT[ÍR¥7Ïjö¦ÚB²‡º²>,g#xu®•Ò¬_
+!kcÒЃ,/+éöúÄX¾£ý••åÑÝ
ßv"-fMáÛ{ÂÇ4ÕoÒõÜ1¿ål“mø“îbªÕÆ?,eqv,·X“Gk‡˜mˆð÷„-’…5q%E³½&ŸBÅÄ*l퇏‡Ãѝ‹ ‰)~“:½û¶…Py5Áè*r´Õ¸÷¸BÉdöQ„­¼
+žÜxAœïð%Ñ6¯ó–¾lû°Po´¯3o;´èÚžÓ4¼q‹/—ÛcÆY<GQgŠù’ec?‘ÌÄH¾/Róû¤&ßccùW҆©�µF)’ Õ&RÒ#ôÌhÞd3áðÌ°ÃGhÒ™(‰dż™LfsÃ@Λü®˜Ž©júIV‹aÙPÅ"Hy[ùêÏð€nc”C’OËfáx̄C·Ür¬µézÅs1(™ÖkåËÈE\£¶˜ocɌØ|z6ó,ðRÂò,°¤ÔOƒ·Ð¾0yÅÅE«¬yVleíMˆÙW$9ܱÁݒ|$ú8ɝ6:[ÖÁ±Ð²o½#išÍMh‹w‡üž‘X{Gkz²3¨ÙÒÛW¾ÛV–ußí¥I»9Ž‰uxšª\O¿Ìáã]&ÿy 4Ÿ£6íÚżÐ4ÏuSíhEM>Îñ^ÁÞn¿®qÇnÇVO>˜Û .ß­¡Ú}L"'îæ¤}œnɱõv”;mø,Üà¶E…ÓÖtP_QÅ|m_ïwÓpæKÖTÏ°ôöK³Hvôîõû8:ÇqtÆ/?ÿþÁåÉäãñþ¬»¿Å/z'ª4Yè¼4ñ×qT~�«·GËrN'ùœ:Ž_þ=-£¾Zjê#þŽ¤KnðUò¦»æ š“{Á= 2¤RN©D‘lƒÐêÃã*0†°Fŗ„`p(UáÓ½7TûO¯ŒèZ|.`»úM+ÿó¯ÉwV8¯´Ž¡W’ÁÝ`ªrøØ$J,}Á#—¶*cZnnÔ…”hEóVsInÂdæJ°Åæ?ìWÛnGýý_8€Íô½7O¶¼¼í`å,öÍ (ʚ€"ŠLì¿ßÓ]U=R¦•õÚ¬^,úLOMUuÕ©SÜÈ0î5+µwͶYN¨¯ºŽ-=8/ۘR¯é1ŸªÖ#W•æ,}rÏÙä/x'ÃÚù6Ûb$
¦à§rði¯+—�Zó¶–Á윶àóÔØA»ó¥TSŒi¥ƒ/×;p¯ÏŸ1/:ßKT*jÙ|ŠÉË>™ÂòŽi[ó‘å+>íeÜ%Xž>¹A0¢õ”l\£ó#8έU…–êu]ZëJ«™r»h»¬b™4ÖEʒ2±5Q…H£m§qm"ÃÑÑ\©l²ÓyʌïdÏí ”O®¤½%’w<š@!‰ U++9²I€8G0d•¬9íÁ‚¶£»@Ù@(Ñ·°·Ô¡Ø°¬d0¯{€±R0ŠRâ<Q2¡gU=²?Pwb$­\åÚCÄT‰›V®ÄšX›š2ÐÞ³®B5±ÄD՛–5bjK¤–O`ŽQpÁÜ:(7”Šœ6…z`.tèaà‰0nDÙÔã×Òð,l5Á’a:«:^wÚ]ѯ!Úât-§a+mûÝNó]µ"Ê¢%]œ6Ñyً»¨¯$˜ÐðªŠ^ÔtŸÊè:3æfV©ý@Cb‘}u òî%C1ÍÛJk:Ù΢ µ’•,çò”é	-â©àóýÑÖð)ç2¤žØAeÀ'cNï¨öúôËk1ۓbû5Ø^õ5PNBÖq€žPߢûQ±´×?È¯âßSH¬à¿¿æ’	SVœAÏöÑÓ£³/“5?°ÿuÞ@n•Í㢛·EO@´ø=ZvÜÉ\[.äg’¯]œ&/4SžÆ(e´d,þ¤4áDP‰%­Fpu]qcBü¶‰º:m²4F*M`¬ãe
+x|³¥Ò±q&CÐð5ˆuÍ 8À²Ì,£®,:Ÿœ	&Ð¥iìdo�'<
ÓB)›ž‹ž×Ô3ácx:‘×€uÈä0„FN™«qCuÖô “TúõìÒ2É"=P2Aár…Á:tÁVa^å©,vï²êò{1W9s€+ãØ.:4.i‚•ÖfÇ®Q6ì‚Ƀ“2–åú6bPu×aù
+Ø·‡O÷šè3_ÚŸ	aš%&.»4"‹—h"Il—dØ5îÎrÃr…ҍRå²ÁY›rCy¶12—TÉ»
R¸�­¥³(‡¨>߆L{)BVÈc¤<'9
ïn:p;`6¹ìÆ�–µPðÇ�kc½|¬ÎáÂ@¢�gÞ[³>mo'¬¢rÍ†ZóÙè²´ŒÐ;Xù&tMèh<i]‰-]Ö=‹ëR*ÐY«ˆ09}ò;ƒP®’CÀAóœÇvJ€Pl­yœrC;G
+?ƒ¹»Ndõ	ÞÎzé—$@ø]’Ÿ«n~šKàÊ¡¡ä0‘›%íIÈZ´�•Hj&bÛRbtE7“hƒ°µ„Ѓc¢`E,[&Õ̚¢2 ùmõƒ³¹Y;±&"6žï%„Š@Õ¹‚:m‰'"H+Åʃk(-VDÕI؇H.ér-XœªËû*Rmµï‘‹ï£šsa¥U×ibÂZ#ˆL9þ”-:$f¢a0+ ª«€K!IzJúJ Ð=ÍÁ4ub.‹D¥íli'¼ÿYåDiš�%«ž˜‘@)V£õ­9ÛT¼I¶ú.J©:)…´.ZrBQy¬ŒÔ±6­(*—�hWëaÀ9ÎßRÁÈ`p$k‘çLëòlW¢…Ucs¶�Êè}Jk‹N7à*(Î@]úҙ�]4¡Ã™ô>`£ŒíÌöÈ-e€'*/=œ÷®\€seÒµ|@il€Ê×|_ÿåS(2S>˺"`sÑzPCX±¼–IÚùèMÑBŒy35Qq«ÐÒÞ墨¥fo+Ç S9bµ.÷Kz%ÝUÉ '¶*s'¸5³FÂÂeʦÙÒXvÉ!–ëâ*Îoyé-®–üŽè¸TpŠdX )Ù?(ß}0‰þv¸2LpÂâ®&\ÐÜGé5w8,˜–
8®\³Éé}”ærEà@&Bá*â)ª*=®E&üØ1“]9¬ö„…àðÛhd*ä"�¨Íؤh*ï:
+K¨Ô„<zÓÚRó$PEõ¶j,q9Q‘¨<%"Å5-Ž4·x 'XQ´ÓPNÊ8IiJT>Ï¢”¸Zk™¢3Qˆ¤ÁÍÕ_­¯Uäy.Ñö@m£á‹MßAÀlŒ³ÂüP<S9ÇHAÌã¬ç@Q$b–ŒÊ:RRuÍF9WR𢉌ܲy@SECÁF=ñ›º«ªM«ÊcÎlîiâ2œåtã¬Ül¬E=ÌeŒ®·>Ô,±²¥Œð©*äd`\U»â—,ˆ«²U‘êžBKw"04{å}ÞA�ËîÔî
+ È,à† Žºu@ü²å¾ÒÖDòԛ—Ë'û´ùIVùIÆwT|þsqäXûWYù¿Ù¯þUOü§ëä)2tøuÍe¢¬5˜Ë„§‹*UGâ`gM©31Àpïl*'jX&¶¡t*ÉL„-µ(‰.J:•™ÏG½sÅýýorŠÈ^<u%¤Î×y÷™1Õj,,9"ó:^‹¯Â>©åµa-Þ¶YêÎZ11+“ÅÐãúnEÓõ`ïÙ½VïðÀ“2¥³¨W6€u,&#	6CöœÝkõ(6°T!ˆô
QÕ¬‡Ó¦E“%ZVˆÎFÕmªrUä€A¹ÚªD ö¡À§G{OÓ•«ÛŽ‰å£Ó¾ØÕÝîù^—æh›+tüê4blß/”µ+wœêŠÔtR(Tìºn'‹ÕÒ»ô@ü™i~9úîéËðîïˋgëííÕÏÓÍf¾^&Ð&ðÝëÕòçu³Ü4Ë÷Ožülþ¾Yv½¾IOꊝýë§ÍfŽŽËÏÉߎŽÿýêôõêbŽŸ.3øýäølï'>\/–xö$ý³œ^Ï¿Ÿ<>Úÿô÷éb›דã—ËMÿáæãM~vüt½ž~~tþv»>ß.æËÙü+|úÇöùìªY\¬çËüüy3Û4«åt=ô,|Ò¯G›CÕó±sÕ±nη›ùm:†Åb'Žõüv»Ø|N$ãˆAüíGq>½¿XÏÛ"Ùƒ~µãfàv?¦åöúÍl3ý=þt@jÑtî‡r»i6³«·Íâp,ËÕY><ŽzŽ?þÔÑÇö:Y]߬n›Í(É«Yº†³Õv=›ÿ´žÞ\5³qÜE³–U³¼«òGH\ÙÙ¾ÿ«›ùzºY­w_×W¡õ÷@+Ü» söwãHÁKø«xþaèùÍÅæ.š-Þ×ÕXügwû1\͛÷WÕËx‚<vq(‚§/ß=]Ü\MßÕãˆ#yüxϒð˲Ùñ«ó_ç³Í³ÕvyCÏVwµÐWŽ©Á'	îøùüròãÃÂôŦËõrñzÕÜ>¬LãZ™FB<_hc2ãˆæaczؘþ—Súaczؘ¾u
+6¦oåÿÃƔ6¦‘Œú‡i„Ó«ÕúæjµX½?Ħ£Ö¹ÎÇQ»Šc=½h¶¼þá.]òµw%v÷Ïl|#¹ƒýëÞç*§‹f1½S‚Cõt?öÉUéßcú«ÒXòþÿLC#ÙÞhh4Wqozsyy;?Th#¥ ±ä|—‚>¯{ëqø¿¿}?£äGâÿî¾uqh¦>z2’]1yz¯~}»]Ÿoóåì.Æü¦=K>úËõt¶™.^¯šÛ‘°~±x?öKùÿYú‹�ÚK?çÓÛù‹õü·-Jý`7Wcs¯û!-·×oPù¿ÏŠS;Žhº÷C¹Ý4›ÙÕÛfq8–åê,GH=Çï=ðFRe÷yϛۛÅt6¿ž/7¯¦7ÿa¿ìvÓ‚(ü}n*q“’VêU�U*‰Ò^UŠ–õ‚·ZvéÚN O_ÛüÛ1ú”)q"ƒ¿³Ìœ9ƒ89ހߞcð—Ä=]VÜx埠:÷.ÈéÃê¼ã3­…%xº{nWr…!¤ˆ•5s”u‡!«ˆ›|œ)2â‚ÔڒÕiTtŒ2¶Ïâ›fˆcb—c²þ8Vª<ê.0øKF=,@ø‹Ã" 3w£¶zÕ
+—ÍÌ%†Î•*'§ê±($ÓmQÃå5¬jóáLËØd(#:ˆAŽ¤RTyŒ¬Ëè÷üÕ/x³ßíú¦›”x»˜ ôºâQ²äq’rø¹ºµfBIYt¨YüÐPð-ø4‹î‘6Qo•9ëžáSÔ,}åx?¾¦$(©+ºgÏ̹þæ<šDŠvк6ħ6™sj<O†ò‘ÔbÅT1Ž"g
]Èw!³dÀcê‰ÍAšeœU2c:h7@4,a‰üãvØ4P’nÕMdÜTÞ4@ø‹›Æ¹
+-°d‘–‰ÛÑ(Tµ$ÐïÐç_µ…9HõTmaþb{sŠýä{BêÔ¯÷‘FJèÒ<uО]|Âö£YÆC¦nŒ@2áúÜ¦ü«ÚÏÿËö3d¸¶âO—:Ù͍O
8‘ÃÎjÒÑä6.ýGQ¾ŸsECÎ&q>%ɐû÷RÑb´¤7cHʀ;<žYŒ<‡±Ñ•ÁT1.&B‡}6EœoÀqÏ1øKŸ.+n¼òOP{äô‹quÞñ™ÖB
„<4–Rr…!¤ˆ•5s”u‡!«ˆ›|œ)2䂬KV§QÑ1ÊØ>‹oš!Ž‰]VŒÉ6úãX.P̪꨻Àà/uô°�á/‹€Ì܍ÚêµüÕ,»ÄйRåäT=dº­"j¸ &Z”2«Úæ-þÊmÂ_ló ôºâQ²äý”
+µ(‹ìÔÉ}aÇÔT~á©ÉŸGj(Å[éÛ>Þs¾ŸûAΝͱÿï3vü„Íã›S§wrÑøˆq€óü¬£öÌúI}–G’^è“ó¹‰rôKܬ_ȱOF½&Lý¬x]ÃÞÕ·‡¶•øþë¬y9Ž|¶eNxðø7’*ö‡–!¹ê™áoÁö‰´ßÔ6eÝ´gM[ýò´+Fµ¯N?{×é›òA-ýçþÓ¡±Sß(3¦¬t\Ld¹èY6õ%Ǩ‰ÖLæɈ,ñsülV‚™
+ËBChݓŠ… †óÌüIÆن»ÉQ¤{âÈW»pàw“z7©Ê&u‰H“ú7�QX
endstream
endobj
18 1 obj
12462 
endobj
19 1 obj
<< /Filter [ /FlateDecode ] /Length 20 1 R >> 
stream
+H‰ì—ïnÛ6ş ïà/R il·i‡ê“7F¦)ê®Ø·€–(‹+Ej™Ä}úQ²c‹²åk9™|]öüQ¬ó#ï¹÷ܗ­W/ÎzJ‘Iëïuòs!zêGŒŠŠ—ÙïûÌ×L
+¢J­MÓì1û™PE´T³o«ž{µÙ›Îþ¾þüÅ>b¿<aÁËÖÙÐ~Œ/þ4û 1Íþô¤÷é¶Ï8Ñ$û€Ûwßnòç»­³OB»¿Ô“$ÿÝóH&{íQœõiØò^œ
®×T•¸Ãü‡�;€ÚÙÕy)½–*‰$—ãI¯®_*†¡4ʧE’ˆùHJaú|C‘€™ByƒCþ£XaaøõTÙïp€ì¸G}T2Í’k=6¨cƒzbƒB2j
êy’kÝ×5 &MÜ4ñòÚµê OïXž–¡ªx‹£\É;1Ç—fz³TÜ"9–£Cvï÷8J›CËÑ!ǘ».æÒÔp
¡Œª/¡é¤;Óûª¦;ñL
yHqÄ5öM¦ª8¤–FTE[:Y槟5UEƒO"‚ƒg[_ËuÕ´sg“=ñs&´$ýa_¤?Ôl@6¥I¨®vÒ6s°/¹D҄¶5-"„UÓxÂ)Df5tšs|qâÿôZÓɄøLO>´_#±Ç§–C.eœÈ”ièNiLåucZt÷(—îÒȄ*¢++hŽTYˆ
#,ôÖíÃiDy‰È.AÍNÕgahRú™#mÅ7ЯÊïO5:?Êf	Ö�ϤWÙwçØr«aºd®Çx×ƁP쒐_,6:‚8:oÎq€Ìõ~üæ÷ÈN	‡°íø¦m	Ķ)ĊœnTH|:ô	בxʕìâÌNûRŠ|¢€}ђêUnÙ芐�9Š]>§ëö‹9Ï}T½?5ÌT^+a
êNÔ1b=-bá(…cÂ:&¬ß"a¥³¶tc8kuÊúÍBÊã©|H¤ ¤$=cY÷j®=K_˲‰%´a4NdZͲ۴�öftí7oÑLt!’¡4ʧ=žDI®ÙŐ	UDÃ.¯,À†zÉÜÓJ(’DÌÇqÛڛ3ý•°ÊY¹/ÞXšÉÜ{‚¯‰b:Š©ÆRVEy~¾…HdÆLhIzUìÖ3¡%éoöåÔß,I-ŒEz÷°f®pàc]Ø>Ž2Di‹Q†Eú£ËÞb”a‘^w”]S5nbŒ­xköí~P†)ÕÜ(EƒO"‚ãö§£´îíïï=àŠ�œþSßQ¾¿ïF§ÂGyÓOX…¡"¾&ü‹diÕ³
_ãük•âPåSt½ ~¬K
+E°‘”^)ú¯±B'Òëö9–’jI˜øÆZá.{ÈH"^Q±Ë’j¦ýè;ã0ŒÃüaHŽðZ£ôRr©®‰}èa_{q¼Ný^talÍkÛ&<°ïO}‘`¬îÁ¹¸YµÚ³V}5ÿ	ÐG¤ZΓ¦ŒˆlÀhý
+/øV²ÕÖIuЧwŒdŸ1½ÅâJ®e›0L)twH­¯¢¶õÆôðñ¬vH�¦úS$¡>XJò”�ON‘˜:SZ3åƉL™†²$R7#ËUÛZ9»…ÌÈYÜÅA²ÚÄLt÷µ+åÒ]™PE´„2^u6Œ°Ð{`qŸ=žÃèUVBáô:¶óÉä~B¤Íç  BWD¤!mÂ)®‚+#üoý9ý„õ% ÉËžb!“÷#ӑB$ÝV	GQs­ZÎ*ip¬¤]WÒë÷­v	ɓjéâXK;¯¥Î>¶¥ã·.þmSÆSHH1°njJ™†œˆx¯ÀuO©§¡4ʧxXV/LTí=s˜)ˆuz1K®Ú‘	UDKhQ¨.ÆzkYüšªqö^ñÖìÛým,Øì8m-Ï;¯7kNùeö8ÇqºÚg1Žá´ÓþÇLʽìa´?”µß³@GþÎ9ý3¹.CDÙ8}„âQoi´AïÓí§˜i’½åB²ªµ§éΔIBÆ5U	¦ÁÍLŽþ¡¾¾Fö¡Ye¥†™‚µ­î¬OÖ÷âløcp•ÿQyç?l8Áb‚s­°çQ5ÉæE¡h,ïÌý©^·¾s	`iwZ¯ÛnuÎíÛ-û¯g¿¶ÿ÷ì/Z8àA\¼ùc_r”õ”ÓúþVy
•´»`׍N	H®Õ•ïî_K0ԟ¤	g‰}šK5æû&6nR'Bba)j.ÑÓ¬²e[‰g.úUy+ÑDqŠð{2Ab–¹d—dDÇð²‰Åð3±å»H(Ñ}¸o1Аټ‚¤¸
+MÑ	t@Lš2".8ȼ“ø×ÓPåÓO"‚ã*VUUj8hðQõ4oï\oÝ}	ÁòŽ”ê OïX¾ËAïq@¸’kÙúRƉL«»rO#*¤-Íì?^À©z‡©Ew³;P$‰˜ƒ%Wí‚È„*¢åƒÂBï!Ÿ-žÃà(Ot8ªµµ¿‰b:Š©ÆÒªŠ>/òü|.J8�2¡%éUõŽNzgIúH:/gBKÒAc‘Þ­9Ó®©71ÏV¼5ûvÿ')’‹gð–òÔwlø	õÖÖÞ§Û¯ìò[,縴¼†ŒkªþL§ŒýC}}!ìCò“C°
+îÑÎÛ­s$“¥ ymşõiØò^œ
®ò?)·¡ü‡
÷>"XLpnö<8TŠÆò®J}óuÀËõœKج˜½n»Õm{ˆ
+ûQ¼‹4ìK.=ä熉JÚ]°À€E§$×êÊ÷	÷¯ás™ ¤Š´aŒ…æRù¾‰
‡Ӊ‰ý‹šK4AÀ4«lS…f–pâcÁ™‹vaM5Qb!üžL˜e.Ù%Ñ1­±~&¶|	%º÷-&2¸WAx­íp@Lš2".8ȌtUJ£|ÚãIDp\ŪªJ

>ª¾‚æíë}UsÕÃC°¼ä¥:èÓ;F²¿‡8Þã€p%ײuŸ…¡Iég6Ž´Å8®@ó£9˜hB9—÷ÞXQ*<ëLêٙÅÆÒ»c’Sí)xR1FBú»Ÿ•û©/¹D҉ž¼ #ÉKÇé¸ ¤ã‚t`RŸÙ›:OR
åö
›„ÚwmQ\êY¿XltÄ?‘€Ìõõô?켈­-—Ý`º à€ØvßE±bå5*´Ã}h#Îq@¸’KayzڗRäì8ˆ–T¯rËFW„ÈQìÂl´•TPeåµ"Â0¡¾MáêóìCˆ	ÎÜ,†×–„“q¯ ±¬\T.ƒ©^÷~s	U‘¼wÙXzcE©ð¦•íÙ)M½;&9՞¢'c$¤T¥öøؗœk=òFno:“¹�¥o-s$ËW0]TŠòmÇõ¯í×ð½JÜÇBs©Ð|ßĶg‚mëDHÄ2EÍ%š `šU6±B«K¸M7Hp梗‰&
+ŒW„ß“	³Ì%»$#:†W©6†™Øò]$”è>Ü·ìø¡!¬ÒOßÈ\x­(ÕgyJΓÆ@ï„|ôo„”[
ÙCïÚ8
+‚K-÷‹ŽÀyþ'¹^Àõ+¼KC‘¤U
.[&!‚t¶`Ý$Îz”í¤F…v¼mè£@牫¹Ä3;ö‰
a¼&4LKºWs]J‘OIYÖírm´ÂhÕ,k«,»V`¸”q"Óêܳ۴�öftí7oÑLt!’¡4ʧ=žDI®ÙŐ	UDï,À†zÉÜÓJ(’DÌÇqÛڛ3ý•°ÊQùûeהF…á_àð²7A™ÎÔ+ê8S?¦«Þ:!›•Øl²æCÑ_ße±H‚á�Úí¡Ö;œeyÞä¼ï9gS¼ò,s&VN›ãk¢¹æÌb)«YÏêù¹)A2ZAô8"AoÍ¡ïnÊ©ïΡƒƂÞþX½WxkCbݵûºiû/CMkô2,èkô2$^^§—aA_µ—0}SG{åWÇ7»ƒ"¹ôI]xéoý%ßàc
+c÷øúœ˜¸Ž¹«îsLCßg\X¦/%·£·ŒÚžr2-ê©Mž‚×Äý` ´ÎÎvIW™a^XñÍ>˶÷·šÉÕÑaõ•0‚ª֞{Nœ`’Ö¹Dòœà\XÊ«Pj–«û}ý%(B+M:­ˆ‹Ã5»se<âÐð9¡UŸ;8”L`}VÁø_pàQ}øԁkW'–à5ÃW¨>=%‚žÀs^9QIFbBk–ñ˜œR—;Çè'©$’°šeÔ¤)·<ª3Ñ[íWu˙Bûb43–hi!â<"1Ë9TR0bû°é¹LYÆ˹ÉÕ̀¿Ç.âåw»ø82M¨%âTqƒä@¦o\iµ¤¨vÊÀcN€£Hv¹ß´¾†eF/|3M@íK’.?++ÿ^ãZHv¸Yb_‹±ÜÒá°©’êa’<ðÀòé¦XfL
+D·¿Í¨¼P&ށþêZ¹DÔb9÷¹¨å2†6…O”Ó”uE1$XT´Cª`šXµÄ(ƒCÂï{O0pt¯K,¿sHƗIx†çÂ2}YŽœ`:«Á-£¶§œLˇzj„C“§`á7û,ÛÞßj&WG‡Õ—‚¼©†Üó÷ˆ8c8‘=.HCan­7èâW€bÔ56í³{NÆìáâ#¯4Šœe™aН!µžJZת:ý¡„Â)¸ñ!ñA:·ä¥±Š}´¢q“‚Q'ˆþÎo†¶¤¯½¥ž+.mõëÓ,ÙFk§üÃqùseVm£ƒ~Â?ðm<Gÿôv–иL™>g.öŠ®e죈­„Sâ9=T	¥¿>¹E²F>ãšœÎe	%°´r 繇}J2	V]IhÌs¿®ë@IcɺpÉzÁ^i"9Py¡LÜ@È·	T‘öç2—mHE¢œ¦¬+Š!Á¡¤böe¨‚ibU¬OµDo¡„_�\›¨P
endstream
endobj
20 1 obj
3859 
endobj
21 1 obj
<< /Filter [ /FlateDecode ] /Length 22 1 R >> 
stream
+H‰ì—]PÛØÇc{HAhhšfVdÆ|ÌÄB’?$çk8°H6N€a„-l‘\Yðš¦3
iÙ6CfHø(IØ@薤!íl;Û6íLßò°Û}m·/™>´ۙ¦Ýí•d@6ؒq._Œut|îïÏý:ÒH˜­A µu¢ÈŒ G‘chõð`ˆü¬ÍäB~‘å•÷Î'qψ	NŒ$‰\oTb#²x!„Y‘‘1ö˜Ì„ôž;Û
+^xÕ}lƒ0"œhj;€+Xû­ügЍß^cBQå5Ö6óRüK)#Z<Ž×¡ªî¢¢m™pó%q^…$³™*œê¯‘!²‘hHғâ¤óÇ'ó˱Šæ#		!õdD¬¯-
+‰
+…7^ÂÚ:I­ƒ9)8ÈJ°L+íúÖêpè)Áá ƒ& ÛX‡n×CO¦-×èöuèºKt2ͳì+rqŽmЫü¸=OP¡¯/ÂJõ¡h²ñŸéf}ûŽ?\ǾÑßl#hGqDom$n…c�G·ÛáíÃ>œÈ>Äù¥ îiစ?†¯!Èr îå+¼	o¿ž‚ºæž‹ß(ð¾.’py¢õ\„e¢`{ 9Ïe
)÷–ZۇCj;ÞojäB+&žµŠ1ç|D8†OqFB~ÆtQÑÇօÂA’©À'Nð•z3µ^h®)+¼ñ*"’ßÃ^ã9†ž–d×ð‰GNëæÕ¦\·ç’€g&eºÖ.î"ë‡hmo¼2üºw8øþu78¿îôáLJ§œŸ§Û¼`ƒuÝ(Ýþ¯ò ^jšD&ä|Û&›íÃ`„ÍÔpÕë€K<'EtWio?ë“ê…(ïNõB²=<ǚâ䋡|1”/†-.8„ä‹¡mº`½”eZÑpàgRÁ‚ž/†òÅP¾‚:o ÒÝym„Ó
+Ç�®Û{u·^x؇ه8¿Ôã'8$ü1Üx
A–u¯"„+¼ñ*8¿ž‚ºæž‹ß(ð¾.’põp¨‘¹vm.$±â%ž“"ºçTo?ë“ê…(ïNõB²¥”cMq
+Rn–µ¶=†Ôv¼ßÔ¨ü(ñ&¡s~}¹{£!–÷AynªRÏIOAŽ§ÄjÄ´k Y	6®zz™Û(²ß‚ÁÖ=†qwÂ!&;^lóIÌ5Vw‚¤,ÒÇK‰Hœä^äBúZx¡Cq†CRxZ—þa0,D8	ÊÍKÿÒςWïúñôÉ®
	5TE#™(C³"#	zkòdåXÂo6J¯´
+'Xn½é—M°gX4á°ðo¦h‚FÄfŠ¦Õ«d1ùš)_3mAÍÔ'2àj¸H¾j‚«jrÀ¡%KE$jòES¾hÊMÉT䋦|є/šòEÓ¦‹&'bòE(š¬uÍÞsš÷¯O²É)[zZþ<P$Q6›j®g¯}´†c1”W#ƒ½B$Üçë"	*‚†Á9†ö1 ß(Š ¢
1<€Cp´üy‡¨ò!к0xnCpÌM.Üp]$…âê³Ó¸%P/|ˆ˜Õ;ZÀ—~`Bè9´³GýrØvÄFNfÁPš ìE;It0ÁL`”ÛŽÊ6Ã݄]¶áAQ”lt¯´Kck�?'q'F¤Sc>«˜)̍Ód\wc.œrh»ÒÚbTjØ3I:0’ éXØ5³˜q7ªí‹$)Œ&]$ªåZ5ÊqWE¬ZÏ"Z½šk£éKkŒq5l<¶g‘>G\Íc�$Ç(§’(BN•2}ÀcjfR;‘g\uìӄtÆrK(z:'†ã$ڍ:¨Ó.'=˜ÊK6«žêµ7‚R~á�±Z•ž=ŒÄE]n·ñ6ïùÚ@;¥iFü³ÛN%io g©r€a`«1Œ3lFž!Ï°}¶À8ƖÁÈ@j†Ü�äŒ0äŒÌ²‹‘gȸ÷l1ärÜÝ&¶u‹�Œcl)€AŒ0¤ÆÐýá›eÈú(e6ÙÅÈlr€‘.s	…a}ð¬�d†qÊÀœßj€Õ^ò§²—ŽŒ¶ƒݟ	nœ6]ù©=3ÌtzÙºœ0ØÞ8@16ŒÍl#[�cd ]Œ­èÝ L¶âïÐ4h;5“¥�A
+,F¼Í¥Vš¶–˜õ]ß®hÞ¼l8\dÑ(¨¸ôã_þùo~rµºH'²©øø­—¯¾üò՟g®T¤f6—ž™ÿâß_}õŸ|úÃãÅ:¾eç—^ýŒáë/Ù—"-_Àð·×_b�Ú~ôÙ?_ÿˈ60fsùû_?10f;ÌE˜øɧ‚G?;v¼uàò£_DìerF¢mf®û]†æNiËÝŁªB#¾¦â£ÏFOèŒWÌ·°ªÿñ½3eo™Õ–rÚ[\ºÿ ³r™ÒöïJ!ˆ»ÿüFW[«ÜνçüV
+™ Í÷_þ~afj´{E)|KN~ðò³_>Ð÷+sïþùÇßëlÓc0ì{§ÊÖùàawÕ~m–¢Šº«
3³—îL=f–¢jï&o´_|ܯ“9KQM×øÓCž–[ÏFO×ZbtsQu×øÒ÷n…màg?õZcِ[iqü´3öŽ/Ý鶕îùö¥¹åëê@¨i>†¾­u¶”֏>è®A,–Ò–©Ëê�ONNMMMßûþEíŠ2VælˆL5jhrvZõš¾?÷èɳ›õ¥MXÏØó1O°˜v šWú?ï
ŠÂŸÏ*WÆT`
|´›ãæ]Åûbª¾yÐÞÅ_<æY
¦ø؋¹örõÙdZ,K	=r›;Ã/hƒÙ5ûbìdIbBM}ý£[míh›ËZg—B듥.“v77¯6Å|§çºí\—̝‡ºN¯j[;½wáNSòåâ,Þ=s°:°ðxª´–[¾ëxÍ%Šýež±÷]­EL
+×â̅òčÉR~az±¿²pwe`éO¿zxýݽfeùέ§„˜!À¸¹¼tWt"¦Ø Ý>]ØúVÐLhë ¿: ¯(°óŽþö‰24®ˆm`a¾Ï
+æyÏwj—«+
+ì¼W&žß•çÙjÞ-HM÷ÄÓQuژwíÞe1«ïä©~Gž¿e…²Éd¶–Ùºï,{Ǧ£FŠ²„–*/)ÜYXR^å˜XïÚpƒ—ï<r;Ô~²êPՉýcOÇ»j6Þàeç‰ßýqùñP÷ÀèÌâ³ùQou²³�,ú+£.ÿáÅÒÜâ³Å™Ñ¾úŠäÇØLŽ·‡Æfg§ïö_8‘új`.�šN´´¶¶¯,/ѹrÈcU\*o	…+£™Òݔzó·ZOó~#1ˆ÷=ÄZ×ììÏíLDbE¤‰‚Ž¶ƒ?õC(o"UMÞ„Äp‚v Cˆ&Üàr(M.ÌMá:(›i
+s¹.881·r¢!ÙL‘e§iÕìt»]ªÙEavw3íÄ$᎙éT¼iFQn;0w Z<m‰‚c$MÛU.Èõ?Þ«m7Žãˆ~Áþü gÕ÷‹ýDQ/rÖp`E°�à (’±hˆ¤ÀPø÷9u鞞á2A°A�¯¹:Ó[S]—sªŠa¿ò¶|»‚ã6|g£q•@¿­¶0V·9’K
»äÛÚm­%.NV¿-Îù¥ÉÔ×Ëï;ìà¬O~Zuf,iùþ^n®Žgû¥«Ïp¹ùˆ˜!xI0¶çÏåL©&JŸ¥<•m©!²Ÿp)8G`ØÆèò„Ç¡â›\t†›ýÿÊe€åŒLYßbïj@¹'œ)É.Ïæˆ2IuatÀÆ÷Ïp5¸J­z6”ÄÕg·ÅHð�æ*'ݶX=C‘¿:}x|ssùxswñð4}ÈL¯ÞÞ=Nǧo­™.ïo¿Ü½»šþùéâËõt{u}2}‡S?à³h8æj!†>F‰q.HeLÕý~S§ã“éï{¿Å煶ãûìk=~°¯ùäÁžö;:§ØpR<~æÿ¯ÚPkDqiO+®ü×Í(Q8¤ÅÂA
Ù"~@Kär@{c¶¯[SðƒšSLҞrëCT
+ò •B<¬IÎ{›Êö4ª¸º§UŁ÷£ã÷ww·×WS®Ú®”BÖÊ«MÚÓÍGäéۏ÷Ÿõ߯¯ÿ¸¹Säø”üþ|}B„Ï‡o,Í_Ýëz|±g3ýˆ/ú6…é§é·ßÍtE&~Q^L%EM›o²8Àek|µö´õÑ+˜Jå:ÃÏ,xd�…o÷ž­"²¾–%ˆ²Á¥NØ3\êpaµXp–4øìAϘeÑ.æÞ)ù‚W&PpÞúÕËàìØ—˜­ם=X„fïÙÁêðÔä¬=H¨¾W ;J¶+\{0Ÿ¬Æ­õ)¯À€ËÆúÌ¿Þ»•ԕ®¬<P“3TÂ»UÕÌ&†ª™_6€£c<_b°:_wð`Íþ³³Õ9àÏ;çró6Œ®PøÑ@Ä0Ëíí3ØRøôE‚Dh,¾†<ÓЅœx×æíšËÊJ+…ºzÙ²c­}Vðn'ˆ›ÈÊð2ÄÇ
+sŽ)x¶Y^CáÝfyåÁÄœáeÏy¶?¾;¤CMFÔY%—ª7ÂsÍ$¼n£
څ*ÝÔ¥&Æl÷¤µ3ÜA²Kˆ|ó˗-@v¬~ïV0ю±Óòe•RÐ$º9¦àÙfy
…w›å•gCpæ—=äÙþøRày€ñ°†ÐÜDpä¿`üAl+ˆÿ„LOA¥Ò+˜<|1<Aù-5¼ì Y
+CF(©hÌ-¦²BcìuÑ­0Ìm1Zñ“`G㌳frÐ|ÑÈ$ŸA„“ÚCPrdáOOw18€Î`22z} ¦ú"¨¡º“ã(nùº1>£3´Žjoˆ�crß)­eùò`2×d¤hež
+Ñw’×y]ÁN±ÕÔnk!:K<eÑd9¾Œ8"78&v‚ÊE»Æn	WNe[M\`	¼ªŒqÄÖQœÏː'"霗ÉI´àФÙ)�>ÛÒ¾[Áiô+c¥”í/Èsщ@rœó±ÏíˆLa²r£7MÒH!&Þ¨1EŠº­.zKë[‹³Žß’E’ëú–¡àe#øZýò,jÉsѐ^šöYאmÁõˆ¨¬ÝäÚcaRA×G¦N͹H®åä&\'&»ð·ƒâ/Ê|J°jº¥QÌû0:p¶×-¢Ùs•OhŸ4œ…?X~ˆA,*GôÖÈÆ)1Býs–ð­¸Ð÷%,D6&*	ø%j^£Ôo‰Õ·±z!¼gÈÞ³¸«ôV{å‚­]±*5½Î$JDh¹
+ºYĜ\·L8¯„´YÓÒö&ð҅UÁÌ+ڙb7A|“D‘‰l×`àå.Ç×´ßD¥¤j“ʇõ¡Ì˜š%>I.͸Z¡¸¥šœï£í=Ä/ÜÝ¥³¾óéÐ.±{ö`¾2Š‡uùëP¢þ¬+uwêüW	Œ÷C:›	”(u(€Ý³¨k¸\ðBž´Æº¢"VªÐ"lÛn U3I·&+ÒEcÀ�:4^ûÄE…‚Bb^[¨0C$
)mLt¬~`ãt$p÷8
T…~˜ëê4¼7|9xKmŒ³ê&2AùêôáñÍÍåãÍýÝÅÃÓô= ã×'Ó«w7wLÇï>]|¹~ýùúîêoŸÞ¾9™¾£#}ñÈߟ¾\Ë¡ðÁ<T—±ýe °¸)–³šlkÿmé€Øï4I&;ß`xà²4SQA»ÍI7Ö ‚ÛÁË^Ÿ¿\Îڒdד,R[xW²‡N@CÑ5¨Ê“Öò0a!¹FDp�Qà³Òœÿö�ËK9¡Cµ®dèà|
ÃR<FebP!°àjQÌBÔCÌÛ^öP†*bœ»BñMÒ6{³ñï
+èôZ@ïñ©ÓñÉôáW™Lñ?|>|Û|íCêôóæ?ÉÊ  OøǏøò' oS˜~š~ûÝLWdô—Íâs¨ô¼ <ÊÎÁ¢ó‚ä"8ûåæ�±yAjšƒeæ‘9Tb˜ƒåå`qùHK™ÔEßSš›ž°ÔèČٸº •…kSSá9)jÀÑùVé¥èÙl]UÐGÙõ°É™’zûøäŠÂÖ¶V‰>ÐXi[°®ƒÙ60Øn ’”ð6êä÷XÃ"8@ʵÂr«¶,‘ÈF�è/5œ’ÔÀêªÖ°¯¬t݅Rç%Sm‡ûYvðu|èlðI«½ˆ$Ãۜx'¤j·.j­¸Äš…Z)6D-6Òªœ¤®¼¨@~—pª²½*6£+]6V7=T6ø&6ØõÅ%í,‚QûÅF¯ öƪý‚ˆµ²uQ“.´º”•P´c±4¹ÚY
ÐÂ$»&©q)I|mI¶ï¯®
ÁÖڙ$ºêœúªëuPAÃw£ÅuиþûšŒø”q\j2’|lüBŠZF®èêF°%W‚/JÇÖRmÁVG[^2i‘-)wŠF!øë»"\mù…f«n˜±öóȱ&žÙ¦.%íês¥*hÇFj˜–A0¹Ê˜¶Qf
+¼¦RK×چ:“ªjŒ5f-d·Á^bÎ
+"â
\RÉoMDÐúy°5^t"râ~¥@ÔÎC&Ä—¬êK¬:	°R)¬Ùhø	Ž”USj<Æ2b+
ÈR”:ê+Ñڝ†LöÊC%yn·ªc/׊!*XŒTUBRc(•Ï\€jJxÈ*HÉv
tUçòPý0ÈT£žòÁkŸ`’õ´
LC	ö:³šä‡bÅPR4HIïòtÑè‡ù­Oӈp.`	&ážÔ©ƒô»QOð&74·]À9Ê�¢¡¬R¡
@ô»ýž–ÒF͍y²2·¥2O*^½7<i´I±1‘Â'6ð2ó#"¶Ï0ÙF¥Þ_:sX	=`SC;«ôMbÕ©''ÛÀ|7À£/'9U‰¸'~•U‰’Lå tB1±s†/­¨®@[š•‚LՆÆ=ÞT)Þ`ª›ÉGúœáìÑXîó±]I–ì¨ÝÊÛ@’bÜKùã·ÿi;à(ÒªrR–æ¡’ààŽ{¿:Úr.2Eğ·À6aW­Õœ;V^í‡3 èûpÜã6ÎGŸ4ñ!o&)tÇé–g›H˜Æ§Å=|†	+š£@wF$®Y&ð/züŠž M£G"=;ÿa' ¬þ%‘ø¡!W«àf
+çÙÂ%®&‡¬yzª'SÞ/èH»\`*&uÈÁŠïååÅËÇJã©Š0ÿ4­aöÆ^ÀÈXeû–MÅê+^F­ÝlîªÚE�°G­]„l»½æ6Ü·¨®ÓÚí¹•¦,MVq55±‰–”[Ž*ŠÈ–TûnL3òÃ8L¢ÕíܨQ¢f¬*ð‡"Vx�šÕê!Ãa@£2L°†ãEæzÚäÆÁ#Ð0>;Æï“۝³œM¨S…¤Gi�¡ñ•»eX	&”M$×äHPúÇ+K?n=“å±ÊËýŽË)‰<µNqÜlÜ·è!0ܔ•Á¼‰/õhþ¨*žóð³î8ÐNy'ÀeUãýmÝýlÓ¨›5>ïµ<­½O™¯LH:ÛÑLoI>z1ôF08<k¶ÑÓ¶—ˆ»´¦öÜôU’NûÙ l’
+"èÚ"¼éjÑÙØv•CЈժ³&Óßù@€é ¼ûh…µÈMå÷7€²MKƪ$]Öh¶ÓÚåÝ â–yÒÓw›È«Üzœ~Ö³µÃX#ÕýR™óóNÃ뗢hÈaÜÜÌYK†X‘â—Õ’QÏF…ר
+w¥]•{UB<7!†Zk~;W[Þe"Â|­$ƒÀÊ`Â>qh‰2TßiÐl Ñå·êh_Àü•ƒ¤‚v"ò1HˆÔ¯3®ÂŽÔ°:SAV¬Ä˜xÍ QA'eï¨åtF›ºUŸzvç¢ëšAyïEÁu?¤§ô@˜VgþÊ{i-„P¦šb€d%œ›LÎ1§Š{ÿ’ó.n�AAþx_Ê¥µ8h_‘ÿô-0ÑúuÝpÎgOŽð(ŒËºŒOõ­beSÀ£	òIdÇÑ­Ò츑²êÞlÊG¡=”ò¾m‚°QÎá74ü–´8?Œ-»4WêÒÈQ[V⤃ëJŸCy�#Í¡ïQ}l˜åÍ¡t‡!›¢];-ΡѲƒÐëY¨ÿ7IXÚýϯùB‚ÿxÂkÁXŠoî>ÌÅ¿dÓ‡ªÓðœH2t,ÚÖQh.âøí!íL¶¤—,±m%`êE–oYPctf/pFvÆ/dWfø„S÷bºÝýÝÀ	ÕP6'¡¤@ûø+)§v•wç…B^ÌkVÃƤšé$Ðjç‰ÉÁg'‰XÀ/SÇôɏ5ÄPg3$.öšXv»è8)'ºK¬»€†¶'ËFqhtäѵ³£23BÞ£’8d÷Nð ‡ìÇ/œÆ㐤kÆ|ü“Cû4…\è„ÆzV
+=ìe걎3‡$…ŽQ›ÖŸí#B=*„û-ŒÆëcϺ•9„¦;¯J®~ÊP”·}Ôx(‰UuÖX„í0j1Æ„rÒ×Ôsî^éyà`µ5àðT	õ‘‚|+qidÕŒ$Û%‡	Q•â^§»!÷5€f'‰å/ÆÛßì~&¡ä›?„¶\ƒâ]M¤&‰ÚÛ{xÂÚd­g‹*ß\tÝÿ Èü	ð è°­æ̆~üÙfäôÂü‘yZ^
:µÑ†Å´EóæÇgûß,]ª«ÊZ9~\;z{Þa~JL·Òü‘™p`°®ñB‹”n˜¤Óâ\ºæé(„Úafs˜€:*ˆžŒi™ë'ÆÝ´;¨Òõð®¶ìÛø,?K"jí˜HC)Û·€íê4ÜkÓrŒj5'{F¹ߦ{˜8#ðlžÿŠêF£å͞“"*é±çlcºÊ¥Š=gèÖ+”·xîÑǞÌ)£ÙæcOòŸ5ÛYÁ­¹j0Ÿ:åÂ@L˜Æ‡Öé
«'ƒšDÃù!ú¬»ðVc¹„x7CÛþLPƄÃÜöj‡üqæˆØÈgQøÃÉ­@
ÍÛE[€©ã¼Sé(†¡5MvCùz—öF˜ú´¬åëMelÀµÇ¥´²%ª?Í{ˆ+ä˜fPÏqАu÷%ûa?'ÛhÙfChª°µ‡Ô…¨î|pÌ¡B÷^’±ÌR8që #h¸~¥ ù´ÙÇ *<áÖiL€_'ƒ6ʵ5ÉӑΕ§—‰Š®ìN«s¶�OC(ýDgHgï:(øŽ…Օ¢ù8«Øgiu~7æ–Ý*€yRÄ3§CWC2JnW	öahÛYÂ/Åy….ènù06­Gëý ²¸êªCmqrˆÛ±ócC
+mΡøÚmìMjþOæ®hÕÇá­þŸg€+Qæžç‚0h«,áKÈkÞ ÊPPrûÚï£Å„ Ò³évÒr>Í<­@á´N"
"˜?÷搕Ý
+»áóqÈnE¡[çRˆA]:Ïڜ=Èö3ÆGÖ@Ð=xBñd<µØgƒàrx…pkŸ²½8t¦Ó‡Œ°õ´Ç8ŠÎbçʬ"Ê{m™N8ø”>8‰UrÛh1D–±ÊùœP9ì”#eÖ¹U6ânIømÚc²éúkÑ3s°ÑGJ1T™®�ás²×ØáðŠ—Ì[ͼÁ*�ˆ†6ãdˆv-ûRexG»ŒE:þ
“ßPtð	M¢¿Gኽ÷Ÿ¥I„Ãlç2N3¯ê5NÃ`¶CãAçØþ/_·2¢A¶FÃTÙ¡»¿VñRŒ©Ý’šNè�©Øã°BÎë
¯2s™=
ÍJƒ0gÛ5­{å•ç¯öí òb8ÛM|¯JJ‘F<5ujHoßûG9àž;tmßm¬³¬m¥Jóе,°€«|-v•\YÕÕ@TWF^’ó4s´¦ºØ)å=6¼Q(qœâ€Õ|Å{lnPï+4‹@ (An ›²„»¾µWtx#ÈÇâ©t¾Ít¤´’ææ!ñO³ýñ
+NˆQÌ?+THqîûpð¦®ûLÚAŒ†µ½
+c"[Àƪ°bÎu	CÎ*Éz[u]Ö]u	Ÿt(âõ,á[æä!híV¥º†´Ú§qˆG[üჄ!Éàžv³fY¥©S».Q½ rê²€2v¦Ÿ]P\W„,q‹œ›â1ñœHógÍÍì¢Z`þ!¿òGï�ê€P@<¨1ðп”Óš—¼Wƒîj»±°ÃR+¸0}š· yI#hWQŒ0'òœ¾‡â¹þÀlËÑcœýnøÓVÕʆ?jñ'ۍ«ÂX—å@7o`©–°¨.Š9<éûÛ	¥¼	œþØ[ÃjÑʋǃ^µŽ]¯kº¡Õå·n¡7¸2›B™-ÙÄÂ&Žƒ9wD˜¾Pø>ˆ‘±én"¦µë÷a¨®+Õ8›šãÐ\¥ï,­cLYæXôahn>»®w»ÁCºLCª»v0Ã×R1wۉ6Hî60Tv:4ހûþâÐhäÝ®Q؛dš4BùþéaâßûÌc0mûl—K–åFD·”ÿ$Ç^÷?u�¨ÚÕ³>´žJJÁåãT‹¿m±”Ù]ÙAØ°»~þ¼õӎfš¬¿ÿŒGõÝèˆ!ƒFÙíûT˜Y4Á(ï®äöv»$ә"td«X7Ø?†s`ôE¡nDÓCÐ…(!7ÁS.&f9<‰Bö£§"^K&wµŠB»Ñ9NcÃz`°žEáoC31„׆�©C†„G¹ÕîžG5OÂP¶k”o>ªožö"ã]¢È¨0âå;Ë/‰í÷VŠì³{á–QÜfE¡@ʐ¯Gá»hëŽK"‹	¼F€¿¿î/;pÚÔ¥BHIÈ.Ûÿì¾êÇv#âyÙ^]úâ‰�›ùÆ©â$–ð@÷»A8¬ÎÄHüžCɗ÷0º¨A³Mgâö£ŽÍŸ/>¡¢Oñ’IP`àd!@ÜÙR׸ƒÑ‡µC€‚?‘‰¢¸ÞgAûêÒ.…X"ž	}…ŸX•þüí
+üà„ñÓ®F}<JÐS5´å$Õ_ÿ¤§ñy™ËÂß6Q³vñò?µ*¬~?˜Ã@íӅ¿MÔuÌÙ,†RG÷´'‘öò‹sE£5vßõîM	BsÏ'*A§Øþî ş™Õr¦)FL:¥PÈX]µÑ?úxHŠò<åPãØÑbŸŠv¡81ûÏÀ©Z %æC‘E5‹wGúŒ±ºŠÇ>ú
+(?²KGê4ÿG¿±g;nĞå *öÄ׉cZ�=ك›ºcæéõ48ÌDÛaá(Bp”1;‰²Æ»Ÿqâû{™ûËî&Qð&}Š>°.•È•ºä=þxšlaRÍۇD7úÆ­f0?ÞÀénf»'©ºÚ²ÆÅ«ð†6¨—O…®3ëor\ð–ŠvÈ¥³ÛÇ0®Ë~êkã±w°e‡$j­!Ôá#¡°vݸm’A;<>Å$-Pšñ„NÜËäŕ/áç;Ÿµ^™ìÓø¼pîþ9 „c„Pô^ŠAKšû¬|×5Jb–…|!vë´˜ÇËë}×
+8Ñú2›ð5ßç³J·oÄÎ2®¥’8·µ° ôÐÞòX/¿!ç>DŒëæ-‘ù´¹³Û'&1èÜÇ!Øoȁ˜$1E•eA¡ÙŠêaW£½5öŠB=ƒ€ç¢P¯t±÷!Ÿõ(·¶ڐ¾^#p”´é³©¸ÔÂ×cˆ	ïZƒ{+µ¹ùŸù+…OE!7
RwìÑ8¨Û€cQh¬ˆ1^ÎVCm¯˜Jà¢ù¿ˆ«ÐB/îW)fäØEù01¢UOxAóéâ�·"]ê/©5à®…OÕ·U1M5®Ñ Q£Ï-Ø{`Hø»ÔŔµ?Ö°—O†•Ü`ь»ÙÆUÔÙmý»Þ>§ÍfŠ„;zBP?)\øÒÇè~29Â÷ñE±½›‘ͧ%ôA¤÷¶ŠAë¦_¡<»¤jJé©$çžLW>ÔÃ+ш2EŽÖ¢€K[ÜÃxÒ\.x/­~…wSʁpɶÇQ6ÚGßödçÎóêu¥bA�…Z"½1nßˈ—Êâåěæ0êYl¡æˆ‚ºzßœÊo…Ý8¶´×ª^?F¦;T¡,JloVØ[ú½Ù¹*®ù¨i2ځéçðkr1 šV¼u>ß¡4ø›Ôµ÷ꮥ·ˆf3‚l÷G >Õ#�Aaèó²©1ä¯j?�ä£Y�š7ߟÉmã_–ƒÐ¼¹@Ì[6¥¹äVFˇŸ;ÿ)‚¥M?tYÜJáÁ±£›bZ£%‹`­v4F@¶ëí‘IE­µ€Ùþ£F}§¨E«î™ċw°Ñ—»¥~O7öo·ø‘°B{,š‘ß ûŧêeìМµ×îàÃޔFO'§KwÏQA§·öhvY”<¯m9âQ¼ý]Æ«‡Ófé¯4îåµÖ¸p¯ïOKð…Ê{ñ´û©üšƒ‚ÐýfPMº$¯°Ç^Å ³’­x–¥Ü¥ï]D.l;OûâÖ‘KgôƒÛ⎛[`|„j|aȯ]nò(PÀ²5êµ@ù“2!s¶‰B±ÿbéá“H…Ö‹ä†õØڑޠ§¹_ϺŸ
+1Ðzy.]‹Gõ(?êÜåÏ{O7€ƒ“dñâQß¼à£âx’êý±G6o�R-¨Åzôb›W)mI&̾H´Ï­5âw햣ü¢‰Pt h9:Ä"Œá‹p˙3ox1‰bÑ°dѪoèi`%ÊWÉ4Š‡Ú‚Cë||gٜªfpfÎü90}‡F,…(HÁ‡2jçýâwÙa»l»_ÑhÝch•šsEÞÞæËÎ4²Þ¯oö{ÉÊgMÇum>ÁöÖ½*fðAq¢EêûåÞŤÛ\ÄλFA€*Èo§9„"ÇJf¨Œø\ŒŸN3¡ˆO5|Œ¬HԌ‚³øç¢Ò›Õ…!»LXpòo‘2ö8WžTRhæÅ!…N£	͉U%
+]K`6i¯à“Ò…#9ã)¢½T™•g#ˆ¼¡¯‚0sÿ‘•¼`±¢iµr	/·Ã½³Ò%#y-.(! r#wYìAHÏ£Dv  Č	]nc‡Ð0†´è„‚Ðïõ2´Dٍ‚µò,¤H‡ÃÉ° ԹͭÒR}Ã{³A«íÔ?Ҍ×î¹$SgšÃ²«ŒgÙ^|s|¼mnsŽ·áT%ùã£ôñ'ÄHüq/þë¾»Á¥YŽå™eﯜL2‹Ç*âêÁ½à«M�#Æårߨú|g[ñóû¦m7ˆFÙð,D˜¶Ãþë­*šzjé÷S°Gÿ­=;/µ´1_£cè¦Øaƒ.Ó¾ßc~ˆš¶íèR¢Âèîú}ì0a¿ã{�;q-²Îiºve¼
+aËâÃa¯@#÷8ƺv¼8‚†M¿1M�Ša^Xþ&[:Å97]¨7*ú‘¢û]ûø¶¨®mi(¢‘BRf¤˜x…î" 
+=Ê'hȅÖadNJ=‡ˆ¿aEÞ6«ì¢¨i1H…ðدSšÎn«~-™çœúûmL ®þ~4IúÑ~ß
Ö1ªÐk[ï>r9c‰p’Ãñúš¶—ï–
+…E1^–°Xü‰1»CgLõÉTáëƒzd¼o½ïnIÃíM¿ÿL"¶/õh¯§â±Âк‡|¹ãµ!±±¾åú‹%#¶æ—Ê°Âí#à0ñYD¢9.A¿óöÜ,¾ÖôçǝŸ%ˆüop{ªÐu©Ò·Öé7X3Uıè'X(#ß_JnÎìíé7îUºTÌä-•zdÖ׃à@ۛ 
+ÑdñŠÌ@kH‚?é7³~Ÿ‹¨{·­Y7=z鋥:�ºFvÝIMþ}·ºF'•ðlñ>ðy‰ºDÃØâwÁðó]·8t^¸„—Ë„zÕ®19ºnÚ÷·I)Ã(ÿ˜·Öò´Ÿç0ù„z÷¶F`”ö@fͦþF2ü¯ÑlGG}ÇÏ@ôºsWx2E²·‹Cñá¢h¯Q¡Ü“7§ÿ±ÕÙ/åîøÛÌJf½|b`»Óó*’5mHÄ[%ÕùóÕ¶[Çq¿€ÿp^P@Ïý’<‘Q8±òF Èm)EA¡`èï]=]Ý»‡¤ÃöCŽA‹¬3;;ӗê*eL™¦1m,RTέ.j&†êˆ\‹³
 Ì›¥©r̯C…¤1”ÙŸªi$05	K¬Ç–ÃJ£eÑ$X«É©Ö‚­”ì4”\&µ3Š4ˆCa&í<ÈBh'!÷JBرRÈòE×D)Ä
AdÛ{´þ³S¬z#Ìd(ç T£®ÉèÆB…“£Œ¸¥:6«‘j¸ŒiÞmÎÒX+³UG^«&ÇÑïèƒBå3B6áÑ\ûGKÀÊb¯.§€ÖN9„¹p©“àŒÑŸçÄ[·íõ­ƒR̦'»ÎQá -}³tcmç$Û¤À˜‰cp*Ÿ©!š¥’YfŽÍdÓ¨NBEƒ%$æàÚPÊ´µÕÄ´ùnIx¯à܇ÂI¥±ÐRäâǬޗ…,ÔÛ¬NCàšL
+ÑX¤UU¤èבM¡”™HäðFy#älÀaç±Fõ™69„kuê¦bYØ¥S•Ñk»›OÝÔ²El•ˆ=ߪÞ�¿InôZ³jcNtD0jI3¥¹ljÈD`ˆ£¡49‹a,Fe3Йì„iÁa^‡m@
+Ðå”XµÌVŽ	/õ,ÆÎ
Öj$ÊæM#é4¬ã!¬åi]?ËÍOg2ð˜KŒ‡ðôÆCR‰NDÁu"ŠMï4õ5ÆD`4{5iÄשڀnÅ6€¿2<—[1ƒäqí*ÓŠç%çE½þÜ72jûj	d#-™zªF²+”¨#EG^›˜*Á˜—h"Yj¸jY•¬àˆ®†D¨WŽèÁjY`¡¥€}q°è�§3a4A,T4uá²vlÒÖ^ô<©À¨F[NÔðj…§—L"òª‚왌+ž1"JsGâ(Æ9\N°e“Ce˜ýZîÇJxÍ:¥Â™7WVɏ…624Uò&}tZg`ÄbbD«±Ù ”šÉI4þŽîɌ00ÓksP¯²i†mƒJS&¢búÚhuᢤ®uµô mÐk ‚
I¤¡W°P¯}ð(=V;2T릆2I8w£,ó9˜Ñ#T£!=–€ÞBCYé
“ËH³¨\Q01/bÚ
+_•É-‡5\‚­¥ú0%×HJúœu£¡<|_in‘Š°În|‡IŒ‡fÚx(‰Ç4êR5ä!(®j¢L
+iH´‰f#2PN‚“²€Ø3Jzñ.÷h4„ҏ„%,
+¦ºœòêV”Œp‚h`Û ÷•î¸”µl­Åꥍæ Y­ŒÅ-–D‰a¸…T²TN´
š½Ä ù5³ebuýN «È¥v³Íø·ÔÉC¹©­҉ehËÂé˜Ìme‰è‰™7&
+S/6ÍÂ!1¹š…ë9Á‘0–Š7"Š!,Œ uՙ£±SÉÎ
Ê®ˆólö²dþ/&2uSD±52æks&ªA=ä@Rý.nMõ»P‘9и„²²¹­L…a0«SYjÝʹh„AíDW`cbiš\Áѵ¸Žäió¬Ý´:“Ž½Aªk%ÇÆÏ1WnH˜ìD‚ž`söMϔ”9Ïë°ç«zXÁ:rhÏK™+©_‹ŒKî	kcä4e,(ˆ¹è)¤T˜ÙÆNÃ0knpSŸÅæè4äÊìÙXƒÁG·G4ò -edÔÂØ8ȤDM¶‘I‰¨½L
+L‘³Å7Tè,h€·xtÀ][
S¤pÈ<Ðs¢ÇôÃO7I¹QPƒNrÞDßȪý‹z¾cñî3úKÀ¨žOîiǘ¤ £Öê"­Ô°±è¨²¶¶¬™°¶ä»f
KCù×¾±(
ɪ	…JӞ%c•9;	HTù%Xë טNs_”gR<l(0Íèdš2¿\P'«ÔLيãí~€FIgº}Wº3Ðz•>m^㝅¢m²÷áa´"E݅¼é ·¤ÍjŠ§Ëý>#Å:­÷’Ï;™î†Ì"}›š£M¼‘ÇŒ‘#¨ôàL7©zñÖiϓÀÑïÉ&Ђ벃Šy€ª–efw›Ú»Û9ÇÆ>œ6€1Y¸6w-*™†Å8¥¦‘	ö¶mÐJྭËA¯ÓÖ¦hJlS+ÞÄhCdͺE©­	ÁJ£©Š¶q*ÝNÛØoHh.$šuñŠ‡ó·÷ˆ(Já9!³ÙLJè`ë;pRIÂ$Œj­‚¤uLÐB€ÛÔ;kÅrNòP	*8ð&±ֆ
Oi¨TM1*`–ïl«ê$“÷mâ‹ît9Ét„ب0w çPGàné¾—w`2Kˆ¹{–¹F ø±ÆqµEµmRø^.‘ÁÓgŸœ¿»}üêòöÕ͛çï>þèìüÑá“'·ï^½ùápöäåó·W¯¯Þ¼øòùíËÏ?:üA–üã£K¾þðöJý?'ߜH-èÏÓøÿ¼8i‡³G‡§ÿ:9;qóÝÕAž;¬þûh­DA=ýòä´Ä’àBA…ëƒ\ŽõKü×õq˜Ÿ’ƒNNÃÇ?©Ä‡¿ø”:ùÞéxåŧcÿg³'íݱܽlXírøçÂ{$J‡à?‚Ò5¥cUœÍáj˜	%ÇfKj'ZrZ疁+;b¨#0ë[uU#ãØÔP\{©Ä†þñ
b´ÁvX-;¡?¤ùàE„7̐¼”Â\ˆªK£Z‡$V[n¢'ƒì™‚WñÌ>Ì°„3ß"˜ÊžU/‹;9Þ¼Ûý~¼âÿ(N£7îÊúââüòòýõW7·Ïeí®¦uóÜ頖|º&ڃ*bÞY#6K0Fžjk�š¦‹ÚÂ]ëgHâ©!ƒ€ ‹­Œ8ÒÐW€EüéÏ«Y
+`qN±@biáXÆIC˜”´)ê	dL)àõÈ
æ´¢‹¹Ytðñà"ãç-ü¢Ø~s2Ù.ûßNÏ?‹áÙßÞ¼xòáú»›×üûâê‡Woˆœ]¼ýúê‘4~žþxò~ýwúL~Ö :}&½‡ÿƒòפm:i>̪Ջ²yÚºQ€¿ã×ÿàûåðÅáۇË…?ý
+ÿ Mò&“4Ntèú.>P­TÙH]’™´’1,í£È¥>+•.SĖA‹ãÛïµA|­>ê°dq°¸›´X
*wü½òÕ~Äýj¿Ën×{÷–
>V¿ÏX9;ÿüó—}ñüöòå×7Wß߼ۏ •ÑcÂÕ$§£,Ëu åóªô` ¯ï|§¨ý™l¤¦•!pjÉåÓYm c:À͵•ãÕÈ$ÜÓ8Þ×A?…m±}=–Õ_ø¾«C®G§pÐ2kgÞ¯Þ]{Û÷~,~.·¿“dø_¹=ÿþöêÝQjÁ
Ïæñ€uˆ>p¾åï4üÃí¾šýáVÿõþ«Ûü·5ùolñÿ·×¼‹Þ)wrœ0ípA6¡5F<ÒZ¸a!ë
£˜¶ëc‰€(I–ÓVW‡¸ÝÄ÷ÒÚ´Ì¢—ÒÑZH6þ4v݁vÍ°ÁËbVƺ©ä-¦>à çxv¿Ö¯µÛô~$Ɉ(ÄÀˆb’KDáòvíPŸGË´Tu¿Ü†5‰Ã‡PG…M¢Ž$HsäÂû”¥8Ԁf5‰ûµÂN3Õq´é´h@
^†7ÕÃ~S´½¦£÷fáLæà¸Ðo´Ûðþå̟È.“$	BŠ^¥NP¡8r¨ºÿ¶˜•Ì^uü¦¿ðRyØÍ0÷l“wé9il{Àl¦FñCšR’©îYŠ_90¤ûÐËt>©àyD§IÀL±LH&¼Ûõ=§©2ß?·)C²Y3Öw-hè)2jºßå+ξ:Ÿí"»àµ-ÆÙ¨œ¼Æç„ÝÕo5ÚD¿,oºæ¶ãÄ.‡•?ÌqÓ<¿±]¢â$ƒµWŠ…Bóx_+¹^¢g 8]æâÛjŸÛTA
+$Öw-p¢¾á"2jºßåξªà$ԆSÿæ?œôLzâÄZ­=`AÓTªÛž,”akK`êAÒZV“mš£¬­¤H(”Ð,ãv¼4[[9ºÊUg[2ž	--Ô4¯È(ç¶|Un …`¹@º_$ì™AÒÛ
+›wô߸¤Ëü,vípŽò´•ÍÀS€–Ó7à%ú“pl½tO,ûUGv
12Pƒ+w‘Z?·+Sr"‘AˆAT²½cO¹—뛁2¥
™éd “.Ÿ”&Ö'PjLÙø%™KsúÞìÐ(èä¬å@Ó-g¢-´Cr,ZCJ®!FjpdÚ88¨ºB]4z•š2сj¶wìUîq}30 ³ë&Åé@mTâ[õ0-}?™®!wOáKŽ¦Æ_’¥Œ±½õ)“-=Qè)¡½¨|‘Úí%*n†zœXâTq<\CŒœ©ËH•9IC¿31˜ÎÕrìU.Þ Œ)ý0ShÙڰÄm>˜Ò^ÆÌ´‹tdGŸeRSå¤uôv4j‘×¿umõ,YÉE©‡nIlP~c–Ù²iˆ±¾=2ÿnì̔Q߅´~ˆÎSs½cO©ÇóU¾Ñ´iIhÒÐÔP‘ÚÈÄè }ô1#è³ý’Ì݀״4‡sÂêDû8šm{CŠÄI#<ÖäZ,®<Œô›±sO¨“€THˇ@‡Â?±W¥Çõ]¾"…µû…Ô'zbÈ؄ü ¯M:˒;‹Î"½%©Ê`´Lq
+©ñ³xU4è­KTª›çµžcqhÚÉ5ÄÈ@¹†ü`�™ .T
endstream
endobj
22 1 obj
14773 
endobj
23 1 obj
<< /Filter [ /FlateDecode ] /Length 24 1 R >> 
stream
+H‰ŒWín·}‚ûûǀÔ~‡í/É®´	Ä	ê¢(YRl–d¸r¿}Ïp†\®®ä
+‚öq‡ä™¯3®®©ú°¼`ϼr¬iáài”tkðµLàÅpñk®ök)­äŠp›Õ	ô«ó¡ÀÀ¯XMÅ/nu¡dùãsYJÂkn­>–Å/oÏÆ,kÛÏÛ¯5ÊÕy5êkŽËÍö5ÂrJ‹•R™V<(X×JÄØ®
+Bõy¿¶æÕ¥°7Ú±±{}C+H¡Îªš>¯•kÜm?ÀΪu^;Ýu³zL€±ÚxÜX­¤¬– ßkÈyb5Ám;VóêKŒj4–RÕÙuV90UVŸ"ÙµŠu•Õ·ÂŸ»µ5­!·µ“ÕŽ(¯\8N‰íV…,ò1îN0ÀAl;í¼vºîfõ˜%~±!æF,«ë7VåÛVSΤ3!nv°ÜιÂÆj	ä•)føRï”ÈÕ	ì¬âUÞ¯—‰2ï­pœ@YÝàºzøe™­
+S!–¸;Á�;«zÚyítÝÍê1Æj¦ú«ú½J-؈
HÇĖÈv­’’Ä*,äÎ*ՖռRè¤Ç¦œö+kX©”2ÙÈØXùÜ`Fö²òÙ-âô+“K»Í8ølçœ×N·Ü¬_Ýø”ïDN|fnšCøt5ïù$¼á²­åéfËý«Uu•±™%E©úâ€Ò줺Ê~¿¶Â�×°·:Àq%vƒÑ¢(tbÕª•Øj}?Á�;±zÚyítÝÍê1J,¶šxíe•™¢ðJŽ7^C-ô×èZ¡raõöfKÛHz³âœÙð¦wýVŵZÛAå5¯9Õ¸_®¼Ó¸Yà8AçµÃØ!’òÚ­
+WÞñþ¼¶ÓÎk§ënV90^KÚÝT@kÿø#mk#–õ¿3±™sU£r³C…ZRoWŒ†ª\qÙn•R-Øy5·¥xŒï“Ñöý•Õ
E
1·t›ÁGpÒnûRÛQçµÓU7£G÷7NMY™ðž•SSVŒ—7NQFrÊh•j3äÒ͆£´kèIkj©ŠLÅn½'PIEâåà÷kQ²ªÕŽ¨
æ‘Ãêp%ç°óª§×N×å¹2<àÀˆµô—¶* 3\Rü©aêVè‹uO,köv-\µGk‡…‚ºñʹaz°àø9N Ò×êRܯeI¼¼7:°±W¼f°¢)<Œp½šwà µv^;]v³z̀Ðê—ÓOgTùöÓ)Ì	L1Yãäx¨0|.ù¤í)ˆ¦0É
+wy»�Ր&°33¥ýZ–ËÞ[à8Ab†Ö·„V…r1ïN0@¥°Ÿv^;]w³źPøì—oN?ß¿º¾¸¿¾»=ÿüuù3 ç§'Ë7oî?_ß¾_ž¿ùpþéêìãÕíåç÷¾}u²üI–üýÉ%?}ýte‹N¿ûîÑeߟß_|øéîô×û«Ïºô/ø=ü|7ê/×üwy åùÉòöŸ‡ç§—wï®ÙbiVþwÒV‚à·?ž%Ÿ.˜œ~<nØÊ«—íÓáäμ;ÅÝøž¹§?!ùÇÿñÚ>Ço§°ÿ~öš}³ïíÓÃË:
íü‘ðÆf$|“ÈÐåÞi}8U2ÇD*IQø‰,“"²²ƒ‰{tÆÞãQX5=]B¶1KF,„¤cÃBkûiZ\¯ƒ<›¼|V‘Ô[‹BõÉ1ô!Ãk)Æöˆæ—6¹qŠ¬E7SÔ2¯h%vz!ݒŠ¼ººlÉÕî_¨ÑB¢·Ä@›yqå
+ª -øtn¼€U¡è§È>;;½¸øróãÝý¹¬BZwD¹÷6Àب!Ïɶ”ÿ»hD¢#4U!‹oWv2Köž$ÞI]ð†¬Ksóž¾còIÜP\TÒw{½¹´½DÑÈÁ1ðbaÒô‹€$ª«‘ŸEÍ^ôk1µŽöך‡,ÍÕ[y{ýáõŸ¦V†:øÉý!f>T˕ùéÙé·Þýò×ÛË7_oÞÝ}´ïgWï¯o
yþòÃõç/ﯯn—w¯¾œHªá÷íï‡/öóDÚù-çÜò7<üÐïKZ¾_þý·\Š‘£ÁÆB±Ñ sÕÆ.v…,š“Æ€gÉí-"Q9sLZK¦×
+Ì[25™Þ¶Euëv°€ö‘5okW’	™5Ik)Ùô’÷šb2€ò6ÊZ>‰Œô&¤šèࡽöE«´™éHAšºÄ”>%	I•F…µeK#žP"™.ՂËS´àf"
+D[¥ڌ+ 
+x½][	ùjÅpˆÚÅ름gE$æ¬ Û8Àf>V2Ø»b'È)÷˜‘
l'lî„x¤aÀ‰VÕx:ຑ\Òѕ´¤‘èW%Pç8˜º*2áT›Ü0­ªîÇ
+Éë溚@Á¿ÚZx¼d1ÁÂ<©Ã ©¢’HÝ}´¹Ã‘—ÛBz ÕMÈÈÎRÛû¥jÄTìåMÜø{túØv’S(=O¹¬ÇÝ-<	EAòh�=<KÐÊÃ(WµÛÕº>\ó[ï!±p¤Ð+Zàâ$.£…y_Ìj¡Qå0¥DE©<Âc¶Ê…²ë}¡T½+C2Y“nƒ*äªC†D¯—ѧ­¥hѕÚk[‡ÃNf�Ö,6H’Y«dÙ)Y)àÄf _4;¨—ié\Éòj8qߌJ6Õ]Иdv1„±9?hʸ¼Š)®((÷:´«X/ufÑ)0´aÅf@©‚ *È#ªâ똪+AG.]|$dcªzŸœ}¿d‘tóäZƒjµ+EkÓmvèݛ¹…C	Ã˙¬kr>¥FmòCÑQ˜Íõ¡´ðtQ²vBŸ§ýkѺàºVïš?IãÑâdæ¹(Ô$¨do¾ÏÚáåØÚLµ°qZ¥P@Dâ€‡i'H”*æÕr’Ü_ÎRqn,#5IZ´°ÎV8_ÈÕIJÔ÷.Bª/LÛ)àr̼YMiÅ´‘kIdzmhÿæ�Ô*/ÉÙTÕm>
Œ4÷Zño¬Ô´ŠqaM®Š¦4k¬V­3BÈZfIa€>öŠ2õ€ÖTµ(õÍ@AÔj›á*j±YUCž‡®`e¸*jÁè´?KËs-.¤³¶&Pàs+u�¡v¬üÈÐæZ¥A]-U»v‘N„ô'›ùBkŽ­.£„ù]µ­%­
+┪,j½UkÎ&¡Y;›èÊÐË_

•JêA G1
˜Êò°€·ìu=×jµÚõש’6Qû®ÂBò¨õžQy³æiK+ü˜ÔwTj±ƒŠEKOMݾ>tñeŠëÜÜÙ:žÖ0Q—7ÝËÉ:kÉÀÀ˜µ
Uþ²óÜ{	…ѧCvÖÿcìJƒS7RöZ?•æ»©â¼‡—ºNÁ[ïo%­¿ï”ãëë{¤ôA$‹1hæ ~QóÆ«®5®ìþý‡ûb`×>ß»O²6	„€MÈBÆ;›9‹ÿ}ª»«ÏŒFãÝŤö½çžî®®®2©ihÄF®Ä(€S
£cÚðBrNä®4ût#ð|—Þ°Q1
nÞâC9½|ÉM^ÁԐÈ
!6b-V•î,UéK×Մ )s!aò%uŽ£"Ш³	ÛnÞf P!²&…#&FEۇ	IⓌQ´kú¬e߄¬O¢×¢—׊ÖÔ²‚tª$NH6¶"c¦7js¤E2-X©¥«Öþ 
+„1ð­ëÌ3ÛÁÙ×ûI‡ÂvSs¡
+ҏ¬ -OÅï¤À‰¥×_ØQ;“£Ӆ:µËxÙû…ÚÁQ<T³E>;b¨Ì WÊ­"ÐD]ŒÊ±ÆUüc¦”—i¥$Vñ©‹ºÔ¼zÐÛZêåj¨a±å’9Pojª‘ÄmTŠ,ì‰L“l«‰µi…R£…Q81˜3jfA„‰2gB¶‚õ™fA€èz„ð¤™dúUQI.q©’nê_É'+¬`b¸!͚¬PÏgfEÄe´M‡ßÒôÉÐ5¢7…Ý*kM”62“%	*3ät²¥,©Yp'LQHv�ÂÍÆ,dâU‚=ÑaUbú¬„Ê¢æøÄMD.ë{dõWS8ÕxÝöp~ï*Ï5
+êk—½î׳k`±t¼ÂT	“zä%´Ê´ÍÕöQs²Î0Óa‘µ(Y¨Y]}šïÅ,%{¸0
+–ˆŽ‹1ÐÒ@3¡­Ñà‰ù16´+)¢•ÆKŠ)‡vØâèÅ´îÖ²<PI‰Íµlg+ :òՇ7׏O?Üížîî?>~Ù¾Cèò[Ñ÷˜°zµ½yÿôxw»]¾}{½Û}Þ¿{xú(Ï^mßàÉïñã·xîüö,OêÆÿmñ<1£k,ÎlÚm½e˜ÞwY¦E8US(€3¤¥rz2ŒYufÓTª5¯nèjE!Í՞¶éÖH\ *ã“/…–úªnϖ�h`V¿lÕí\®_N*ðëåÅÇJÿ]å
Û­×2—Â+䳇âud&Ì?`Xû±´<VH“폆–Q:Í!J'ˆ5Iw—®È¦Ü·nœ96¾Ó]‡†A/yt@6³Kým¥ê„Ô­ÉœSE'm§£â^í€J—gBpú
\$ütï8‡Å”âìýøÚ4	¨Bd”C*ñK¥/ô9L§£·¨}[s8Ìi@¼ál,3¸"[çðÕA×”–¾5E†ëº›ÄX(É°+"ï+Î䆲(sK0SS¡VFýëÐD—+Çv©Ñ&Pf£&­åyS„KS§þ‘pëFz¦cÙÔÉ-=‡ê2*næ2½}ØQÃ`!ûޞôu�æufˉj{¼}*íØ2ëW³s[¡zÑÓíK¸hqù+͎{£–âJWՅƒáçÌÉôž3fÐsÄ=wdŒ‰§ª‚´g{òR÷¹<®
+˜ïP7~*uˆªØÊé"m‚¡hژÛÙïËMÿz1·Ë«íÇ¿]|¾�Ïn׏N]|nKT*¢쾐kY÷Ž3Œi	ˆnzr9D/8dž+ÃaÎFÞ…&
+õÎKEÚ%ÕYIoR‰M0¦múlÓg‡ÂÐf;€Ã)r½v	±î.žßõp.΄!æ@ÖâÙ
+ܘ&TVè,Ë{{†Ák•R˜Û³qڍW¡‰Y¯VüI‰;–¼UãöVO”@ë[V»2ðþ
ßïÍû®XejÝÙH½‚] 7SÊ0֛ãËòȪÖLŽ
+¦—ÒTz$(k솭Ga–’8Û:àW£j&ÜÛ RŠÂäÇFfóh– ªtó§Ñâó'¡aœø¥dØ=
+ŠAsb>
+cXKqìôéTZP9RdæÜçêP®µúdš©@Ðl‘K­ýEP[ìxXt…ir$[ÇiU_t`·À{RYo#ÚÁ©.Ëc­þµ\Ӌà¡6Gá ;•€ý@7Ëikô¹„%}ù¬Ž¨iu*ê¯ÕVôWo.áÍrÊǚoØÒÊxV›ôlªž=+¨òZ¹Ñ-‚ÇÍ9
+§5ëÂWÃv
+Sü¼ÿu·ëÿpwÈö¶;äŒb́»‘=·?	#wÝÒ:M5r2q3§Bs‚+è%Ÿ}œ<+þlí®Cbü¾ƒÑÃH
ÀގUg$Ý9¾À
+zÅí²Ïž=du8õevºgoz!¹ùk«<ÇáŒX•w˜MlÇ)µƒN‡ºüOŸÍœÛÑ©ÇA½àa0v÷GýÐâK'ß·ØîâùUOr:œø"ýÝÉf_VÙÔiišèç=Ãeڟšf%ØUÂ*:
+ƒj)ÕéPí¨j¦
X8<
+Ӕ,EC4W:²ÚUkc8"ß/í![8‡±æ¾êòÜ
- äÐz±O%/¢sTÚ:¨ÀÈo)=k²#1+ÜJ\›óêÂF<q@æ„ìpWíÚçE	e”Qsð;jÅJó‹DÀYùЃ¬~ˆoÊq鑲^�0qW¡¬3Ó׆Faˆ×ŠN1‚£¤±ZPøp“H·+v!DóyŒµ�ƒyˆbG»2wAÕ
–.-Ô̽º0E™Ù¼¾/b&k7*ä-@®‰YÕ8‡lA\g®¤i=„ŸŠ¦·E.çÙ,ˆŸº-¡´àՇ7׏O?Üížîî?>~Ù¾CèR–O-¡]moÞ?=ÞÝßn—oß^ïvŸ÷ïž>Ê£WÛ7xð{üœ×ñaÙ „iƒ\Ù3ÝY[“JñÌBm‰ˆ³iEZº4
D½×Õ®Ø4™Ð‚ÚÏìÖ¦}Á™•ïwÀt²²Év—ÄF´!€Déþz-ÝîÙ!ÝÖëÐC£^m}wqg(‘V9š½R•ã}•%òújv[%‘ÿT-n½Åáé7!²ÒZ©Ägr49ƒíi’šŽæUzã·4Ldòö­eWÞ'Ýû5¨€“kì¿*ºý­ß^]ÿ1†¸ÿùý—ýOŸø÷ÛÞÞÝ3ryóøp÷ß»OŸðánüüø(å³Rù_^Âòè/øãOøåßý²•íÏÛßÿ¶ŸåˆwR¨aìA–JDw/ƒ¯`Qñ'áXÚPöYÔ2FÓhø‘3^·i«€¦õ\ñ…TñÂþ¤؄j]”T²9Ù4\?JX¥†£ù¡Ž @ÐÇâ$XÁ)V¨ùǺ¡U†±¹âÔË2!]óB
+9sg¡èzI#m„†ø„̺âÆÖ1YÐIXnªô¼´gëý¿ómødò\þcÚِÜÎ.ê05
¬Ùh삄Eåš:é¶!´âÆÚÅÖƎµ94»m@°v¥sle«CV\Ô±†NÍÝRõ2†D$ÌbeD®C¹?h°jc	H¸Ú0Jp¨×\t^`w¶,^® #ÚjCV¯üº•¤á.Þh:œ	Ñ$­.L"”™io¥Á;¼kä¿m†h¢fkrJb†™+¢ é†Hj¹QÔdp¼?
+:$“µÂKç(fíë¨goœ… Ìë‡N/Ôé.€O¬Qæ$¼cú½Mýy&1X’j¶¹•`ÝBù‚aé-_€YVùgÑéOæÁfWº³Õߝo
+»%w"w¸N²qìfP%³T^wÔ>­¹˜7A¶cè’èÔìH^³º²ÌåÿlW݊^Ç|½Ãw°2óÿsi/¾HØH˜’ÏB8D
+ã·OuWõœ•öCHì–Ι3SÓ]]U£sã¾,DÎX ç"W´¬äŸT]Ý—÷`Ñr[­ïrX¤ß-¢&¥vÆ'­ÁXñM¡óÓfFÇWÜ#ÂÌ)o&4¬k-挑!þ;J—ã÷ºGê/@Êd±Ë¯Ÿ­õËU_}üþxO±YDÙ±•C†Á’rc–ñºÚ
+»ye«†t씄yÓÆålìøÌòHe«›Ò v̍Nàžóô2g²sû¤¶ë,
5g;âÿ­ÜýƝ¤'5¥ÌÝhšÅ‘áWr¹=$àþ˜— ,©œ­ð¯YìbÝ"ÏNM›¯m.vÅqˆ‘¯b¯U¯«Ê!_uçÓ;ômh‚póuµIÔÌq"µux¥xvMèh¶ËŠQ\ŽþôÓ§NJ˜š¥Í&Z7©65YíûÌ«ž«˜ñ›ºz%(ExMáý1³å©ðŠ`Ì×5c48‘<ºvòp{—<xÚÍ£¹¡ÉC\¬/`	[pѾ/ÛY¶Ëy'"7–ö¤Øý4΂X¥˜ðV¹¬}®|³:ltÇò¬Å)bæ§J÷†|x¼ÁÝ'±Á–‚«½¦r{Èßý1­1ŸQŠ>^ÍT-ÕáóWz‡Cd
Ýçu0åµÌ#´æÉÁEOf+[qe´f«ŒIp»	xîÜî×<›™¢Ðë12»@d“³Œ¶Í†ìòç؅Ý	·	ë,
+pÑãÜXöy
+¼„¹Øò½>¤ðþ˜Ù íYM™²¶Ö1ø¸%¹Û:8ŒÌ&e’‹„Uh¯—µäŽ6«U*èÅÌ)Ý^VøUcÅìæÿTÍ¥Ð@ŒË,àc«ÈÃÎ<Δî³Ó×ù=äÒnâɶ6ºÀUþåiï9¸ìbM,,s
+Uµ±üqŪš²|¸¥&µ³»'O…p¹ÏìžJ¸t	ë\æ;Á™¦°,¶2*1>…^¨)¾ßù¾MxÕ¤R¶<ÖsžG{äk”‡ž…ŸTyìÑ⺾8þý1+á×N$²;02mìUþ	J/id`˜ÒÐ/.FÐÒ'X»!xÆtVT>é*z/L ÓÀfs(ÆK8£v¸…Þ91œ%^Øe™Q1i‡[ë<¥Ã³èvì¬kꬓö÷‡´]ÐÙ­iŒ$ю½­•®¤›Èw5CR̂¼‡%ÉùLc.»lFŸÁ«°»lÀõ°ø
ç%ØVk‡nŠ³S«.7ýCDâ8ošxÓ<sCncï:Wå¹&ˎØÜ[Z[äà^pHKÐe]<ÈËÊEîgNM(/$y‡e&q«âÂp˜i-âqçD]k'×)'Áä‹ ÑfJ‹gø²ÎdX‰Âle6ã`Ë2Há÷fú׺i|¶yU‡2a>AŒ>¸xþÔ8‚šO¾ŽÛnI>
e˜õèHc‹«™ø÷‡¬†ôUJ¢-‹©c!ƒãª�;«Ê�Š¶æ`ÁŒÍ8dµ1[ÖiWºjƒæ˜0ݹGz6¼â4Û8ôänµº†÷ÑUú\âNfq¡‰PÆ½¶ⅷäKë7ÙܵԤUwXv¥‹ïYZ¶µáp‰ Uˆâï»ÝQxHì‹Y“ªÚƶâ	{—éÿ|ˆ*ªaék¸ÈU“jƛñI÷»F^‚G
+ÂÕâØD‡pœÎàƒå>½AP!匦ˆH°%ižq³"jz‚	#°F—¡ÂGÕEÛI#"r|ÉÀý!/![뚥s±=@½7
+{(xQMK76>¬`{©§Á)\ôyß²LS¸«°ÕS»½®a1j®9]±©1¹©ŒªŸ[ÇͻʄÃIºèóœa3+1K´åöðô÷Ǥ[y³o_}}{÷×Ï~úÍ·¿ËéïßúñÏ¿~üçþ­ß¿{ÿá§OB¾úþӇÿ¾ÿôï¿~“nßâï»_ÞüŒ?¿ý?ÿó-ùŸw¿â—ßã‡úåÖn¸ýð·tûÑ^ùþù`›ÎâDBS¿±QÐP$Ř9ŠÂnw–mŸÓd@w	ý§JʆE“6?¾ð,x÷¥%ü&Ƅ2W-1ZëáŠävw]à™(a6«E¼—¨“79àÔ$·8bíªüaDÁǽ)•Ú³…dþ«v.€Æ¸6`¹†~fŽ©su”P7SÁh¡@—lŽ!<ÙRvp¼pˀ×J°SO¶Vq]2»Ô9G†8ÃV͒À±a,ONß؄sY«Fj¥4›Eô~00“ð‰£÷©úÄn©U¨Ùí„.eų«íÌ=ÀïDó«ëd`V„M³9}.KÖ-¾z\£=8¶NÛЪgµÒ#XwC×â`[<¢V[q†JƳ·ïç{Å=ÚÜ>š2è¨@QkSzÝ6§&n²¦°k¨-ºUà¦)£†ِªgÁ[‡@;œÉK–ùËüˆ{Éü™ÎkUpÌâB' ”c”'a
…9‰…`5~Òdê-ÉOá1ˆaŒ‚ÀÔcZ¬ÉM¡g@ëY`¹ÐZxAÙ<œÓWµŸzxÏ:¼^±½½{>êé[õ˜•Æï©ÁS�pÒy™1SӚG\>ÍØ¥õ"k¤Åصô,UÚt„r*‚m%ˆ`So�\Ç5˜ç\"fÀ΄A,שϭ|YþJ$T|ƒ[”1—>5aÏ#àÒ6ù
Ìø~ÿ¦æ]Þ�Ý|× Ø«ÅÛ?n« ãhøìí"º0bt_€k]›ÔBø‡e3L—ˆ©·î{Aygl󚸀TÚBNÝú˜=ŸÜ{ª¹Ü3<i.ŽòL9npŠòöSêcnÜÅ©æ͈z²¨žŠ�Ú	#~f=ºo¼Ñ-¿u¯JPæÑÕ^æD—[œeC#×%ÝA‰ØvÑÜérÆÁÇBCÚåÁàÂrѝµJ«o˜ìúXžƒ•pJ#‹Oç{Û�ú¬úÞÊY±èPgÖ?|¥¤m‹ï×D¾'»ùÚV’vCù¼l>Å-‡A™ÖA«.ÖcÅ°ëçÙ}¢(¥Û*•wˆÛ,a3÷T8AÊVî6òˆ£ÖÞ"€ìÂò6³èoùªÅV}ìIÏ7µÜ皳-Š;ø­8XÌ£e‚›bd`݌
+X'{Vñ'c	âôµ5k
+0{vu-œ¥Û	™÷\£²3h>H‘`k«„§ç�7py«Þë<뎢йìztâ^‚s"{º\!à×歛Ýâò²-.´%,üÓ >=‰•;î"ÍRE5º·&yôÔ½a¡„q-�݂¬Cλ÷Ã6à^¦œ÷îý¦UטŒiy²³ô¶ÁŒà¦ƒa¿³+: sÈGî?_ÇM¾Ç±Ý{íî“×iM|­Ž^eƳs”IŸïª¥kéü}Œ«
+†Ùb?M¤5"<ƒd:l‹žÄÀUe‹<6Mø©³
Ÿ£<qƒûPuÛxbT—è#¬£ùq͘I»¯¢7xï­JÎmùû‹¼±àÛ7A„9ù=Üé0
ä²3wŽ_ú\‚ó¥F6wŒnM?Z'8V¿´ æÔõ¹užMuf‚.íԗن@_¡EßڜÆÂj8àzã}OIñ¥Fš2;A6»ÐËÿÙ/¿Öº®#Š‚ûÎKÀ.•²ÿïÙí“d·Å¥¡ÔÔPŠ‘eŸXrpRû¬™5sêkl‹š¾„ èj|îÙ{ϞYó[ûÁV׆а5¶Y5YmʬYë¾d2tÑÅ}”TåÐ8ÍÊûrӈeSS}57†I’ÛàFBî¹±B/Äý*«ù¬š5Ñh_ O’ďÐk/û°kF6à Աðd‰Ì!D%z¬Œ]½1ð
û4ܓ)ñì*û´¦×²ƒ©’džˆ½@Ae†R¢;G^‹¬ ÞnVÄ,ëkgC'*uËÃe-qÁþ}Ylº}Ò`ÂJ'êN˜ØN£óמÃÖO^mM¿Ç,hæT©œãÀ×pNTpÏmßuBA'ÅŠÏΣFB–ì
+]­¾[=ƒ´Z\+¼šb,2âY¬µí Œýff¬+´8j³wK"à—èÈ°`në1¨N­.w�½Æ[«Ó«rh2¥ÉÚÐ13õÙä™à÷\Óýhe÷Y¡ÂJID¬ÌnºŠà¬»¿Hòg»%±©m]:‰x3�Ë
+4ǍÁ„án¼nKëáÌâ\xV86Ľ÷4ø‚¦
kÏâUm7L¸ßER	Lá-Ë,^ööì	]hKÞ"=ò=ozîHŒ :¤s-ó�®6„)l;àµäzm}kî-/«1Œ|ˆoaÍÀ�©G,a™•ï­ÞQy]Ýg1‚ЖìA␊ð\^ ˆáÁÐï=qéT˅Á¶¨ì¶ß7kc/:ÓöÍö�]„¡èÓp$Û×@CÏÐæR5:òÁ.ÇÁúrÊ¿ÃfÊ zp@ñáoÅrÝGN
 °W³×˜zÅEáf´k²q@!Øsžç↠D~0ØubìïmÖÒÉý„g·Hã	Aœ§:P좂°7?XÓ8žÍÝd
ÁáW†“ÍJÔÒ²ž~ç£î‹áà`?°µÀåâ�D讹øl4s!}@àFžòìF@‘%úÏ6_L]™§F§’U]ÒroÞþz•«dç½¹olìO£ò&ÕÁž	
+(¬T÷`[ŽœIoäÁ!ž5tëå/ȲN+f2•yõMñ}ÀVc—×üY*¶A³ÎX?ÁŽ×]ʞpüŒíÖ-ò\:ð³ã|×ÒgE§8‰£sjfMÖÔ`XŽ/ß¾zúõٛ·_^¾}ùúæâÍ»íwú¯¿¿Ý;{þúÙÕÓ³Gë)ÿîí»WWOoº¿ýVŸÂÏ!og?à}r£t…SÏkŸh
Û'j1°ÕN㤞îZÝ!½ÔA”i™߄7	áZŽ˅9r£1£¼KŸÈµ/Çá
*p½SӃáåüàvéP
+¶CžÄsÞ*…\!‰Nx°ÍÀåáüòsïñÍÍÅõÕóíś‹ç/¯nÞnåþv’”ÿ֖¶®kÁ  ˆ¼žZ"½\ÿíQ], ãv
+µ‚ª:qè°WC50¿ª"KENUNÊ:•V¤p$ÍNC§4ՓëCUùZŠáÕDUßräËMíKÁ¹4P:¿¼óªçŸ¼j®ªÇMC~àØçZÂi;?ÿŸ×ñoÚ+?÷z¾þöêâÕ7oß¼ü¾½Ý{pöèO^ûþõ›kþ“oä3¶û#Òð?/G떍w´ÆvÃñÎ9ÖdÇ»ñƒû^“Uƒc}óÁ;ڍG:÷Kˆu•ß­,E- òz홚mL~Öæ}-;‚4LLùŠoÚ~éCSxp˜Âê0öNë�ÿ6	5Àö>²›²¥âXotš­rdLŒw
+gÏ	=,é#Lâ6¨Jý¥¡Ã‰}L¶’Nî©mGð™CYì*‡Çó]T®&­QQÍÀêl'ú°±ø€YÙÚôJÎ(`5)xL=$T® ²îáoàX=öå6°nKÇUuœ»®{þÉëæ]ê7¾º	]­¥{›C›\èEJè…ÐIo!tR]Ó¦Û:ºˆ™Q
++R]çJ4ÞÔ«Xº^Ù¹b‹®B×ÛX.t•x­JW	`¸êIŠU¥óTz§P:ۗFÇZÅ5
Q(taAßÏÀ—:ì;—êǺ+ZËÉqÓ†9l-5çUgcMì,ÎÆæß"ß9qÁÖ%²±¨Ì~‰µÌ¸/hÎò›]=n¯w
cÔìDfY¶+¹‹k+Â|™#ˆ|÷œ&¸æܽbÒh~‹Ýíßû9ø¨ÖÁž¥
ð²eZ€;ˆÝ	8«/¤HìÂöð»NkÄ[Î*<lŠ@fÌAêNJ?
LÐ
+ÁŸRŽ|u‚ðMðÖÕ«Ð5/ï¸æù§­i.Ä*€æK{ïW‘;*r¨Hë	NçŠDYס­VŸä-ÍÀkõ¨:ñÛàpW+cƒ‰áï=WÁÒÚN]憁@!qÈ(Õé$¥YÙCÄ%
+á‰R!É Q)’›êBæit£Z#’3é £/�ݺáXk	» á»z?_VãP°“•M®!ôSÑU¥¢O²¯¦6™˜ µS%û¢\†xºVÛg
+ŠÜ2ÃQ“›§«tr›žLª_Ø\IJ·ž³Ãn1ãâ¸ÔÒÌR7U¿<[Šñâè»æôëRiæuÙ Ò XfÄaÑ°c;š(|ÚØNtX/ùÿU½ªù;èÿÕ	²ßQ9¢«Ž®Ufâ•ñ<†£ÿ:ò­®Ž@+>7¥í¾L¸î²Üù',‡!‚Jýa#øÿ¯YŸñÊLJµÝ»¿=ù;>}uö(§§¸yþÝ»ëg¯_ùßçW/^ÞxäÞ_]\__ýû>Îw†Ÿ'?~´ÿðç.P=@#³^ÿé‚á±_P»ûÓ´�øÞD-W+üýÿþ…§~ÚÚöÍö¦í¹.ñ­+ÜÄ7¨šS
+^%aYÁÈFµ“=ˆjƒAu‡îsí££¥áìÐ؁†bsD;Œ™è`›aˆ´º[÷ðÌ|V¿&¾†‚x°éÄû+Ú` ˆø¬h¿0ˆm{0£†#¬9Gûr§6—?
+IìTG f|ß"0:Ä56¤Í^.iÇHútZ†vŒå`»Zˆ6ÂX×¥xTgP%©<·Gõ`ðbj¨ hG®É«íݽPž–2ðڕA4ÇPêyì:ˆ±Ò9õÐÀqótÖY„D°¥dPÅ	,—F¯«L$žåÊ-YCü
+
+mœ]vRdb¸/gՁÒê<ÀŠ@’þŽö²Hx¸(^ù÷_€Š—¨
+Ðð6€Ñ¬·Ö`º7‘\‚TÅÐÔNzÕî¦s_¡V窕&�`ùˆFŸ5cì*TK¸(õ|@&I¾Vk½úbV9–•.‘”6kæØW.‘ë!œd¥8«·‚=Óq᥃åD)¹¬öW.N9%n°«³°à“¦YÍ°«{èaɧïSA|ô—UšãÒ
,=jl`Hs¢JCÂ^Z6í6€ÝsZVt–kkÆä6bê÷$ÝKa,ǵ@DŽè¦FªóQ¯¢Ñ6üü ©l…åñêÁ\"©‰ì/H5ÎjˆÁ
+„ñ¬”Ú<Ìà¬ao5L%Π~Ik_¬Û©â¨c`™:\ÚwQªTVCWc#¿¬^
+d*Õ.Qd¢ñí
+§¶©5!†Ep.«Wýþr—2¹	%ÇúmÊÏtWË®XGüÿÃÝ 	’yõ<`αA
+‹ì"Ëb	Ldy㿧º«zÎ	Y–¯ûÎéééGUµbEgn-œk°¬nA…q*A
+é�«¥úµ­É»�CÖS8§d·9^Œ|Áù¶³\èü6›Ž–p£Ôóº8có§¼WV®ÚJ¶
ÖBY…^}>ÎýÒP-œzké'ފ\Ÿ2Ô©ÁšÞX]=èiUæ°àõêjÇÛ¼x¨DCì¥ôÁœQ¡³
+¿±‹^ýä¶Î@Ñ [é[ÉC8{¨[—>3aè#k‚…F…Úm´€Vi®T
°=Gç!°A'n£NgÉô;È…µ|Q¬ìjåØÑ÷½1¨é{«ÏϨ*ßY3%i™šJ«”7kÜì£N¹zÁJƒ‘–5ò¨öA”¬ŒÌ?^'ºì¶Æ}¾î/‘´ž­^ú$ß4Ÿ¥n„€Àºï÷©Ð€Ì¿Ç§=û ò̜‚íâþ·z@’(hñÝiI!4·@3…ÔSplÀùíßîÓ,}³s~¨
\³”UX)¨T88B o–ºCô §e˜Ú-ã²lH¦Ê}nìbOeúe9«ÎþMJjΑÜ;o‚$ª¯:hMòp¹4èFåÕRhžx©¾PÙC5¿?ºÄÔ¨/1Ê6³…ì´Îû›¿äöТÙc=Ggב­ï™NÕ¥}¶¿Š¿×L«‹m¦üyo(ü’ϵú‚”üßï‡SD ÷M¨rÀOvpq6
+£•ýt`­h–ÙªîBW>‡Ù¯è¹ûy­øç£êóæ$¿S‚²K:ø&ou~]¤Êç—Öî]åȸ¬Ÿ4Sú¬_�õ¸ÀƈŒt°o«ÌëtDPTÜ;Óßâ·v‘*«w�¸¯
ÃòU}R0B<#ˆ/¦¬H›.ƒx³—œ”tbYí¦08‚Bد…qú*°¥®3¬¹.°`B±—°§ëo.9HAiú^ÚN«0xúÒ¼Š�béà÷KŠ)ä±®rqœ¢»ôÔk‚È�s/Sa͖G±Ì‰ÙŽúrºJ¢4rm5•€éúÙD
cP1MHe+27è ^¶m>`š`88ç•gûÍÀ¹âÆ1{"0ópꮺÌbÙÞvzegyAWΛ®ޅMßo¥ PTÖLöѸ|Ÿ%¨­q8w'åMW4mÓ²'£œ1pã{ŒÈL¬¦õF0¡®^b5í•âč¶=,¬‹wŒÜ’ÅÃЗtÚÑ44ö¾2ªLnÃàåýS²9–P-3ÈÊ^¥òþ²ÈNÞ-Â{HV€»	A>€ºÆĬú¤°S(ò$Ðç6AèúÀÉAí®<¬ÝO[ln,3‰æ˜)¦`+…8ÛK=ÃX0‚‚#à4Tñ:˜å„Ùõ<FÝ7n[ÎåPG[ F–p•Wa $Ûa¤îóµ�	8*!׆ØVl	‰0ÞÕf<¶â)ądŒ#cÂG´¶ª]_m”�(N‡K˜Ãd-gè7—5“¥+¬QÆPˆÉ%¸Õ›�
+"ÚIÂÑz£±”+†^Fn˜oìi^¹‘öZò²\Sy%±ô„"tA†Ñ¼¼p¿~PbcY`^œØØ°«ãK8ðIc
+\¯K‘ßdÙÜîŠE5E“0Yu(‡ 'kJ­Ö?'|Š$?;Ihgg0.ÓÁ¡6áru‚{BŔkµ$n4õÂÚÂ7¯ÁöÂN×»ŽÖ4±]’åaäÿC,æݱ…F6ðêé؄m! öpg^“脪•8ª3SÎ
++_TÇ4ºÆÏØÛjÆÉZªµßUÕ¢”±pˆ÷+6Ž�N£9�>Ø:{VèÙPMÈ`˜Ј~›êüzKö”5¯?ÿ10¸¥sUJS."Ç÷7ÊÀžÚ8žX(X/ê¼/çzëò¨Ž6u;·«|}³–¨à¡¼Š€%§K_¡…ùH\a]¼„"²Í$¦t¿ÇŽÝÖMwR†ÄuoCF6ndgV»ßGÃ|Ψ:kcŠD¡mLÏZ;h¡ØX¤ñx˜®½Wè¬öF/Mt#áÃêIã!àïªO,ÏI°l§§Áª[> ûÖ1¨0I·yËÙÔ¢ÍîèšD3¨âŸEêåýå9X­I6b=º®“.†K»”IÙ¸0j·‹Îá>ëSl·‰ŽÄÑ6	A?ÙCB	ýج]À“rñ`ìÙ)Ž¬Ý ž5TÞ [½®�`l¯žhÔ²P)eÍë N*ÄyßÇ`Ô¡%×È+±ìՔÍÎv™ÂÕY-t|­)›Ã&¢“Â-h~ïBålZ›èʝrD6µ,lÓ+ƈ$ïoFÑçÌ[òû*‘–³-1Ý6oB
+}K³v¥»HM{�Á^˜b;# |»Ñê˜O„†uÑdQp'¨1EKÜ<ݸ]u&…™ã!Ì8`”,¾Üñ¹ÕÀ*1œn\+ƨBÇxÝØFÙPƒ¹Ó‡Æb‹täó¯ê5µÜq•M3b©*‚/­•¶êëŸÕ”—öŒOZmÚ 5MW%fœ„Âð)£Ëî,i¥Vj&‡o­­ÖºŒñ>6A;ë:ØìmÔbÙÝC$ö`^ HȍXa΍ZўnU×n‹Â‘ºNuû¾Áˆñùí–NýÊåý&#˜bóþ¨ï{˜ ‰µªÊõ£‰kÚ8ØΚõù%k4§fûiGóLk,ĚvÔr‹+ÛÚ×ÙQ³{B¾G W—¡¿×Ô2ÖjÊX˜mqCÎ÷<Ù~‹5ÁóñÔÛ¿lT¬OOÿßßüê§ïþðùË÷ßùøïOï>}ùLß|ÿë—ï~øòù㧼|óÃÏï~ùðÇ~øô·¿¼ûòóŸð«ßø‘?ÿß#ýúËú=þ¾qDJ»În€tø sûÿ|)>›\w ­?¾{SðóveSâϏ_V`5µoäü_B€³ªúCÑwÙÔFK£`	‘– ¸Bbx[t�íۆ�רdüd2&vŽ½íq06­UŸ#vjUçÏQDöxÙùe7’5TðÒÑmÝ譗–Fó½#ŒX\í~Ÿ¼Ô¹]Ê)Æ=9Ú ±Í°$Ϋßíëxž!#M‘ׂ¡Ñv5úâå㤥«Ž†ël^¿/ϔ×Ðc­jòB	sœkÙ¢¶¹Ú:J·!c´öû‹½}pøªDÓãÉ\-Á»ZMhñoêj?+ÍŒ“.^×ë`ïl6ÉŎ3rЗ¸®“Ċ-ýÙ8™àÅeÉÓÛm‚O""µe zI<¬¹ºR.·;qÂAƒ0VCÑJEösï·±Õ¼}ôgƒ+W†¶äÏ]SZÎñýV5L nƒÛ+Å	¦ƒ¾9'`ðeí>a·]i^'+pÅ1Ò¾{f%y¿öU/K¬‚¼ŸÕ/T³\ Š9ÿ{‰´¢7.G°pɾ~«l§	aëCÆ åü>E°™gaSaZCöLaD:8Ťä•ÀY$ki‰ì̲i4×¾—&ý⫾³aS¨úÏÎ.ã BÓzk¦ƒ	¥øòZõG.UÀ„ž`¥ÊèM’Oè¥/-I9õÕ·CymF[¹hrî£.ªŽè2D’"!R½j“…qŽŒ
+ÒFÀÛá6$°ëÀû‚¢"¸Pœ}‹`Fæü,–Ý=JçŽ3Èí°-WÊa‹¬ý‡êj¹•$ǁ´ρD}(éÜNÌu°ÀÞƀñ~ƒŒ ªsèz1™J‰"ã“�Œ´°ù~Ý@ËE3$Â4“mé´ëý¹¦î{3;ˆºU¸Ú@ø{i[1ЩÂΰ|?]'[­@ÌQÉ Â@¤
+Žùä-Õ¸›>ú„´M¹°¹ÔA@áM…ö®ãƒìÕV`'êÛqüZ¶U†¾žË­ž=^ʪ°Wî=oj}¯à±ëÑq‡jj«Ø4™Qþ]XÏU‰ Ër AÛ,phŠ#+¬ÛEš¨b@ñ$nŬvæúU%ĘJ!æüœ$‰¹`÷ô£õ9Ál·—çWà+í)to-áyœmÁ]]C¸38†F*yžˆÙm�mZ-ÐäG0„1,µ$‘J~îµÀi·ÔPù℉è«lo;Ÿ#XWB¸M%@ï)ð5àð-݌üÆ÷¡aê"´Þ¥ò´9d¼
÷)W$“м²Øé¯;/5Fp`P‚jãÈr­³„ç|m�ofµ‚i;‹E)&sMaà>	î[ZpÐ|I#‘³7lô°™&{×%ìéGW8¾¼ÄûN£ѵ3ŽáÙºY,0)q�ëÉ°þµƒµ=Gx>‚{¥Ï°NÃò'	ó³À^Õ²²ðÃm¡„G}Øu.Cé¯øš¤x	OÙÚ8îy Ä�àè¾u3½Ä Ž‹êcgÕ³ò­«Eík£vcƒû‘i{IJ]ãj·¦Pu>·ðŽ|ÊDm')<úbíóšk±·ˆ3BiIzÀÝ«“Ã1³ˆ­},/TànUîSl�ØìjÌê©gg
(²ÅÐ\OF@*IÎô]ϒã]}ÌXƒXàօãzî;N ¹…Õàà€Æ̳A¼F€[†uÓÉp¬¶èM±—X—«/#?c)>i¯¡)SGØÅ2ÑüB³o¼"Ïö¯³~yGvl·XŠtpIýûs®§”÷s‚$}ÚÐ0‰<A3Wޜ"D€Ó*‰µgÏqae9ÇËh®ÆY
+©ï¬K˜&©JÊ;ø(˜@€/Óš¡ÔÖð·jÐÆRt=û·Ï0Hà6¯(ÌaÁB«HÉዦõ5gx¨aô¦Ñ/ɝ™kï}XvÒp2lrO,kb@u±“nF­z¿µ9	§Ü<t–‘ÐÚ»Ø=åàܼ¿ý¿e‚‘eTrس<å¬6ÄÚ¯kvÁmKN°5X¬nµÞ‡V_nëìzdwˆ-g[¨5cò†¨0
+¬ºœÝMÏR}ÒÄêþ灗2‘ÀAl5ÔëýEò.Àz'ÖBêýš—‰¦nÐcf`¼k…sžk
+›îe<³‘[uƒPW-ŠÉá÷!ÎÑ|½Ë\ñn#©½ï_g<¸½©­ü˜œ}À‡†?ìšHsÈn²-­V¥Õ	ðz	bÀIYÙØÞßÇöVYS+
+êË9ß¬{ÌVqÖTéh–¦hÏ¥îeöÙßëÃú¦µ—§ˆ ¶Uþ¢HäÚ|´S¹õë�އø¢µ];`
+
+ð5Õô»&Ùí ‰òÙ0Ô”pR¡„çGr8nÉ¡ÇD˜•ž’ʶNÙ@g¶¼‡@éXÀ¦KÌð¨Ë™â[Î$€
 Ä"âkšŒöBë`"à˜3Úà€|«‰2óÌÑ’ob
¡VpMQúUua€ÍKa{6±cTŒÃœÉ×1o½ìjï$,ŸåíÂ
wm»À5¦X4©Vˆ<ûÕ¿]x-ŠÎ³mkÿ&	îa<˜f2°œ& ¸C™õ¦‚Ú±·zv.z2QWýå ÈÛ¼þ¨2<àU­«+lÏgy~lŽÁše­Nó“D*Ջs‰Ïóæq/GêÔýŠˆ}˖ætÛ0õàX$,O!‹^Y$rðÔSߗ»"M*=Ñå	bb«‡Îšä¶ÌaõýƒHø÷‡}ÖûÉi	b2ím çÚµg`cˆ6Ûþ˜¬‘”w¢‚Ÿ÷/÷upB¥«øÖÚK úäåCæ¸ÿWh#«Z§ñA­7êLpnú±¸kA Ãñf€,؞uy|ò6º^Ïà‰±`ùfü¡U»<},@È#‰ƒ–Œ¾TŒþ¾ßׅÝô[pÜìø‹[¹@Ïó‡Î÷ÏRòH¯óx�å	Ù½ì* fp—]õc`‹ð˜y«º*Qäú)ðœT€³•’߄ƒtÅw×
+ÄG©.XʲU#5yÛOÈÂGJ„Œ»ŠèÙo”Ù¯À-^àìà†€Ç²2n]O¢ˆÏàñC‘XƵçåäZ"œ¸œ@Te:Áô’'o01Óž¡!t±þ¸!¼³´Óµ	^9‰ØæyÁöVýtm7’^êxšZÏúa¾îluN4¸2Ö	{Ãh@R±²Öƒ$FA£Ö¾Œ@ðѹº€µFÖ:‰kë²`ʦÀì\^kD.€;méc–JžÔÉĶÖAúT8Ô¢@á
+„ޝf–Ô{Ùl~sKEÊ¢[9‰€{Ê[¶ð¶ú¾ÅOvû8k.g}@S;g¨C©ßǸ*fŸV$wÕCñ⊃™ëýô€͹MÂµhˆGk9C÷R§¼«Û«à]„‘Lîñw‚&jPÎpâ–^,êµÉÂAxجöeOâKÐ\2z¸®°1Oå—`Æ(2¾x,ò‹
Ðû§hÄIÅi×ë
+}&àQ4ÞúáNaûêÁ~ô~yÖû²þ.oÊn=ïƒä†ttøxP¿FöàÄgcIóöwoSœG÷þNà/(µ”¼ÄÒå©çz÷®„}4VM<F“wö×õ©(e[*à‰n`"¼o
+ï«�ôaPˆÃjD6!ØÞª–óhÖ_Rj˜3}[¹Ý(wûÃyŸÃœeM“Î
xQn$7ü,ã”Äœ»R‚ûæ}\ƒvì½ÖÒœ¸°¨»|ßáäýþõ¿_©Àë'‚ÃŒnØ­öcø9‚LÛÏ_ÿjù?âøﯵs6_¸Àô0ÿníÊ6eÌì$«ÔÑv¹µ¬bšœW‘´Q4‡Ú;¬E9A£ZD†
9b
¼¼E¼?š|¤((.bœ
+^{œ!ºÎ\“µµþh1ÁåçÓ¢vëZ•ñÐneXÃmÕÛ>ÚUkÍõ(„}ëÑ%VšŒ€Šmã¼R&ÅÐtqá>™dP“skQ[c(áùyßfÓ³ö©¾ÕÜʈÚ@;.w¾æ¼Oڎ6ÛA©Á%[aÞý
+ƒ	W¾Jµâû¸Íµ¼‚£ÐÂÓ»Ö´:;•Ü[ñ,ᩀÙ}ù{ý*³ºÐo¿Äæy÷ß_”DNmt¥[ÍlÒÔ>0ä÷•$h¢NŸ™ˆœwßéÛmGw2¬ð~tÓ6‡¿ïoE°þ x利­‚Dö#¢rÄ·Ï@±Ê<9à0†ôêõ!pâo±gˆåo-àv„JP¶!úmóԚ<Urrä‘:�‚Ò üL¤¿¥Ý‹OÙ¬[9{hS Ïû�<´ë°».Ûg…­òVvÔ©¹©z½ò©‘ÆèÍÎè¢ÄGsMœC¹_†Ö4mën«
—²Ø×æ÷R‰Q³·>êý	;¡Gûv`L¯EG§,#ˆüŸëjɱíÆa+x{¨
Tà¯dß&2m4YлoJ¤|+AÐAšu®lëG²´-PIÞXäí
€ÄFÒC+Ðu¤oè+Bƒ”.ÈÉ—[¯R	F‡UÒ«$œô@Ðl(jJ?‚È°Š
bPµWA´‹iܒkëVs÷'a°Ï|çcˆt>X¤äõl&¼Ó÷™Ac_Ô +{Á|@è©Î[ÙãÊpµ›“¥Å_‰±—´
+ÐYïó|cØ\£YÃ�+�Hqˆ'X¥Bfçn…$¤íM‘„Å�'$ÓaË‘6´³_à±Ñ´†ÛîªAÀ©Rfvò@:ŒT¦¸gž´Š‰�gæ8^T‡®Y<!Xàô¢Ls°nð™Ù|»Æ>ŽþÔÙô�¬:j2“¸¡&£¾hwhºö©€áÛDulèzsm—¾9È�á4YD¥/«¬WãrLDÊTJìåtÄ0œÏë{ñH.z}qKЫ¨»ùŠÈPAØ/îFYêÓ¶(„öãÆð­FHøs½À7™¨ìí¶¡ßB¡ï’Ã7Ù²ÎƎ·B¸×94½v­@€‡•²¶ñ~‹ïK°DJ%f
+žïti………¡ÛKÔ샄°$<Öfî'45ÔÇÙJ^	ôý|R$2K·=py¾Ó1𵞫6Ê
`5¦˜,lB\_¡‰çž5»ã}{ę>lðÎ9
 x²ÍFÎGY»ðcòÛevô­ë°û¼)ŽÂÞ mGÝ�c4xÛ²�§¤E€Éüÿä=A0~4¼ØfJ·
ʐ¸o…¼n_zv‘=;½×k¥Í£—Fõ¤
+Z)좠@3¬ÀÅñA[žvÔ¥²ví8m>àžQ˜ýÈ]ìª,0¨Ž!³Öš/ؚ‚Çœ€gKõMtX ¬UXgW�ØGÉF(šU´‘À?C*À>šXÊ+p†TOpN«%Ö€Ü÷íWÝjJžûýü~6ô#‡pw½¾Å
+Ë"úÅ^Y%ûmn®zmu`nð\‚2S~Ë ˆª¬	Ü,wüù÷¿~ù––Ä·vª¦&`iôùÃ
½+1íPx\¯Í©%èc‹QÎý|h²íèTdÌÂjgõ÷xÈiÖõÇÿJÉoZ|‰õÖË2Úçì5–8¨i‹¬š~ü)Àޖäí>UwIá¤ÅN/«Y²½Ôa—Àv;eã°m’AsV¦ýL/mõÒßG	®Œô_]À:É6ØH鷘ÇKð´åº•MF
«Pº7Ý«ÏSßb‘–<t®WD=]B©ÈbJ­Œ•d‚½ä©vS€w*-˜î49ƒï¡…õQÇ÷^çCgk‘ûAåµ:9À“(E/~Zà|©«&y+}Ü|÷{à®[Ø
5• ?ç±|ê’ÊJ1”Ñs­A,iºŽ¯«î?pýʟlØ»F˜±¯'¦Îgc¼6AÉä6h¸Ö¡>Dš«f¬ˆKx×ûó‹ÅKíK)�pʵE)ÞZÚø	#ÃõíXj6’@B¦¤¦4?Oߘmi¤Ì8uY)ðð)P‚õ³>_€ô rMïSŸêŸå‹wÂÚº¦YM«Y	°·/0KCߖ;Á\ßSFß%¢ï|¿Ÿû.¹YŽšÅŠý…KTÐñl€×
+I/¤¶
¬Ëˆ%«LgúÁ öÄÝ:uý&ÛK}G¶ñ¦ù¥4^……€#Jð·~¿%xq½A
+ÃÚì¢%Hó
+Zê¨s2€!A¦G]c©;}P`ÿŸU {"/°–`±!Hâ‹e
ÐÎHõF
+³³Ž1*�Z¤“˜²Lfu!ôãGÒŽ0P¼;VÚÞ%w$Yoµ«{žÏå۞£22ßÝçjr&-¦‹ ôä¡AÛÄ")ú	p5ÔéWƒ—ŽkWÎHëÇ®´}v$2ö “ZªU©зvZõD€›ƒvªÿNq£~שÆéß\ÀQhmzj¯ý꯭ŽþCýªWÏÕ®jR/¸ÎG/Œh…£•ˆj&Çó†vÞ4¤³‹�žoS«�t.04 µ©öLª«"^‰�Ìݬ»¢rùª û‡e_`´þø‘>­¯s>µ:Åt'�s°§.MðÌñºÚ_NW¡lî$ÁjA×úÈ£ú”B;»%o@
PË6ëÔñªÙ‹X*kæeOþ:˜¹½»~Þҝ8D‚3ߏ#[`ÂË	—†Š ˜©/zR?u>ˆ>_µP‰³_€žÊ6Ì^
,L€M6À‚á{FÜUUÀ‘çCV~úçfùµMþÿ4u(ô½ü-P|	Ù|Å_!¡ú\£¦Òcæúz맂O}êÐx©*„ìõ0¡ñüxªœ–/e·ëÛàÂe÷>¥+¹)S·F©JÁùN^Ù½wéÕ5M`’õ·nXÐf«÷‚9*'vA¿Ïu£—À0 pÀ„Œ™ àHÌwŽRO‘&‹cÄôôªß|7/x(‚cñP/‡Ê—†ŠÍåW_^¸OÀÆö®ÊÇ}ç:EaÒAü9éUíÛRä³¾©òÛ¸ÕSX.(zŒ¹H€±å“WÓ8R¬Æ§~×eŽž¬˜ †IêÆ
°…Rô–(Ï¿Yk€;-DbÞ&1(™û~¿çí•ÅAÏÖüø¸kp�Gûœï±Ž9–ìà¤#ú´‚dmÊZ�€§ËÁ%ÜÓB`ÐÃäïÛÔVØÃ*hîoWR"‘™b]ÉZ­i[uéB”*×)wݧþ—‚2[twj€¥C
±…ãËkÚ²O€½²\è[ø¥w˜ÑÄ´§l‚‘=‡_Žö£¬Ö
i4ßÌČ6^Ð
iJf|=0”‰\@‹jª[­\DsúÀ»õ’æ½`¥É[øhÞ~‚ÉHç.Á}CÿV€Ý\2~ŸÞëÛ'ãW£”	K2™GÍÒááÊRóÅÅ´ÅS‘K[ìö.EÁú´Å'ô·èÍÁ=ž–”æt²Þß²§Ì2Rqê!åùÑsF�5žÒéDb]‡¢Àó•BÊ°Û´ÂL?ÄÝXdÆð8w–ÜŽNùýë¯_-ÜÂþj¼A‹&ÆÿûêøÏ$‡öõç~µøÃöøCüóçÿòP¸ÎiÖ±1ÿܖÉÀ€]yöÇÀ`»w•h‘Y—Ó*KK)Êúî[¾ï‚˜ó[¿·&û´BÀÔNÎMxà_º@
+t¶ƒ´ÀÖ«Élj$R£yµ™‡™û–ÄãH9›ˆàVGÍ7ÔÀ%b‡QC^Šo}J²
Ù·M¾ªb¼ß¯á:kºÈx3霁³ŒåGÜJE»÷º�ÞÒ	ÞãSàœ*AÛ×Þï!.TÃÑ\´h{ÎêG54lÂ0iøéÁ äå+¶'×¾)Ô¾‚qv¦œM|x’>²ÏÙbTüúõ_ó—¼þæýÓV]^8ò´è–�î=¦C©�.%çêU¬Ì5æT€uÕTÍÎçùFþÿáK"ê^ì@<{Ì:U�e`sÑË	Ԏª–hÚț^õwU¯UÔQåx¦,Ðݳ^åµ¥û‡Rð,««æØUÞò^š@PxÜ?öuɪ«ö]½üÕkª²“	Ú^ZÝ]ÎEÎ,,­oS"0ÀðŠº¨ÖŒö®ZïãXuÑòù®ËåȲÜ¢´åÀDðërb¶Úh'ä½ÈßÓD/ª*›äI8Ù)â_‰[̲î¼�HÖy³z@1K9@ØÌ@Gí4ÜbM÷ÑÕPŽ©Xà�Ö;¬ÕJ x]ëêor†¸Yx›ŠÿV§þ^Áµj¢D-У®S¶-úd55'Yƒ;®µ[a¹N0ä;µ»ìŸq–GÈ0…ø’UXï0œ¦ªèfí•x÷ªÔ<çHr…•–£"ŠìTŅ8ïT¯-ËâZŠõs'H½ŽUˆÑ}™R+[°Ds]£÷¡FòÞª®MÁ¢RE©`ÑÐ÷Qі*Ž™¿É»UwÊç@‰«z‰ZKbUm'0SûGU;­W®èáˆTû^\Ô˜F!£¶y¾zoëh,:–WT²Lh§z[:žZ�Ы‹Ø»K´ëz£úͧ‘/
ú²–Ÿ@˜Ò6›ëÉ£ÜÕðZó‡žäƦ}œ×–bÿPWØ´êQ«gÉ>Øubì䭞¨>µ@<¬K§÷‰àR=m¾ù»‹Á^
+™œì¼Gí س]ÊnZÀÔ4é¿H×'è,*Vˆyµ ú¦<T4NT*â]gߑ˜Ý,A0¬HEЂãŠy|Ì+,„]b[][˜ý¥Qô°-À|çR±½D9ˆ�}j¬óæó¾hÌ&‡âñ^ð»¢ÚWâÉ·¶ªuu“°v)¯7€¥8cŽ;0øå�܊µAy])ÄÝ­S4\‡ÄaMÜæ•�Ê6Áy 
~(®qâr¥(su¼ûê'έx‡S¡XˆŽI{m‰ð7âv À~ðy…¼Q
+5Ö³yçn7)ãK„øõÏ^×U
"Š…®@”4åÀÙg½,@ûœân·SÜöv�'µtÛÁÆ�MbæKÀ‘DU
¼®hbÿ£Þ}n«·Z�ù „q\ÖÙª†Ÿ¯@Öùá(½€ü…Œ¼¬*¡××G\‘ŠæKCç!Ržú{ÓFá>_SçØÿ¨Øpe^âkƒ ¹ÛŠ¥‹†Ct`è|ßîrœj!‚­ ?ùž€ñl©ˆ$½ÆZkÕ´þ¼%"}mOñÔ§¬n®¿½£õ6皍—È›C±füî´´|4t·%qÜSâÜí•à&’9áP¯Žå¬‘c•W÷t‚ߺhZ5Nu+‚{´î«¾Õf÷ò6JuzÀöû¾ZÀW¿û„ýj*$ååú¬ò¥PØ{Õï öáJ¨Í¢î؝Oõ@Ôÿ¡èã.Žä¾ÇÔØ	¯ÏßÏk¢H*”
yõ«¡kÌß^ZÉf£àôhíό,>ˆ³( ë¥	Œç\óç$Ü íVóGù¦}¦¤&3×5
+C‡Ökú]ä•åá1'C|¸ƒÌ·@e%È5@L�çùVˆ¢Pü2‹B="4�O`Š[«My«E«Y” åOÈ+âJû²-H¯]¢’Ú1Ÿ
+Ð˹A½×€È$₅Ü6
+BBÞµÀ¶YÏå'CS
+o²Ù›?{ÙÌux‰ÔÇCâx$?ïÛ{«±�Q»¾Lb~V#­ÎÆð|Øå÷х‡Øt³U™BŒAÑ>óýÖ%å�´6îe† ڜª¡#ŽµæƔں¯UÜ·©OaOž«ùŸ¶ëN¶RÕ0¤eü¢¥
1PÊ®‚‹¿N•AB†Í”8ÍÕ(ÍÅ@ӛ€«9	bq$0pN†…6`Yñ´�䷀×u¡ì«n¯ÒÚ¬M¿5?KN҂N«ã·+¬˜K÷ÒY[è{Æ1©@=ŒXK¡œrQ»4c	ÌaZ2|¨E0è‡ê¸ÁÉGˆ"LßX[áq¹À¡1L,55vY'uKdÙµ^m²ur0ŽbÝQô+8Þ{¹¶…«y÷:+‰1‹ШëÀêyK~.ÎUI„Ô´>ߥ†ªv®Ìò×	!¾úl»8êÖ·6VR+¯ê­‡‘!^6­~ók4!ãí×Xì1?†¯Æÿ¿‡ÕC¬e̋mUÑŸUѵå]LJZ€&;Çx¹!p‚8£ÄÂȸï¥b¬úÑ`c¨vŠU@¼,‘\÷"w6*gÏeëþ°8D¤YÄz@0ö™ž{=^íTe3:çùÑÈâ™!Aô¯$6˚Õ«W§“	¿\‰…ðan•óê¦'2˙đMyÛ÷è[¢®
+",…ú9äv“ºO¤Ö©Úäªð —uÀЮ-@øJ¤œ"0™Äô“ìbAA<–¸-
V-·÷³æøÌ·Ä!@´ª¾Äe'I'bâÚÞ9?
+ɝïA±¬Ðum%ÏAìë%€‘œ
?…4Ø×Ώ(p+…6(°©¸"=Ÿ«yÏ×	Î)¸ÐÕwå Û)£åË´óó¡$»¾Õ`‹¾,ç{P”I[IÃW}ûÃÉnÙµ‚Uò]³=C‹¦ûWnÎ,+µ‚i´¡“ä˜j'·›ÊpF?ˆn!4ö	Âáx2)Á÷/iœ!QV.ž¢çKõ(݅QÎÐÇ®u.�ZÙÉÞd—š¨ 
¤£„Ðña‡~î¾'”Ûæ¶ÂÚèPïW
¯»¼ÆÒfõ¿%îž úD¯D9Ï*^P¶µ½/smdçÈq¤ñRRkݘ¿¸2Þ_ÈYåSƞk~cÁÙÎPL÷š^ňFÎ '„œW¬bårr¤oãŒbòæÏ)õ´åjgêóPðn(š«&«x†ÆÛ&ÀämAÄQôY‚!Zóõ°*A‰/ÔÚ͖	«Ýàδ:N<©ƒ±â Æ(îɞE4°C¢‚ŠÂ{UDCnMc¯ªpôtæ%2¿êH4VáûÕÅBŽƒËç�ª©¦«cŽIŸ¸jWM¬÷—‚ØÎè³úU3íÜm´Æë]bë]ý2œ‰7ŸSŸÇß{™ÔÖêõ†lÇ«ñœ~5žV| $L´·Vb#„¿b¶Ü�[%QZìLAº«©˜ª4}L}%ò+þΝ‹@Ösîu‘±ÃÜðÇZSëÒbÞ©ˆð²b%סÀH¡£¥@ ?d…b“8k-"î’/#Ä®£B²D›ýýóï?qí¨W(�0)øq7Ž«±œ÷Ÿàn´üöó÷¿þ´ø;ÿýý߬Àëy<\,ÜÏ$ãö…fó²@D-Ð9gü+_í}l7çU]=AtGë G;Y«°
ù®ï?{´Û«-Bž½‰#oy™8keÖxÒB.ÐÆkLÍÊÐæU³‡ÁÄ]Š€¸.qÜ®‘ù)¥˸äX³j‚0·N§uJ´¦›žñjÕY·ób¬@Ÿ¸Íd]™jýÆïX±MØÌÅÀðpýv:dÅQªœµÄèEøÛ˧⼍>÷Tià@aÈUqœS-;Äì=úIÙ¬I‡lpÊе!ƒ� (pøyï¬ýؤ³çG~ÇÕrSYzi–°ŒÕ³%{ÀÁ'Ɇ?¸¤ÛÐÈ6(l`‡]â◢Íû™ïن ?€Xù•Ûu€`4§uüÕ”Ü'ê±vûˆ-@C¯=LÚn2€«ùlîœGëÎ6ˆ²H‡›iŒµš¨ÿ«gÏY„Æ%Bò}t†
++ lùT¢eŠ¥ÆYzhuλA>þî²iÍ"‚ð_y/‚!;;=£'5ċïb0‰!ä’ouWõAÒÎnfgº«žŠìEê	Ü'õ”!Ï÷‹1ës6ñE=ì
7WÓl‰ÏWª•OY<îg]K9”±£§t3i.5’iòY!ÞÆ#9ÆìVQ»ì`é„ÁZSÅÅwpñ|ŽGlÀ¤âÜ=BØ!ab´÷8*wžÂ3Áç…ô‹éºnÐË×i)ƒðkm3þ¿:z
]~õýüýãÓÅÝõÓÝïû«ÇçÓ[”^:;_>=ÞÝÿ<½¾¼½z¸ùðëæþÇ׫§ÛÏg§7¾äË—|{~¸á¢wøqå/P!9�ÿ̅“ÛNb5ü^p&ø_VÈ?_pè‘Õ·Šç_TŽÔ¡:?F±*ˆ:PÈÑ2}J/ý~Éa(ï£æl3Å[#È´›é/Š== m"Ždy¿¿–Ä7äýaV Ãj�ï^T’Í/¦r,<WZÞ\˜/po§0`ð]Û?jVr@ÉÎ,äEA÷§Z%m¸ø5çñ‚ vA%3@‡ðÊA‹ý2Þ,n-ã¨w[ïy4 g­Ím¡¨@5_t´0¸¤ïšÕ=Ï6mwJ܁B"T'{f”ØjÒ,ʹïcʳGƒ’ÔÓ’PÄç·ú®Ò¸MnŠ²ñÆMc¡-tóiKŸ#*ÔgìÇi¹ôÅøCèð6¦¨¤(˜Œ2Ýk×ÒÒ1—š F?‹IµÏãq"|_’Ö4b8õ¶ÓÉÇÑïÞ!Kˆrxæ,ÙËÚ%8‡çBÐ6"‚‡)‘y0§µ4é°Ð®"×Mp©nUR¬}•ü‚zLÇÀ·Ô–/ÀßÐ'´*”h»¤µL¨‚*4\¶íéÚè*u�’]~ÕVª¶Ž>וe¡G³ä�ˆ|@âà6ÖMgŽ„a”á^*Çt³Ç4Ò^Gž`ál{ôòHš`†2&‡¦»`UÑØnûÞ7,b/;‹Ë2ÀtãOÄì.dÆXë^§H»—•®¿•`Oóxœ€t$]tN:_hÄÿÎÆÞGSßvÌ�ÂE®Õ`ˆÀó#‹‚éZJÐÊԑ¹z–w‰æâ	bS«˜ŒXÉχ&qđÅ8b.¿Êc  ÝæÌ`ñBCÀ$VîðœZ­B’›ðëÑ.Ðä"’çØ^¸vn�[y/ùýšGv[kI™Ù5ãP+î†ÝÏßNž|JD$ìWVØÙËô)¶¬/ý#À�àÖ
endstream
endobj
24 1 obj
23298 
endobj
25 1 obj
<< /Filter [ /FlateDecode ] /Length 26 1 R >> 
stream
+H‰tWÁ®]·
ü‚÷wS ꉒ(2]¥É¦è¦@ºè®0^ÝÆ@â†7ùûÅá¹6‚.Œû0–t$’î6Ö½_ÍMoΟ&ºc;Á½×YÙ.k=¾Ixºö\ۇ×J+PbכÜ֚óT‘ÁV(o°—ÄRóKW.mWW#&ÝwbË÷Îíf×\{=xÉýûZ«�Ÿ	ꥭõm›ó�½Ön–°.\»¶åx`£ï[3»Y|ìp&Àu™7ÍÛî‰X$8ló	Ú|>^_Yõ²µ¹Vö6‚Ûë�ék´Ú?¯i•-/;®Í¥ýRÛy+¹\LôÙë�¹¶šv†KðÙñÚÑÁaضÛàØfŒlŸ~Ò
lÍ=”±
+éŒë]¹¿]¦›‘Õ9ò=k¾¥BP¦j‚‹(à.NxÈäڎx'ØUzû{Ü¿\:pƒG‚ͳ2æÕdœC·!𙬉´¹åöFd³:'ò½Î·�öÙ;Á¸l€Š‡;0<›¬Ë·öu(·ñWËt¡DVW‚ÕNpJñ�°ìṿÝ\+Ë,Ÿ5eÁ	6e°—Ý/˜¨nc;J–kmŠ‘]½	Ámƒe¼ÁÀû€=Œ‹R]õ±¬8ðw¸ˆÒŒ*{·¶
+Á¨çÕ3\ãZmF©É€½¹'ØÚ&w/ւ“ÓÚù˜â»ÚkÙá�â1=AÇ�¯.ç€q3Qí;´Gíèh™jœ'  NÕlœØFš•ߗú¡2ÀŽêaÎÌ÷çx2Áë€'k@•µw‚{´:`û¾›	¢<›E~š…ˆÛ6ñs*JbëI#À
®çŽvvNEˆ|åJ¯|a¥êˆ3¥áRè¼¹r#'„ÒÀë}ŠVâ�M
ÌìÜÉ÷µS8[›÷×7ž50u¥œ ÐW©µ<”ÜY®-ñúòNåòÀO”}tÃÝ
¸!”ø”e‹‹÷Ç?Þ¾äÙ
ÄÉž–ýËKßåä!ê6ÄâÍá‹çÛð͹’äG VéRt‰”5ɖ‘÷k£SÕf]ši8bhõ5oYÜYuͱ•„ÊΐêŒPïçó¸CÒÙqëå3a_Ô„tdÕûe‹}´jê3Í9@V´$f@¹–�-%ÖNÁYÔÁ~ª¢ÏSôqÝ%Á«×ÊS]-¢‡R݅,â‹–¬îµ:û<@Y<@ÒRt¿o@D“SÞ¿·±¨”(«¬jm=̙ìUú7ŠHGÁ¥˜æTeÝÓî:j™”Yªj³q­€>¬BƒOY–[–gÏØzY«=éwðçmA.ˆ9èA;žëìF¡Ë¦^ Þ`²à4[÷m—
õÅÎU1ç
O©4l…༜T…¤J’ýƒF1›RŠZž`«×‡¢ŽÉµc÷[Q)~X«ÔS£{‚ô«”†+´/hV©\Q)Ïœ ÁiÂJ·.ëd†¼¹õГQì|{(çJ
+¢(w÷[ež„Êѓ@ ¶/ò²S¥ñ>([òZCr¿”#�,tÁ�alwJÜi{	¶´Zvšw eÔÙtÛ –±¨ÁXÁ8:=€cƒÖ)†V~9\ߪwVC4fZE<�ü‹ïïcñ;‚¥:ënaaªò®�áñ«ü¶x[Ô:Gµô?A–¬´�EŠž8À§šâ:#%݆·š¨)Å°Ó.£ßK£z«ýP#ÒbG?‹bUáÚ±N9jHáGk­á&Ôï>9„LøibÒÂПÎ}¤ÛÅ©-¢qrØ&›DÒ4[[ԀeˇµXUX½gký½Ž}©‡Øõ}
+ý;zˆtÜ?sc}êatÈtÝÑLáóRcDÀ”́¸*ÓV½h¤‹*Š+-ãñ[¯äãð^Â>G±Áno¶Âkgáò�îôF:h¸åÔ,`7D9
+Mâc«øÈi"ê.‚^
ÅZg‘‘zÏy$Üëtj„Œ]ë¼rÐì™Ê(±žãH4ñ´ýx68à¬%ôڙµÐ xw1!Ú4L‡Ä™v²œÙ<7Èb’\èQ¯¬%¾èësWÝMM•„cU,°ÑŠÐj5e92áLm]³l،Au7œÅôl=Ÿ½�‹êü•6råm£}NWšš=Ë)õY“*`aûÁËÔÊÁ˜táZËïŠ(‚PïrE¢íoJzñ÷>y­áÉÒ¨²–ÚRê¿gǾÌèëìmUƒ låà1!ÄO_“n!)”ÄUì8“KŸå5¾dR0òÿü滏Ÿ~xÿúéý?¼ýøÛã[@_}÷õã›?}|ÿá?¯~üéí¯ïþüó»ÿúÛÛO?ý凯Œ%ý¿KþþÛ¯ïrџð/8?ÁŽà<D	¥`P”Ï=pþ(:9ZَVFGŒîù	ÓÌØÖ]ºSQfžàÞ«$Â[Ž¡,€%9ð
+`8±4Aˆ½ÒAÉLjþõÊXŸtX5§O³j©ø*<¸±\Pº[Dj¢DmÒ¿„i{²¸GÏgá�eS×l5§»4ïv÷ß53±ýžç°Vc°9÷n9¢áPÄ“rg"½Ó˸AKÈmib×sD
+aßZä”~3Ž€_i̽ÓDØ¢
…jý³ûÊA q¤E•ê­ÅHu©zßÞy«6oºÐƒ£“ötѪy¢¦eªè¬ðß½LXx+·âšÍ%À•lӐ}+P„+uÌbÛº/ŠouU‹n!(¨Ôpñ£D±E)±¤q`˜ºËn Dè‹ÛޝÆƁãb*·j`øáǖÒpáZ¢¼*tPÌÖ(Ã5à©[¾³„*áØì$+êuE¿£!%ü:˙lƒÇž?{ m‘θèÈ.iïœhC_R¬-¦È¾ŠÍ–í04#CR–fÌòô"s[»?¸‰³UxÙ7¯qF²ù<é•Î"§™)Á´³Éâ[%wхéòR¯¨ïœœ�ïÖJmãØl²€¨Î‡Ö4~˜x3û–ã–¿ÜfôÌ`Nzºý™÷(©Å٘öƒŽMßÓОo·š1Nmd#
+Ò1Xܚ‰‚¢¹ƒ¿ÇÝ
+wîJݜ«ÚÇ¡µm"zÅDÎgÁxdµd«9)¿çêًcϺ;à¾Fù„”îsV6¢uó Àœ{£iÌ^T†×-vàEÚâZ}zÂЂ=øTÇUo"ÃüH	w¹7ꃅéäþ˜{&úJAÔòÚì:Ç‘܍4ã4§¥zñä[JÀXš”ËÆ=
fL£¡HM¨_’¯lø‡ÃÑmÃ]ûóÇuEƒ{±25FÞ"±­‚uΏ4-<OЗ¯²Ë¥'Áí-TOOv֓&–ïˆ'e—x”¯Ò@góŸhÉ7Ò`ÉÂþ?櫵7®ã†þ‚ý÷K�9@œy?>ÊrŠÚµ‘ŠA`8’b;ÐÃp¬ú÷=’3s¯V-E°XìîY/Éáã0pphŠX-͖ݧ’Grªâj%e}±^§´Ó<.¦J»Â’66:+혶©C$J‘EµÆ¨J“.^)©ûQx˵¡­	«Aõx«™F3n´[¯YúàŒ¼óʌ/:£0„Ôoý(‚`«Ž~WD¹/uŒ•F·ßZj.8ÓÏ[¡a4a„ß1ªUƒp[G<íf¬Às§xe#ÐsE&?ښ”Ô¡À%Óeye£¬ðNŠ»]ƒÉjËÉA÷8Àí˜]Öl‹%Hu-o*/(‡¬Àô™]q‡¾4bCpJKƒ³L‰}-•«Þ÷®Ad6rÓ§sÖnŠðˆŠyá—m/.W²IõÔ]+W¸…È—	–NÆéNÙ¼FÐT'y]KÕt·}g-L‹DÖ	©-YʕˆA’ŠDi´ÜAkeçÔ©G-ʯCß÷&âÔ×âûÉ!(§ï–XúºöêNîßvŽ¾à¶órG7Áï“Ûv9'g»´<XN~Ä¿µûêð‰5¯¾»:;¾½üåúB~?:óîJƒ¿¿>}{óáüÔâ}òiwƒ—Y^ìôÊùóäp7ý §>ŗß;[>-ay¾üô³YÎHÇm›•º1f(‘ëËؾQ‹½Øÿi“¯//Ïÿæoçô±1ü뛝]ã÷÷˜@¥†Æ"Á6iµ%pL¤D4$„”ÞëÝë6ŸÆUáV$L”KÙ¼Ö¨+K3‹ŸÉÞFuïQ8Y”f$b‰]5$ÛX܂º¹í‘;kë\Ó*­c#ƒ¬`À~Èæ=nmpoâ›åÛ'W—ºÅåôúòýõÍÕÙò;¥÷ry}6§µrã¶RÖڸǥ@ïi0aU€Vˆdn’Î`jHó,r±Ö}N%‹š1=]ûé2®*iJÒ.Ú1шË[c§’àŠv-‰¾êü¼Ë4ùևiV«›%ÓF’°²ÁŽä.·’ΐáŠyÁ¬ÊMn*’=@û1×OÇn9¡*º¤ï˜í˜ú­×ͧƒH’g*;–öœÞ÷lB·–ÏíæÙì·Ùcå~Lýv«Ó–29ÛÖ¾‡šJáX€&cь.Ù÷+ÃîU—¬­hð1
+˜ïy¼³lhH¦JÜÕOÛDÿ½ÊE/Ö(1Íàë²3ꏵh.S"Vϓ—Ö<Ù71y3s{ró”eû-OJV§Úè(,M¹lDQµÑ1©`åœßœ¯¶—5Q¶F2(&äP›
+êy·OÖíQêö>ÞuKCi-JÊmÁû…©ÒEjj¤œBZÎ±_AVà*i#ª-¬)µ¦ÞÇó;Jëì¦jJÝîæ>­è³wÐ@iÏ%•˜ºVêSDˆ)©«AùüKžê'Uåa˜g^
+h(¨™.¥—Ú‘<¬ÑÈ[+w…‡™"eU3/uÕôàÆe`zϽÃkœFQ¸š¥÷YJýxÞ`º}å;’±K¦Žm'痘È_¿ü|7äEB9Ç6ó(”6(aáa±<¢Bß,'01Øb3ÁeÈ&l5
t`z5¶èàù©¾Ù#›1@‚Ï¢Õš-˜dCÖìqk€/D˜¥|#ÈÃX²FvÀîaÄ구Á€B
+q&Vp´QPÆPŠÈ–Ð	@/Mo’¬³K}Í2C4è&0*è· _.í´Þod1üq-0«k¼¥õIwSc‰V^Dq‹°¹ý>Y
+]­)™Öx2˜F´‰yU-Iæy†µÉMñ• P“Íf_ýÄ-øª«ì€Ù²E*Õ¼=Îê}ڜ§Þƒü‹"]õB¥*
+¸UQ—žJBˆ[YO”Ÿv8ÌöRـX"f¯ÆáÖèQ±*›‚ªjìcñ.#ò%«ÈI/qñÝ,•t6ðHJ´"Ù7²NFemÚ`X~î`œgخη”k£:2Qš@ªÅT{8W†ÁTf:ÑƤÉéCš@Md\©]ËRCA˜Y«¯RÌ„
<Ý­aJ™äײ˜zLUWPÙsœFøxT΍lT•½ËEfP¸}²~ŸV¿ß1ckun-¯[ƒ›ø­œ}¾‘4ÚÁYm0v…i/²w$±} ¸D%wþÑÓ³ïcJÑÐPÁŒKRÅÙÔ
ˆ¬'Òp´[ÿ˜¬pš¹.�ë²Ø&7Y¯³ö-
ß�éÚþP ëFò¶ldÑë7²¶½Ç·Q@-Ã墲>äÌÍ%Ž±Ow:zîÈê衇¡.¶óȨ‚¿2Ëc¼_ìZbÛEçА±²•àC¿-®š\¦:9ÜÙåéâ–OÒLm]Þö÷rSlQºØï^îêrð`9ùß¾"ó^}wuv|{ùËõ…ü~tþæݕ Ï^_¾‡_`â!Þ'Ÿv7íe–ïa1–2
͞L+í‡ÁUЏlè#0VзO^ã”%—ð:¹Å§øò OKXž/?ýl–3zƋÖ1FkiÖtuv	[	˜RÛoŒ>”>m[$-ºO
bk¹°Ûiݎ,–6ër6‘—ËƸ=ðʀ‹–.7t¹¨¦LnÁSº°JÅÛ\{Xȵאù†(ü¶‘)º/ø—Û?ŠW/ÐtP˕Ÿ–¤£Õچ§‚§¬c»¦šWÒD<hdMZ¤ðùŽ­@ç%Gu6*›rXYÐA± Û;KwÇf½wÃ@*î)½ƒG–o?~xwõf98¦rytq~uöÏ×ß>yÌEsð{E~¸}/•upøìÙ^±ç¯?ž¾ýáúÑù¯×æ*üê•]ßóåúêFÙñãrùzõr1¨­oƒš–Ãê«^îø]´8·â­’@ ­•c³õ(±Åè1£ÖÒÕÃ"Z)f½T+4AÆ‘V·Ìz©‚‰Û•ÝæYzr{轋ÿvÇÿŸ>üõãù‡ÕS«ÖÞg貧–Æíì•õŸh_ûŠÿsKÿó
+ÿsËþ³‹þ¯Vò£Äs¢[±&è}ó3D÷.áuÁ"ðÎY¾OÚ1A'˜œGi8Þº""bÊ
+´dK‡tÀ(kCÞ¬•6Hĺ,³Ԍ08·’¥u³­€³Ö	œ-ðlm×:ûu7t©}âƒyTŠ]ã)F¹Œ?B´SéÉPá÷ eÑV‰è&˜B“±n!s˜‰ÖPW 9b–(v´žñ³RŠL‚Ý
è G™í[ƒ²Î€ÕCÃJëNt¶µ+½º	¢°>ï)d¹ ÎÄ(¬Ž‚܃XŠ§CAcŠÄJä°L0E¦â"ƒ2÷‘é Í	Ô¹•(v¸Ðja˜ú«VŽ¨ÿlA9Šè
+Ùø•,u…œ4ÃEëÎx¶¶kýº
cna¤á'dYÂHµLã	Œ0†Ð’xÁ,cŽI끏ÌÛC
+‘¼Áȅèë	£äm1-éºJf˜E3‘ßÁNRM\ËRešàWJ6?¾£³¡]åìÑ]ï%€·§VÙ?
+¶×æ1âgšdñ©Jühíðv‚y}s…eq]Y–]]IU"0`xë©áÌZÛPG¡€BT«Oy%K	åÝFëÎx¶¶kýºƒus¡VÁ-ŠU&jŒ=Š9¥.41ÏEì»É–	¦ÈxR…)YÎ.®@[ÝÃdú¬î0ü
ÿá½Zvä:nèô?ôF€dÀƒz°X¬åd$@ ±¼
+lÉYEIÇŸÃWÝ{gäm¦ût5/É"É×¢mU3£AßÏlг¨ôT×å¬æƒ½:«'ðìÁŸ½ÝVÏq½ÎÁ5‹6Qpÿ”óÙGõÃÐlilÌ>Å!½žÆrq°¦f<6Áµ–>˜_€³D#Ò¸a<š±­Ö	IM%‹Ñ=Ø §Õ\<»ÇY<WdΫÕ¼xp‚o·Õs\¯si´1\hjîHçz¤Q³rºa§‘EbŽÑʖFéS©ê·e—.p«Ì ._ì"/0ÂåIL£šáš!øó7è9¨­‹\Ïâ¹*w.F7vyþ®n“§˜^E͟ÿé6¡=J†`Iíï#úC㈏	+ƒˆNpèZš�…9\3œ@8X“ÒXƒÑÜÏVë\Ù5ËÐ=Ø §�$¯-x9‹ÉJ´ÚÕê^<8Á‡·Ûê9®×9È4. !tÚ!—‰Ôî8©m®EîA"`”L㪲N°W[‰àât¿NìŽÔÊŒx'÷y?ÕÌ`Èí:46h¹]Ïb0LŒ‹«Õ¼xp‚·³Ûè9ª×Ð$V[[w&c}±u™ôMÕ3¦¯Ýt®ÞÑêk•€á+æ¿g@÷6¿‚µ–½0fí'Ð3�닮guxªàºX=Àô ÇJÂPÚb$­ê¨¨\ëŃ
ú%¦·ç³§p«¯sðÛKèãÿg	}üë~ù×iýp³°Åüù|ãûÛw÷?ÜÞ>~þÇÏ¿Üõw³òïwv·ÿñO·7¿:QñØTìÍüîÉ^?Æ_è²_·7å·_ê׿ø>^û×Û"µëÉß}/ç=¹Ÿýø2Øoþå]ïßáÍQæ¨&'ÜÙsJ¡èu­@K9õŽÉ#9…ï‰,žLã}Xo£˜hä¶Y±TYe×=‘A°uôÝðøú9UÔ ꀹßßÛ¦ÄP®ò1Q:ŒñÐU&YG§ÞXx,Wo|2”HÖÏû€™Z°ä&XwÀ&F«¡úL˜šP)n–!m›é;4•ÙÂìĆ@!!@‡»%ú(ççv×4›²¼»;‚8•L¼É	>–&&tE	;½˜§3&ð³H:÷Ö]÷•Æäf±�ô5—‹êQØ-@‰K3ƒø0
€D»¤]§]¦î6:ùÓ,ÛðP‡#›aàÞcåíÜğ•Ʌ`éÕܪ(¦Nqg˜ž\ÝD׀¢zL;ØGþù,‰¹$aCT¹çP©ésx/Ââ«kF},hŸ@geêóÅYÝgž.{7Ù]âhÊ;yl€±«ÄҖs	5ºfóÀÀ	tÿ1ŽÊ,ì0’ÙE̼ÉEQ ¨âQët³Ç:ZVôÖ.>-毋Ԣôg»«_²O!~k“¸¿åŽa²ôiGq©ÐdáÂz(ï‚Ë;¢•jFí²ƒ‚ˆ²:(¥nWx€¬æ˜­ˆ}E‰žv±€‘ýqæZ€K¢¦jn÷k‘DÀPæ3ì4h%oUfÏ£>ƒF´w2Ç4!ìõºóIlk¨ô¹÷ƒ¢í-)ƒÓÙ¥Ò5lã»cµšÂÑç/iwwjtÓÚ¾¸êíkªI¤n³så-­V©æÞb°ør³xJ‚Ɓ(_(Ùp¶>o
O#£cL"=…³Õ=;¹¥ä¬é~á-àѤ‡·’:gŽ¬¨ˆJ⃣sñ=—Q¸Â®f…« íjrY»>0š8Ì®±¢–”ê
ë‘=ÛQ\•˜&ÔÑSs²éŽ•	åÿò4j*ž[³ÍR–j´´îº^ÄÙ|Ħ‰t]Ð\Ï©ÊÄ\�{®!îi¶æ`é͕ú¸0*Ä3ø©¡bŽ‘Ï
'Ì3Uõó\A N>lÑß}¬`&1zݖŸÃÄ*5á²lG%Ì^ðäÜ|BÆ*¨Tïzí%C¦Â±|®IÕcöç"C̤-~rP#ÈyU»5ü~Ö!!™ë°MXÇÿg1ÿ¶Ò÷ɳT«O·L¨†€Át3–ÚÑ£ô0Ëq3Ê¡W¯Õ!k²ƒt‘@8@ѱðò&ž¦Ób¸D¥„žu'ƒÔòÌCMGâ r\&!óÔ+ì܍Ä×Øí`LµÓP
+0…z
+ã,2Ñ(>”RŠ°J®ã˔ÓS¤­5Ÿ(˜9=h7‚jÎ.š³i'µqsdB÷=nËåPY3·–ƾ‚ULæ˜u‘•H>Ef°ß\VNpOU²/À€	ŽB»/l#4Ç
+¯ž•¾\yrÓúÕ%<ᆾµ3$- Ç¾m%ói”K'„íð-ˆzçØ­°(T‹.TO±È¶º³o/3φPD<6?d^®Ëhsæ¢óKQh('8­2ßá,Goÿ¡^vŸ®Q»z©—“šB‰yô2zϊ}4¡\ŠVl^³€©´`óÎ~7:´ôî¥&Á6ï`&‚R9o<A'm›‹ž€B9ÔsBÀ•‘%‡¢”æ(	q\ËlÆÚJ|sí¬Vc+Ô´u8€¼ÏÆÕI6Æfx¼oÁ ì=hnýOcd`/Ãs7@UPê—).¼ƎµÅ	Ø#„hFÄÈbvž.e9éJâBš„²³ÖÑ+=SµèªšFhum¬2C× gUx$ÑK›Ñv«¹B.­2aˆA¢™jД^IoQ62î_?¶DXIcÂý)Ñx¸:,ü*õ‹è³À¸£¤~%ûqã°ë%¤®k¬=*„’×ð¹£,¥ôs€F™n`êÖë`mF^è&0^‚CÙ»VFåMŸ³´Ø]CÓëXò ”„8¨'·{rä¿1µ£µFü~	¾8%‹.-à–@AîÖôêÔ\³“/Ä	àõòf8¯L'2Tã¾$&ÄQÇèIvátí§p¡šÚÑ&+9!Íw	xö–ëÒ(Þú¤‹âÈÔØg ö’}¹…ˆÂ�î-.·Q4’w9+«ÇÌg˜ï{fµ¶‚µ›vPꉩ�0EØsLޚÄŽÓÁù‚,O×4syc`#o€ÒЉy¹–p;§þjÓ³ªýà«ЫùæíÞÿyÁhL:eñ
ºß>@­±~Ð%_9¦÷ãO·PY]ËB÷4i#˜[5æð
Tג˜ªèYñ%iiáÍ ÓR5ÏÛÀ§[ÂÆC•1ñBjÚÓ}
½øð7•CÈ	j»øMéÎd ð?k*ۛ~*ðæO°žþòFQW§UÆØú\{çºu™@Ý _œŒBOg5Èâk'˜ ï±Ÿà´©»ó¨lMmi[nÌ"gOgOa‰fVî_MÁ'S—V"9Õq€œ‚‡´(,§M ÿTȐVx~DNUÊO¶G£Ó¸Žh|í&:ÃÞãRõ*øŸk½b¦:©>ÝÎh]›‘%Õ Æ3êL–ÏRšN}I	£û¬{›Y¶iž‚Q9¸S!Ûe®àÅ«î®w½?ehÛjT…|¿f%@7 w¿5ºí|²zÏœ`˜bêqVJɨ°FÜýQ¶ÅyTÎ>Ý®° 
+Ñ¢««±¤åj'Xjõ¬ªRä%xqì€Ow«)ëE¼*­À·uûîþñ‡Ë»7¨å/¿ÿûç?ÿúådW͊fI}‚z‡o3 ‹†ÌŒŒüÙºp!ˆ ›•a¬Q±\4ƒoï9q"n5JÓPuêÞ¼™‘çç/?ý3ÿÕ_ÿþã¿ùÅþ„Nþ÷—Ÿ~üþ—lcüÿöç·/ø×^¿{cw¶¯©o/#~¶`W3žáløÝÜ^(þ}ûüòüð@?¿æë·¯?þ¹½~àê¿Y˜åçp4Òç!‘Cãr’Þ>4ȪÀ±NÙ�nMêŒ`hcdt´>SacgF«ÝGªG:™µ3Ó©ñÙÝÊsT6sÖÄäNf³llFt—i‹/˜ê.ÓrÉž ¤$ìêºoR!`—A1¬…Uat3ÀÀ(öOú3¸U!ÀˆKßÕ¥÷±Y-Ê°´<ßG2ËÀ‡ô:ó}֐ǃޢÃë[Cَ'h»â©7—ëª5+„¬?�âÞ"m1aLƹˆ.Žƒ±§Ùe¡Wðö[Ϛu¯ yG‚a
ˆ9çë=åÈ×¼rÏc‰ç6‰?s(tMuk!xpîW�㈭Yòáé&ñÕ¶gºüÄ°æ´ÄR÷9ºl~+.@ÇÎÒ|"OpQØÀ¤Óñ|îÀ….PjÊ)4zܬUÚ ž`‡â[’7žõ4Û1çôüV4I€–FðyLà>Ï#XÚÅ[ÊçQmŠt÷G·@\ÁìÏ
¨µ(ÝËjAˆLàšn€ë‡œ¢å³	Y-‹Î�|ºˆuÑl‘z}ç±P¬©@¼k|ÜáÂïi#kØÔ=¼æ,°]K©œnÏÈAéæÍнä¯w	 öºobæï9A6AÍùèH9Ø}5‚\(.6OX‹]l~Èâü”ó[2ô¸Àí~?Îï²PrdÙ<ªh€ Þ¯ógüÊöoїTfê·Òo´ôªmD滏Òv°:Î"ñ£~÷“ ÙïSP5ø=¾„[ASêG¢üx3>¡óâS†ÆΜOâ—›±÷Çk˜µ%x÷|_ˆÄVáð»­�{j»—Ð#Rv=y®:˜ì=™	rÀ>}Ð|`˜õõ?oclWzyÊeçÖXD(™{?N]Ÿ=Ś]§GSôQ[r²¥›˜º°ê²nB‹‚/úKˆöƒŽFA/¹ª­ê~t´ oܞ“²”P�N> =	ú‘õ¾lÏrä˜ûÞrþü¶zv›LŠz¼Ê’÷DGߒ°Ytf’Žåý)	ÂÌü	jИ£
+Ñsˆ¬ú–Þ`Ѷ+MÙUՖlk_åVvʵŒ$m™×ü1èkyªEâ
+0ÒO•0¬ps9BÖª pÐüiÕÛv‚÷jÖFŠÃÍa!xv²º¼CäØI5Þd·Rq–Ü¿u¤Ùt¬§&`-4dÐö�•R\]Œ®õî±¥xE€°}œÔÛ¯¾ñÜ<¯Êo˜‡€[Ê ¾´ÔØüI+T8ÛeD`—¡h§ãó“{²íöÚþašuY–}ÂґHÚùçã%¾ H~—û³)4Œ'^[mº@Ï êåeyº^»_ôl'=×ê:þÎë‹êN]	Æ:bYÜØJþä¡×öóÊNº¹ÓFÝÓ0/¯-EÛÆ=º'±>ÃöÁM-€	äŒD›"-‹¾¶ùÛ{r„ykÝ;Gîõ	¼86Õ²q厝§�vZúî,§:¤8å/Í!ÓL_oþ\@ž€´¿çŒÍ¢«ÖµA>yö–í‡ÔÞ¬@Íì6GV µ°Ý�¡¦ž`úóβó}
+»¾ßÊðp¢ÇB஬
ç&½ü†„ ƒs¨Ä&¹‡FÒ)
+ìM<$ÈSM{@ou‡€W”ðÙ«î`s/÷)³Y€Ý÷xîò;Àèð³êŒe´!ò™&¢k㍞ºC~ËÎÓIJ€Í›:²´íð>æá�–ÎÅ3½rቴKZÚÈ7ûØÏB¢¬hѳ<ïz­ø¸Ô–½ªSN<ˆWÊÆFþ Ë‰ø±Ífm`FÄcüp³èÀ8'ž¼¬n©Ø¥õø™aÈÄðX“çk•2DM€Y/‡!9‹~ƒÁò6ÑåaÌ×ã}Š¶-ît±)úy\œ…â¶Ù*	Á,ij˜K$ÈW0#îŸ?­Vi¸Ës.Å<ÛbwY‚ Š¬@»³Â*°Z–pìQÉÑú5a³lžµ:O	�+Ìqß7}4óì¹S®ƒ ëÜÈPà%ƒ€ÇŠèÉÞH]™k*,õZ ­¡„9¼Ïւˆ¯1êY´ï¨~ý�×ö¯ÀZ`÷™LÊAé1„1�$x¦%HªÈTÁO¼çÌnŽÒ‘¾fZÑ[`—PßXÀ>Ϟۢåœ\¬"\*¢o
•°“ŒŽú×Fö¦¦1¾m®ºÚÔ2´i¸Á¿½5òœ½ ®Ÿ{~ƒáõWãä�Yíõí÷oeÓɼÐT˜)>¿É©Ç6¥6‚˜V“>ÿhHiuÓÀb\aӔ!Ëô“¾ºfÌæivÏ\;çqzß2»ƒ$¬uõf3ÞÒðí;2l^/«èSN¯Ë¬—±Þ­¥§j½íÜ�Îå¿zï±(F?S
ž´ßŒ½R2\¹Ž¢ºËEUS(ï6y¢½FÎãMל‰yq‚lïf—Ô¾W ¼L[Hf¹B=®æ£íœŠ—VSw`vzÚ
+Ü|ON5š8vs–´¹Ê*¤Wä¥ÿCì==îdHU×Êxy-€£˜z=RA3~çS—‚²×¶08W„æ'Ñõ[ƒ>øpFÝ[Šâ˜.ˆ›qw±Ï)UŪªáfº²ñÔ çèÂdín©aÓµÛþ‘xp÷â_€·‹ËíÒ;TÃk=c±h<*<t,’*}Ç{FƒµÂÙ�6ïÍFÒú´Œ¬h¾’ª#[¼ç ݳ‹ÁMñˆækX†ÐR­vò7z£Ï4÷¼¦-¢‚9Ÿ©b¡”öµ	&ª—ఘ#>0dA\ã)FD¦J¹ïŒT¯„÷rVéÒ¨îäôÒù|’öúMö,±¢ÊïÐà܄‰Ñsãùݓ"hxM S«¨dyr;1ª?Òjñ-F²µgn�#åz´·#ÖÁ†tí=7`3D9§ïzvX”•†ê¨ñäʀp#ˆé}4ÔÝ]CßeŽBc§’Ԑ~èI\U‚OáÞöê™ÄÚHÞ
¥·IÕht›…ËœÙÃ@1/™«_é2×ÉÌ8ɺìplÁ™Ûê\¬‰!ù}dKðŽ-<Èè‚~žìT­ íž¬Çé?ìÁÑÑÍ&‰¡ŸàÂ-xò�ÛµEk~(¥z–¬'í±|�[(å&Õ®z‘¨Ö΁¡)ß%gjâÿ×Ã÷·_¿}óÝügàð¸ãÐSܟSMчü
Â0­… C; ±ß|—3ž5ĐQ÷sþ¤3]‚8À¹­Ì(Lò>±ÛÂú!¿jÆ°¸±®<&:‡Ñrõ«ÇwD?ñ6j1?– Åö¸›Þ£^º¬{,b¢Îñ,Ñúâ´–sçÓéÞ1«½KTÈ …¨ÄûS"ä«?ôÞê2pïð?eHéŠP
+=ˆ®\µº|Ýð~øƒó=5ôݹÂò4ÿå½ü[÷:Š(þ
+òž„ÔîîììÌê_iŠ "«4 "¡
6bb‘’wï™_{ŸD¤Ð¯¨TÓÉ}öîݝ9Ÿs cž˜ªIc΃7µ’j(ïÈÐõ0txR¸'‚üƯ%ú˜™yýÎve7ÿ|Øí‘V&nÔpºö9‰–¾ÎàEõÂmId‡ÉÉ,å_<†[$˜0|öÝQÈ'.Ëð|ƒµ+Ú,Ë�fۚ^÷€k’CIÚéFx©!Á˜›š+Gþä¯6+Ÿ=}÷þ‹Wß¼õÏ7/Þ}¸ý¥ÇŸ?¹}öÕûw¯Þüíöø«ï^¼}ùù?^¾ùöËï¿ûõOn?µG~û_ùㇷ/ã¡_⟘DUŸÄI6‚Ûœ"FМ/Ò§Y\Y>†Ðèk[Ž€}F³8XcˆsÊ1ÄÅÂÉä	-LUHƘuj°t~ŠmË-ulH9)OšRf¿O¯ÉÑêyì[w$-——³@‹[7*;{8J9Ÿ#cE^#úc•³DÏ`é˜I¤a]vî˜ÊfÐQ~’_r‚Žƒc»¥OLÓ<­U$”ƒFšæÛ÷?uØ©»¢5´òˬA®+ÚÂXÑM§Yûâk#ÄøæʇY]Œ±DšÅ¸"Ã9¼Õº[b‘çKL2(ُ´;Ý!_%t¶.<ÅÍÍC»CÓ½ð]ÓbOí"Ýó¢£1(6Ç«	OšßºS ²ô+åÎ}æJ“	Ú¦ú¨÷b0»Ö_dà@±m·9þtâ3¯<²¸HîÄ`’橇”£ØGÖ<{„"‰z¶°âƔ?;+´ˆOÍ0h¾Ýÿ,Ë)ÚKe|ìÐܕ]›È6Ä1SO·c.2օ-0ÃE]U„÷»£ØÂ+ôÈX±±†ç=GN‰fg-½7üE÷~Á-¸¥Ëá?0ÅP⺐ø:óõv@×4bž`›¨—:wj5yr.„pð9§B÷ bäԘêE]ó…~ä>ÿ@ËÊ­%
+ºñ»Î‚%NmÁdS92?NsYL흡ƈ#~÷!0¸=Ü
éùB2ãî耧¬] Oõ½%/í/$@ŠÓ¯2Í½ëB¨l̖þ�*žþOQñ'ü³oŸÜžý¨Ýž¾µÿÁ?Ï¿ô/üßïýS×nxÄÿûüþå7øÃßQúþ6o¿»ýù/íö­½áß>µ~4~¶}6}¶|5|µ{6{¶z6z?Úæ=Øäý?,žMå¾J‡šBN›Íɪöo¾»¡ÌïRž±[?è×ÙjÃ~â_6ÖåjIž´÷V.lûX§„¡ˆ›Zj.d·‘îP[/ÉWñœ¥t8œ{¥â¦Úh?»Ç®¥ûCÂã~~hº>Ç¡ËF'„V�ªõk* #L®6Y¼QjEê%Þ(PÕì¼Ô!dfq·žb2\aOaÑè,$'$fUhَMÜÜ«¾�v{˳±Ù9kðW®6hj
›‡"Ë^1k6¹�Êê/CûÖz6Vu¹RÊâj¥aÀž„‡O&ñùlˆ 9Šrƒbº]³ŽÊr2Ò<jÓÚ-È<ÓQ¶ÚN^Âé k®/hLzé>&$d¯Q":s£Y×+„†
K’ž–
¶Qó¼[§ÔVZ»®Yöì¾«
H¸<ßÖ²sµ×i7žŠÛGZI²~)€¦ï2©ÕÆÊ©WQÌ1’cG¨l,€–QJƒ©šöâ¸ÊRÍâöœg0jaZãO<ù.ìáÀ­G{wï
ÜÙ«jšm0k{Ö³Có5oÁŠ‡ˆ3Vº~ŸÐÀ¨@
êQфxÕ¢ˆ#©ÎyPç‹9Ó5{R³»ºÛuR#´"¼VL‡Ù¨¢n6”J
+ÛP¢îFM£kû"ž^¿h‰óúÉA¢~96E¨
¯‹k\^sèEËçŒo.{
7;ó�W¾=ó¾F·¤¡Í€XåMQ;”TÏ¢o°Š.Ð(ú]ÕP+—HŠ/ˆs…B·5²ÖÂù³%¥¦ö{Ù34ªLÅ>ñ]™š«!6k:7| æðWü†Lhû‹LdSˆY‚è;™º:™ðÈ!6CA&AvH2¡»¤;,U±œzmʸeŽŸWæ©ãIxämŸðÎÄ}y“ëÞÓÚûoJ0©§4çI
ñ(ØÀ”T@X5Ø;/g=M+qPí`H¸ÐI›œmí´6›éo~÷rI˜žl3¥]ÄÙ͞ìÛzú9k_÷wæ®føyYÏFueÝù­µ@k.6vãsTÖl”’(být‚ÛÌHámΡ€Öì%Í9j†,Qµb¾!‹äZ€u$hDr³â¹µI™å/Û
+×lV¦
+è²)Hf&}`U(Å®¤Ù@¨ž_¡–³—7nÒPVðµžeÝYÌ©BmRP^݊Ïò÷sØ,t~íމâ]—°¼¼<]À!bF'¥êÙÉñY†·ÓțymT&Q‚C3é†oW6Ë’r½,ÛäÄÄì(ۜ™]Z;Œ‚"øXY+‹á¼"OÐ>p#»ú8Á€·â¦<mDQzÛ+Q]6ÍÊy߸dë*2Õ}Ëú"·#îVŽ#€â’ÕüÀ&U?ހà²Ö¸6ÀÃQ¯AT{ÝbªáS²ZÁµµ€»¸´é][5ïʈÐ"6ôµ¶Â&=Òl¯ˆ¡…4¯UÒÞvL½µ#WVá©.P¢‹
8•‰J¤"Œrº_ÕªXÓC_öñÙ^dŽ¢f»zÑqÑ-*%¯,¹fuÃt¿ÐÒ:¯@Âi¡…†&š¤Q0RŒïr†Íi¨9¼øž/›mh £¤L]Vè¾0š0á´¦ÜÁ	²apÂNƒ,K
Ë{Ã	/ë”pRÆżÎrîq]¶ÚÍzr¼†_„LdH\¯|«–jª›"£xè•d\æ!C|NCøb›Í)¤’#鹯Ò:dž[ìŒu«`ò!A¦ãWq83œÈ´ïfóéóևäûšv	àŽ.ô“JméÂᕘÚŕE®©è\i³È–³ƒ,Õ9¹bSæB	[æιØ1§è…6Ég›º[µó™Ã]•ùJxÓ+·5QâêQê=æ—]EI.ÁWð›~1Î¥Í\Ï®’GPH½Ø]’ð¾À¶ÝCê˜FQ”Ý]˜(jºø­æ⛜ßc¸Óðs&Wa_™
´Rºq¸±FÑ]Ƴü}t¶Ç›TݐA¦Ö	äY;VHNÀÏ&êcՍ^-¬3*AŠ_ÕÀ+%[`Tt¨Tsa|ØÉ/áKQ¨­UŸ5ÊÃïGû8X‘oj•¸øç=;È=üL³�Ϲ«NÐ�Z‡ëÿ2ëBçÙÈ6(»_`SÝ í`Çmá(¥Õáè«Ù{ÁXу}ö»ÄÑvR»×x®©¡ ¡sقÐ"çlýV'8r^©`ßj¶MjómzKl3ørñd‰_
+\äÝMIk¶ÏmGÂEjÍ)	³Fÿ&ýýæPÌeË 8°E—•~…•I¢9HæXÌËÎì*J"Øà5é}ŸßãHWªrGíµ¯j):G¡ó=4xXñZ`'‘àðêÂ(˜ÞÙG’!·jQÆLAÉ>ƈ_mDÂџ5EÀ½ý]3.$‘v+#Þ°#ö:Ëa>½lY GÌ]ƒG ÊL‹Œ3#.!ЙÞÅçØåDâÍZÁ†(8…×öã2AíÌE.}…”oÏd´sìKÚ¾KFQ„¡-àMÿMwµ­ÊuÑ/˜˜!î{U'Oò‚‡˜Ø!zŠ%bA"úû¬ªUÕ{dâéÌ©Ó»ww]ÖÅ]À¯Fñ*¥…—	Ì]Ù|FJÇPߓ_ô6#%ÓqÞgÒ%ƒÕ(ßE�O¨C#-ö¯®–k±@i¢ÚHZ›R;åXýbE/¯G›ÇoAé/²ÜéÈLòO‡Y8°)¬„äAÁU•¼nAqTsc5/Pnc-µs-|åZÊ E¦#©©Ûºx
U¬K¨›ªz^
+l»kKI±o"~]ƒ[x„à̍—çêéøV-J\Wž$&ў.F«žÓjO^9â8ÒöU2»SØ+\wZi;ëR`d`âEµ–”v¡Ô–BY¡v‰·kÉ„¬ÆÈSÉ !/}Q
¥°œî)ŒÀÛ|ê´æBáтÂ
+ÕÆzPê¤.@&SWh:ºÈÌ¥â@)[©'Hs'të6èv_TÇ8È>=-bª·ZPŽ0±ç‹œo:û¶¼…19«ˆ¹«5èRéçøB6qoZ$Oª´Á®	ëˁДáhëÊÛnµ "qÔ½øÛ¼èÊ¢Q‰Iû±*Ý~	ÀP¶ª--î>ŠÐ—2XG²ÑãUGÚ�DwÖÏíp«Wþ
’Ûjr6èÕ
+hˆw¼â½j8Z{˜U[ÙÉKˆúð¼/I"fØN§‡Ê�²kíNvØ&òƒ–´˜5Z}Š+˜¸0®ZÆU]Õø/é¿¢¥JºóÍ�6=h©àùÞ*­%¦›m³äÊ©ä*{R@¾¶³?Ø®NFn5YeУV3®§.t$i	rè	þá„%Ø1N'FÐêÕã´]¹+Pð‘Bwú±@Kýt4Òµ(t”„2<›*Úð¬³Ë€=p—×™5<Tš5ƒ9uHƒê}絀0‹¢¬íË,Jw©¦ëL„8 Yi×ÄIŒY°£Ì¡Õ֒ªz¾)PJԓÓj•rÑz
Jšcœ¥s¤S*	çuÆí"·¯)É8Uç’»¦U”Ñ„€*{_VoÕáÒ(+œOv r/CÍi0ügBÂÚ9Âè¸AÌ¢œ ‘~H…½ÒIv€åzhRM銴Â>Ó‚ºëÃÊlÁ--6¨=૛Ó ¥Ñ“© Ãk¹LL€—³„^HPšQÔ°×Ĕ%+ܒšÁÊ
 ŒÒ˜Î€Ú˜ÙuÀD¥7Á2P.T
+obdƒ9kc)¼ÀΘËuÊÉ¡±moƒ¬´êN“Ê€Ëk‘ÖЅÎö¹L¤·1lNO›¤U×´=å>%¼%ÓÝ@ò
+®½8E#ö°áubBéÓ%€›8ô~H^qu©"„Û1ËF»µ¨K‹¬¶÷Q&Rt2RC™µ—Ò&yWM°"u‹W;€>kÏtžÊƒð
+z‚;6pºË
Æ}^ۊ•ÝŒ¦£ëЙMÑ?ÏøK¿Ú ¤Bv^V¤†o™{$Tºô•IŒ$&'Ÿ¯‰É¨ª›�ö‘£Š)û`%S0Ýw¤ÃçVÒ=â¥"%O²šs|QI‘C5Øç\núÁû;Ÿ.d�zi¹%y!àÜ×ãQÉ
ž ˜uþ›þè¯&‡á^,ˆä5•ƒ³‘(pÁ¡…«2FÐÔ8ƒéŒ0×™(Û,NF¥GТƒ'0!­åda3/•Ó—z£Ç6²îMýæ
J;ÍX‚(Ôîš  ²É•D?Qw(ϕ"§GY$ê$„ûj”¹]Z63GĹ¢í‘¹̧èºN0›ÐuCÊhÑp
+36gЂî=N§«Çß½šBw…''(»‡=ʤj†søËqU¶v¥=^Å<Uò
+èx&1­ã,[z¢q1#}­ pèS<_6/†+ŽyLhA±r2Ø}`Ü«ìu Z©=̈ $+¸¹²2(*—6H³ˆ7Œ‘B@©á5ÖÑ*}´TçÙ@«w‡)²q¦fMï94òœz¨•÷ڃ‰É
zãÔ²YSˆÕ^r¾äÁÕgQúºr0\·bnW²haš}Âg
yhZÕǾڨ½o2|r`v{
+TO"Z�X]N¢
+·t½’}êÀe—‘zª¶apß=O0º;Àْ©N†øÁ˜wv½÷Î"„0·áÌöúöìß¼üôùՇ?øùãÛO_î@èùË÷o¾ÿüéÃÇݟÿÓÛ_Þûï÷ß}÷öóOzõâþ;[òçß\ò×_ÞsÑñïö·[¹òýߛ/ø?ÞÝÖýù‹û›¿ßž¿|÷ó?ßßí¹»ïðŸ¾Ã÷æ»Û3Øņ¡#ù§Ž¢þE^=ù'â3~Àáùܞ•ßþ ‰þÿ^Ççö,¿½Û×+¿}­_=ñ¸Þß=}ÙrÿËÍÜæ6&Ä%ԘÐJVŒ�Ƀ€ùm¿áÐ`¹ÿO춝)ý/ÛÚ-:!Žì¹&ȳœ½yÉ.‘ìßËý¿ÞèÆ ¤ïI¹è\Šu„•Zí£c«$—…•F
+xÖ@:OɆÃ׺Aã¸xym.
w‚Ðjœ þÔqXï-­…¥™×ÆfÏpjÊ{PÆÜ-È
 ;ÄÇáÚ.&	V€¤‡ŠäTCœHØ6Ô¦q‚YÜ·B˜éž3‚H€¯äSd– æ2VÈ\©º$f°�­žny0ž�Wå¸É!‹Áµ8ÁxÕÚ	b:%@Ì¡æZ£ÛB«ó
+`[1r¼„Y
+I®ØkŠ[Œ¿˜ŽY«ÂR˜YàÿPºQüYVœ`™”o•ò:©»ªIõ°%Ós`¶¢¸Á€$×2“‹ŒÙÖ—»¸µÅèWn°gi‡á$7èåÒçjæ8×DfÝx™Þ=´k2êH¼SY®¹¶ÙTm:´ÑŠ`a°H’á2U݌I¡~Xö CeG™‘ÃÒü®b¤Õ¢
lƒÕ9Ò­‚S8I~”ðMX¸·¬¦¤BiÑ;5¢Bùf;©î)B¡g¹î3ÌTõ¸ºˆ’Ìf’4‚MaC+—ÂËh6‘¼›Á6Û9€T÷xöM÷1(;ýd­G•‚C)V9ºE›&jM‡51ÜF0á¦GD	÷™#³câÉF†�¾ýH—*ÖoAs[^Bk±Q"Ý;K¬}%ŒÝlÚ©f_o.ݬ¹t½ß‡¯°Øq#ØÓaP˜A¨ùÞYÖÀ?¾ß콫©
+NÛµ,÷£¦¬Ì
X‡¸²[·Mޏ~©g�{ð��¥2b0²pªY])«U-5í6•åRWM23pXô±ã�ÌB¥Ã×é`jàð`R•.Ôß Fd!öd\ÎÄø®4Õ<ÊSŒ1±ÐΝúE@¥•/3;1õ1Æócç"Œä4>ŸPˆ+Þô5oEc‚؍¯·•…ry…Ú¸3+œ·Và Ϥ’bÝ0ÖH6¬Î5	ñÎA|W1élR+éȒÂÑMï8%�18Ÿaì«¿lšš®…]TŸ#¹=Nq0‘<©´x™Ì:¹ëޓ)h‡%ž’ð§¨gÝe²¬¶ˆz¶vŽZ„~ѥÞÁ%Ëä®X „<¼Êm-…¨ÈB4
+ßKï¡Ê-|—‚ÿG´€% ú› |í¿H€Ž…ž«ÏhàX“4;ίâ¥jH˜ÿ´p¯K³ÆøïU¶ÛVrD¿€ÿÐ/l ’z_òæìAÌ؈=ˆ8PÔµÄM*eþ>µõeßËEöXPyØ·»ªºêÔ)Ia¨KAuXb¶¦�”�^«3ÛøA•싀µg'$êOwÐ_h|4„Á6ƒQxºk'‚…AÃyépD
B‚@ªbS°=Cü9-lîiFHö°ô§\Ù+	g“‹Fl°¢W›†T*÷Üg P¤јZ:²Þ!IL ~ H‘Þ0­Cµ˜TˆŠøùŒlÎùœd¼1‰Dòf¨RÈh%^©ƒ.ݳRŠý„¹¢&x!%o™h 6Š«a.V“njgÔ½ÇBôRP…×l⻥™ª¸”)”ÝŽC€ýÌ°â(½fÚ	álòQš«æ/p¯âS[t7ڍc²(3è¢s²±§º¦
r,t‘áT8ÛI éY•°á(-ƒ‰¬JOl™¹0\[f[t^6õ©¦ —%>Sp`­êÙnúؓ¸?ãcɈ±0©Õ©À•ªðÂkrX[ÑPå»åQ�Aq¾*à ÑE±i†0XQW±ÔµÐ8‹€¶h1ކ’{ɖK.U^é*ï2ˆañ^WÉ=F"É7›¼¶¶™´´¡ä¡Æ>	‰¸h³ÀB¢P𒱙#!ýÒ	kì"•P
Gªw­9”Ì—…š>‚u¤@¹mc®`núxpÒłå‘’ðª
NŒ¢I’û(°t†çÇK1˃—¥±ˆ’Ûñþ[Þ©”8h3Ǥ§u”éeT†ïÕ—(ÓÃ1TÚ«£žì£'rUôç¢kÀ¡);&MJ%¹[2ƒPõõ€«.ÛRǗÚu ’ëÆÙ48_‹+Šš¢mµð4«ì½€3“ðŽ×Â¼#Q/Á'ô�kC	&n¥°ÐEe^èû¥öB¢é= 僱–9e÷ð™õì¹zÿox÷—7úחËË·÷Ÿ.VùüCw5_
+òìÝênvÝ©ËNÝtóåænÝ=Ÿhõ~ß™ÜÁK«×<(…m²èԊ(a<ÜBûÒC+ƒY¯÷÷ðáðæ7€¾(¯~Rÿù¯V—xÀ¿d
+ýëY¨e]Y`C]3sNG` íÁs‰£Ï¬‰tOr(_bÆö«²R8–.DµÍ™ÔS¦ဲ‘D‘eýf}¬Z¢ï«üËUÙCzºt×PO )ÂSÚh“ÌÀd£
PÎ:f”ía0k@*¹Ì.PYÜÓZLW¡Á·Äô”w9¨áJÈ[$>š{v‘aˆ¼‘©‹¤ç!00[ó[ÜÑ¡®
”¢C¬¶JÀóÉFɑŠZ¤¨]…@ÀÙ 8‘C\‹—ï#3xª.)z:n/ƒ^³ÑÔ0`Ž¡ñ«
!
,#yÎp¢Y´‘ŒÙzÀJ¢ŒÖ¢ÊÕ6@ chˆ£øæIª!©ÜÒ a¨—¸äùî×BRG’�Rãà4Ԏfë0Ëzaû<Ó±¾ªàgÊî|Z†k[ì‚³®=�ÒQuVýý¾\t	tßȬZ‰ƒp
á½k÷‚.Þ J{X‹
+$šA¼‘"rNiDžÞ»vˆ’¢öK€}Š±[>:†¤¥Ý`h$agím‰•&+#"\g·ž;lAYy>ôïW€²+o�CˆÛáaP%R7@&—scÁLD°e8Œ=)%Q~0öx%ÂÎÔñ-&]Æ  ŽfP9è84«YÙ^ã`m½1�½c³ v¦Íƒ:íXcFW`dIÞ¤'¨æ̓JgubôL AH’„1•ýhƒ€-.»‚ÜJ. ´Èißóœ	°¢0÷`
'
+b€9ÔùÜÅ´ðžµ¥×ÏH×{߀ì´ií[VæqÁ%šY·œŒãB¦Â+Qj>ãì€ë¬C+(ÛÈcD+š+x>b»úŽãÃàh×jÁöÚ»ÑZмã½LRšØPÒ/¬…Œa»\?ƒô
+KØ[…f7ch±G!{œÕ’q
¼¨“h1‘i°…Íe•yŽ’î:‚¬¬þnaéÎ-Xå
ÀŒý¨¦m½#¸€åpëC_/¶40‚ïÃì3¿‚ç’bš”Ç`­•o�‚†\ØÙ …E£lAì¿6²T0á(¶‡ÖöÑì@¹è~ž¬*i[’/e¶];é4¨=”Îô9
+â)ÛÀm¼`
Ìhƒ.%ÖËÙz&ðø°¤ ª»ýÊÙdho/ Û
 Y®�v"ƒ$±«gu_‡»@k]IØá¾"w[¿¶4W.+g“᥋´nAh_iBGÀÚ<d8®M¶‹¯Wü
}ÂEŸ	©ødOÆKËؙ°NöÍmçOŸ?þúójùf
Ãæ|yurÂ0ͤí“Ÿoð›Ìß¼YÜÁß׿u³ÍäًËÕE§~XßÝ^«Ÿ¦ËéU·V¯×—Ýúùñïy>],æWëéÍõ|&+ß­V‹3åÔÍæTM×ëÕòr~vhõsu2yV‰ôÈÍbº9¸¾.5šÖ®>O,¦­Ž<awž8¸˜·‚KþêAï˜ÿv6¥­6\»öUw7_,:uÙ©ˆërÞ­›gv–¿Ü¬æqp=½_-á‘Mwô‰O7ë.¿»Å3næÝå`5m5zä|µø`M\Ýlà_ZwêójÇ=åãÇn£nVó%»	>Ío7‚
´Z|€2閳õQC\ݦ.w¿X󞯗o¦›ë¡¥ƒíÂ}k^ÝÝNçýÚjÿÂwëéký}ïŽïùíS·žÙ5_Çñ~œ.¦¿Ïؼ¡­À%µ^Ý-:ŒÇbµ¼:Uk4êj1½Ø¦ì
+árÏ>oVXìºDÚðV]@pù2ðÝÃ[4i9»†¨èå°¸Ž¾¸§ÞλåƒI©.¦··óÿÝ}…oo§ŸVS0æ¹:e"æÐØ#Óá"Úk‰?*xœ¦_«4¾ŽûÇζ£³“‚î}~ðħ:wH„ìµVœÕüû”‡»Ý³UèOÎðÏ>Ýá
§ÓÑàsdwAÙÀ~¢sãèX•1âðSèç+Ü}ÌjØåm°ê@» {Ï~õ©»”'¤®•&©ôi( ¾‰>éo<üyv†Næ€5Ŕ
kÀs:812ÂméÞ<þÂëÆ¯_۞v¨
]h5|F;@ÜŸb齏òGàZ6³ñh6ÒàãZ¿Ó÷Ùڟ»/ý5DM÷@/6ÞôùÅY¦=´$c3Œ¤±œ�6G›¼D”“@~ƒ¡Tgõí5q0;’ÑœÏP0˜‹TŸb$2ÞÖÈrF+œwrÎ ûa<(Éò·éϦ:V”I’áTkW³+wPäXWx(Âh¸"#&yÆÄ>IFE÷p=>&1íTHM”aì´j3ß�Õ-ÙËéÿ=¹tԐ#ªnÖnmÜV©rOiçHزQ5]l3ÈÌ
ûä¡cý>2Åý¹×'ò}dğDƒedKùS³Iw,‚*óG¶´9øC,Ô~½­‰~„ë8âҞ9iۜK»·ô4oj—³uˆ୒Ùèé}hÇÅñ¤xô¦{qà²ìàžC›¯ÝN¢~Ÿt?ê`3’Ͻ|Ä¡R/nâ”<ê»ãÓ_“L¾Çí¿IÇk'n3Ò$PãØäsòÁpÓùルL
+¤÷vs¿èn'gÿ\®¾,éƒúDfÚK]¬!A¾‚ꯓ³³ÿ³_µÍ‰Û@øðtifîÀØL3í&!—¾…4—¶Ó2Š-@±\Yæ.ùÐßޕlƒ“š+„4“|ˆÑjWÚ]=û&蜤<µ.›,òÝõdRÝ)T
3ÄÔJ\A–·yBC»Ç…lR'+ÁÙyTDW¿½KžðÂ!§Ôg>æ÷èk°‰‰qwám`3fKLƒ“%-Éhñ÷¦SÊ,îañüøHa>üýö»†\ ÞJ’ëƅûȝ *gήÀ]'H©‚NJ¨ÖÇ\äØe¾Q±Å¶¬àg½ÁÚmÒQ<ê:)¾tÜea?I>ð“}[Jg	{
+ïVþ‰ÍqEŽt:òkh-ô®aB¿.‡»ªaè­äŽø¿=#l;ãò…NÒá`Š
áŒÊ?‡älNüK×-øýaÇÅ,F
+¸Ñ9„mEݺôNùœË^	Q<@'IÀ,v®¨ðþƒõTÍ	“ê™�á_ ²‹ÒeJͦ©pgؽ¸°ÌS8À•gùþ¾°®¾ú0~èÒoŒ²\O›¿V߸Ëõ-N¿Ÿßێú%ÿõþþ|¡®)èÛ#¾û£äSÈ4
+Âeù¸Kñ-ú¾¸�¨HëȄc*ª@–^AiŽz
†§†-8;dˆÌN!Rª}"N$UPJv½
€B$XÄù$;—Ï¢!x–Q½ŒFˆ[¼k˜ï=^÷Amÿܪú3hðê`clԏÛà=mŠ©!Åô0ìN8½e¼§œ÷œ`ÖÜÏ|M¦0˜®—¯³ð¯ˆ†!É­`™ÍBEÌDµÁ»aR±êZJqöVÂ;œ‰iAðÄðÙ-(W	¾Û0¦£Ü‰£<ß 5†ÝŒš2þPÉ愋J¶vcߙ®dýÏ.ÃԈ2‹Ä6Oü¦ÇªVo7‘VÕ-½£©Yq€U[u£³aÖ·Ž•ƒd'L«‹:¸ÅÀÖqÓê¡{ª¦·Lùú1LËÒá£iF;†@K7(¬æ1:…—ß·ž{Ø¡R÷ÃW’ᝍÇÄáf=º%cÆgùY¸—ìJ¿å3Ï£ªAԟ ò)
ßÇËJÄjXRª%ЈStç6d^$Ñhf¨¨ןê{B'S±r€xÞ,qÉÚN©]#À¼…‡LèŸõOT	Úf³
ÑÞÖÛ
´ÌŽNýûøÇ~(Ñ»îÅVÑÈe3Àý4ç«ìE¿Hk"ïc!§Ñp‚36'ïG}±I½ÎPUXøѬËJ±‘ê÷õÅJ&…]6Kš·Å¡œ	,Èè”L8!aޖÄ<N¬.»@{ c;‚qÕ9ik[}²¦ƒÚúú$÷¸ëíÇ]çÇÉ؃Lu“Güe§´ùwªù´=†Å8 *áÅÔ»""8ÄKß}ÌÀ»JÞY”WM_ô×£ñÂ/,Ú{ý·Ó@ÙVèÈeþ5¼¦ƒ——þ�Á„
endstream
endobj
26 1 obj
20779 
endobj
27 1 obj
<< /Filter [ /FlateDecode ] /Length 28 1 R >> 
stream
+H‰ìWïRÛH¿Ã$wÙ²¯‚ÐH–-%u[eC’c÷>œpÜ&5–Æö€¬ÑŽFä‡ý~_îíî}®gdÉ2’‰M °lB¡îžQÿï_KÆ#">£h{ŸËCêsÐ�=ol¹¶aš¦…¶)	Q38_rÑÞK´½Ë|‰^6Ðö€	¤í>I˜ÿš…’
+ô¢Ñì|DÑ;A¢dÌŬ…02Ñöœÿ¼Ñ,8D‚H|´p'†«mÁa:aÓ}2£UqyÇd¨8Z‘U6Àûœƒò2?> ˆ’VÆÍL›ñú·Ó¬RJÔ½H¢f”Îvx̨&¶çĘEÎ"Ù*¾ð»¤ŠÚ)n\IOwéDÐìl˜í®u…HF25qÎJ|‚ž¯‹0`Ó¼ÂPáÓ+ŠhÖßYDkn;ºæ¶£ÚÛ‡Ô—ÇuÄ­™ðWˆ†ò30#¶ 7ÊÙqmP•X˜~§¦]×B&¤«í©‡e;êBŤÃ蘀¢XÁDǟáå'øãHŸP½ENL�õøPËðy:F/Q5‹O-™û>¡¯.ht+.Û¾Ãg1O£`aþΔ°èzû¿Ó5Åd_SL¦áXvgu1e99›WÓÕëŽV_wwå”eÇ Î¸	õCNd%EvxqÓÑET"pH˜G¿š aÝ(W¾rxÜzƒ0mÜV{xxØî"S7óñ´‡ƒñ8`AQN+ÑßU²Lê;Â2½™ÏljœWð¼ØC6Sk^Òg‘Œ7Êå_Øä’L*Vää
+Öº­,oàz¨ååfEF	SIsF‘Ædòr‰$hØ+¨xÑyX0ÉZÄ=¤»>]¤ô½æ÷5V÷C
+Ýêæfëó»×3qaÛâøJ+Û¯þMýT·AÅÐgÛ?GüS4ÿp£ù†§0Q@Q¦Œ¢Ã£>¤á</·{`ÀͅoVíÕCCIüóZÄP
+~N¯=bé¿Ã1—ý’ÿ3±M %Ê9VºfÍré¤L®0㶛ë­çFµØia«c8Xkؖg¡þÂÕ|Efš�8€,öZ(¯~\êý	ÜÒï}eßi
;wQÏ0tDë k}O€•	p·±,‚1ߊÐ<¸0Jý|(EåÅ÷
+=ç<~‹
+ Ù® h¦$‚Ù<
+iJ¿å2”g-ÕÅ-´cÃ6O˜¾.Úr,Ãi{Økwï¦Ó~qIÚ<FÃ)	ø§Ê¦t0AþÇ\HµØÕï|U™µv§n¾âL¹¸l•	Td[Ð|í…Q°$0
+S¡ÌbÕ
+ˆ8ŸŸ™/“1ñç„ÌQ1ab£åñP•%Úá"¢"©x¦'d*Kj]Rb®å�dù¾ْ®»ï=’N;O ÁÏh‘Bß[ì Åžcy°Šx–£7×l«G·£ÞL«ßVW½Xè˜|sŒó0‘¾YN•{pJm¯|-(–H®Z÷•V™ÑÕf$JiÖ’z¹õ¨éæ4¾9UÊÛV»L»ÐÓÀ5K4\#‡3¹¥û,-g9V™VsŸ]#gk9æ|w‰Ìt´lÏÀmÛ*3²‹=
+ã¯:QQh•íªÊ@«¨¬hkÆ~0ì$†—ÓXóôÍ(<¬„ÿuÈS4!i’�ª
üU‰õBž§ì„kÚs´I†ìR§õvŸå‡{ݽ=×مu÷³'ðïé˽³éùeÏõß?uþ±ãE|òۏ`¼¾ç>æ°êzή¯O@‚A^‰4‘ìׇ±¯ÝÆ ùäðêxéՏ—N5ŠøëaI6IR²HÙ©ÎWg‰ˆ>	ɤ~†QfK@Œòy$¹ÚÖk)›¬“©jUW´{•üš²$©W­Ä\K»˜"ónVôm¡r)¢I²´ñQÂÃTҜQLµ@’°U¾LºÜ|[|°ñ†(ù†hçñ7ËÃtD")¿‹~¹ª~Àw;\DT$•*ê	©Æ’Ú**1׃	NQ5$`i²>Öß|ǏÛ!aÈ&‚ÄSæ£>Œ¡)zÙVÅE\€IþB:s~
<ªÌÍ¿…®o˜À),bS?°Ý-RrÕ0
píÆs é˜(–ŠC‹‚Ò…E¤ ?P>g¯¹½9Â%/Ðò‘/9yî?8MU„¡Ps£ô; Ê·úY±ö÷ˆ=”ˆžÓñT­Y^-â·:vÝG»ï€â1Š!1$ÚçL *Q?$‘ÿ-@Å»OLTK¨‰\ÎÖr¡¿ã"sÖFmÃó¼n¤£Éêõæ6Å7\ú¾4=ÔÒç¨äé¢[]ûÐ^{@óÕ}îk7ÒÇÙÃ^@bx9u͞ÂDVŠ{~´0–¢~ˆ—¹kU·‰¶­«I†ìR›³Ýg¹to¸³·ç:»p"P—={ÿžºCñ—ç—;ì¯vS½;/Ç[Glñþ'oàþÙ¹ç=ý—÷–žlýö#øCfͪø㍈PÅo´ÎZ_䜻ôûþ9^ؽ×ùÅx”üÒìç©öƒþKýúic?d­þuzyù½%ÉyůÆc: Ö8äi­+ %OŠŸš$l¼®_¬¼ï^»J>Ò¹ÎEPðѶ2¢Póô–çúFæí!ˆƒñ8ä9­äÕ.ô’,dRßl–ùk¥ÓV‘O|¬šÛóF;'ÌB6ke§ñ,’ñƒš§†‰.l%6¶Õ#[f”ÏŒNׅ…Æ0mÏZ=hoeÎÞ¿l¯ƒõ‡;êÑvÔ[[Y<»k_‹6:÷�6®Ç§›×Í­‚ƒFs_õ—ÿÍ%G¥fñó/Ü	Š×N/%wåN›»{ÍýÛ�ǃM#ÑA6ßGôÏ�MLTµ5âNK5³£jg˱Üvtm¹f•bú¸©ß¿SúH&wîä®÷Æõ·ïÔ7\jî²÷þ!v¸Tí
+£á”üSTÌF‚¢˜©ÐS=°ªÊ¬®p¥¦\\¶Ê„*䜠±Õ(Œ‚%Q˜
+Eè:9% â\»ÅXÐxLüù±ÌU1aúXMgÌÚÖùͧU⇢¬³ŸÿþÖëšØ‡ÕR`LRyRêdC6‹Ã¢“-žAp$ih´V«AY-2͂1€~(K
+>ëíy§¯¢ '¤þx¢(Ž¢œîóh @šE“­­ŒÜ§×R)©Öe0º¢RóÃ!ÿ+`8iiòñec‰6𫖁Iä—x…MÀÛç*#Ë°�ºa9mý°lGÙNG÷Nñ_z#X2?„]W!Yly
+ÑcS½˜»ðXüÏÏ ?$Åç\Û±QYÙLUš¢6ÎUrÛZV…LX-_8WńµB=´þúóK'âÿ¨4ÓL³ëêÅDÙ=÷K&yÄ8DaY¬ƒ½N.f´——Ô0­®rÎp¦>ã.Ÿ)+bc½é/žÞ—æ öÿÜWkRIÞp‡ŠpxG#	I€ù%^cv³ˆ±7bgƒ(u—¤WwõTUËȇ`N·÷Ù¬G¿[ê†Ý1òBH]™Yߗ™­ðW‡©¨‹uñ0‘@©dMbÚÈÛeÄ©s*90½=X½Û·uKwØq÷½ë9TWX&¾·ç›BûÃƒd¿³9 Mõ´3Í"LK½o]Ý×êãà°×KÙ9½V»SÂr¥±¦©”ÄÚ	ÙÀ½t6ÌM?Ÿþ#ËÇRJæ.…²è¥ITTr>´~HC˜¼f·<žeigtè¸Ú<í¦°Rñ’ƒûÆAF·×ßï:¥ì­¼Âñ"uŒÝ,Cãô5$qD“¸¸¤àöC±^ªàDíÕژ)	î]LËùÈôƒ@7}öv‹ûVØ¥`„nè7k™¤ ˜ÉÒÙh<š=›F‡YH‡.°Zç†Ç"‰¬ŽÂ ßíe‚æ‘%FoNŠ¹²gÃÞIÐ%ïŠUºÄ ã“RH1uÓªÕͅê£Àá¬ôÖ»š20YïjJâ.+_[UV½ú9•œ“íÖezÆ[dÛCV£«ËUQÒê'¯âñ\›Ò'o‘Cz‡Ã¬ÁbB
+ì$¦«µ¡Tk$¼îx”0tûé¸A½"]Ok‰h‘:!s`D!HB ÁúQ¯Ñ!ëÁúö	FÂ`@Á£OabƒÀ>’ðMÁ¦ýýgî‚¡h®6|³8 >‘­L夵ò5õ‘ÿo<¼Œ´2PÒÐFnñ2Djê£ßâpÖÒV½¢õVÀ㩦ÜÒA™¸V…!ÁñÂßbÑÊ@QLܧc`2íeó_~0ܺŽìiN’!ò’J•»v҅ñŠÇ`G³XL‰IÛ­í1‰T¿Qf;	‚4ÐÜ>ÝÆ-+A¹¢¿Çžcè²3A'<†@<j;L†…èè~£è°wÍXŒC¸{Q?wۘà¿õ¨ÀΫ Ä"ò�éÃFE
+44±þKŒê"–Dyr6¤‡ççu;öh¼&œi3ÑW{HX”v ž	ƒ{”ÔÐ83$cKödN¬$44õÁ©OÀ´µ}Î	uŠ€÷¢­|ÀÞrPâúÑÎ9q'—8ˆ¨Ñ?þsŠáӝyÉM	00Š?0ΣŽîÁÁpô3Œ.Â)Ž>Ÿtƒ•ÊGØ;ÔC�æèvÕ7hûŠûàƒ4jVþœ‹À€ ] ‘oÛ°§Ñ\èV^álqUÙ¦½ûɗ=C®=+:Æ2»'ù¾ö7d»=Ԛúkú­æ	fŒÎŽæÔká/¯º¤xØà“KT ]}’~n°bƒÈ`°‘Uħ¿öºC€ãëÿ:[¦¥LAÎåú‹N‰VÎ<\À³pA"m<ý¬+ž¹A€b¥_¸ú›4™)Õ3ÇÐ3¿r¨RÛÈ<^^óFºÒ}Ê=(o¡:Å
+o½¾ßM¾£÷æõ48,–öû?®.¯98MÙ~å;Ù7hwU:œ¡í‡€… °£ÿ„"…Þ‚hýù³Ø	¢Ý¸³p¬–‘;ÝAë¯C…}�þßè>ÀŠ¡ìŽ	ç
�ñ⾧Ž2oN™/ôlø¶&ms‚Pvaz€¾*­è‘U(ry/¡	2¢_‰ïØ֔ŠˆµN3ÌíŸByïÁãÂ9̽C5æàý¢=ÈC¹©ä4‡·mÒñ™Y�Ü!]¯Cš|5.çÝÍsUžE5÷¾¿™_ÈÃU^xAn	ú?3žP6ùeié¤"w9ýúbP2êý_´?Cd¨GŽyl†èÍãT„¼l„¸3@»·³Iòem«kæÑß0u<¾R_͹ô6-&v•ÏœÐÙ¼y¸Þ8B	î*£	W0^’©ú(¨Ù^¸Á+|ÌùæP«xF¿à‘¢ý†õµ0t(àÿrkœÂbFԋÃøùâüœ‹�¿Ü.i§¤θØÈÞóÄ$ó4‘ñœNÕYÒ?èŒðÌάe„AÚknқVcŠà«‘¥¡ÇbŸœàHÛl¤×Ù0zeøu{-6®Í#—A¯ùèSc~8jEðUrA{jÛ¯ÎÍÏæ-ÁZŠ8Vü–ø±G~¸èå¡W‰	Î_q…%äï
f0üxW°¨YÈÄtÆÛfØ<rtjˆ¼äÂP†_Siâ å$Ó7‹]z•ãR6wô
‹—]eãS5'bÄf\À§ ¹nút:åê®ÿ‚$+\VÑmûÒu;Æüš*ªë«¶÷„ˆJÂè,VUۗ,§5tZm»ÏÚ§”‘–;`ãºø‚nËÓ¨æˆÂbFÔ:`–§?Z-«âÿߦğ•\Z§¹nÿÊ{9ýz´yiålª·×ƒås/Ò²9öΣ‹C„…šp,|äéƏºH$ûS£äLR£ì$
Þ ×ï¬íe�%s�e3�ݕbÅìÒçJàPF\ï-á:ê#I¿•Gp-áˆ8b†•´Èžî£·;¡±Šb…n͌L¿AtK$gq¦Ót®ˆœ7h”ó¡ï�'Gi?áäGô]	=fT–X~q†	–û~šS£4‚¥&ÅUFÝš2½Ñ…àaävÐn!ÌpèU½XPá±b4$H‘ÕNR*Á¿2—’°ÇhÁ"F ÓfඍHIĂ ½ÞDP—”Sèçòä܊ë¢õ÷<ª–è’,K3Κþ2º¸ÁJxCžâ;ç`òod¹NvO$QFò˜0þ5çožUÒ·:eRãIxª8n×Ís½äç9õæeÉzÀ7§ç'àe¸}Bµ;ÖÉjAp²L:Šñùgt¢cvÇÑȽ¬+zNé{öškî®.QÒ:Ñ8Â\ü‰E=ÌÊua¥Â˜Å¾[•ТÎ/’œŒÇEwÖÚVKFd~lé®3{z,ö	8MõjòV5~æ—0ä&á`¤$K÷,ˆÔò„0&›=twú™újþÐÙ\5ßpà¹ÂÑ]Ú¶{-¤/¹‡W×½šÈ;åÒ
Y/ +ìÕº:/ó™†>ÿ*å~	éC®2–Žù_FxXà<Æ]@ÎáíÊ,ðPG³"ÛRi×¢ŽsnçIZݺ4)õ¾¶¤¬Öž ž¤ÔwøúOÒ<Kkø,­}§õ4”òhMFÔ'TɍŒz¤)Ÿ:íT,Àú¯×ùµÓqùôTµ^½ëõöž©·"­õå°­ô{m19áÑcïËLð8ôke\Õ7²"+±%)h9¶V"¦œùÄ
€ÛT?Í/aÎlQØÀ­+3§qœ°Ê³:&sHÏdjNÉ—¸I/‰Š{}"×5´ŒÝHÖù«Ü>2p›ÞÆ
+8ñáþþ~¯;hÖ²òeǕE-®¬æu\s‚+\rꖴÒyÉ
gJÏBédq¤'@ŸøUG¢Ýk®
+ÇÝüÒòl¨E44s1—TÕ,Jy|qëN˜·GÕKŽ¶^ƒÎýYè'j§Xá­×¯á‰Ñ×çƒûc¿ÃK¼$b«‹ìo~õßýCÔýãÕ¶ÛDD¿ÀÿàÇò°–ïöˆ§ªÚª¨¢	¡jBARBÄßsÆko’ªŠP´qÎxì9sf}	þÏÙ�[û;qörøñk[N§~É©âBøø
+0»ìo^¿BæÕùÎÏÇ;ý-ÜÑ÷ä©Â2Gòžò{ÿmÃשãràZžã™íÖ9?@WBK]óãÏlº&׿�oðã;L;éå¥üøIËÏ<˵°FvAþç¶ççyÏöÖû—§5™(mù\”vÆK4†"2.UZz¤u-ôT‰Bï\tNvVCL$+o<ü3‚RÙf3õö‡®½¸;Áiû8ÌPfv˜YauºI[N*Σ¢‹	țà<Ҙ‹¤ÌˆuôØÎ	Ù%Ciœ‰¾øÜAƒœIÖ¡€Þú\'ŠäF戴:Ä!—e%ÜàŒ³†0Í@Ê84ãXR^“=˜™T́YJã&ZN¬'\rªck¾uêI·JUIUEžŸ|o’„äàŠ¨£ŒA¹$ÖÆÈГ±0éT¤±E[ºžat‰ËÓ²Š‚k˜b3§0ªhBbèm˜´nµNoY3ÜSœF“²ÉùƒÙ¡i;E'(ï¹5بïqÉkÒòL¨EÓ¥Ô=ƒ«S+£G&cžàÅ	‰oNô‘<{&gþ˧1n«ØdËþÔuØqßâXz·p&¯Åýfø³Ãr¹âsð¬ûõbó{µ^ÈÍ×Վ-Òܱ]_]ˆ�û‚
endstream
endobj
28 1 obj
5918 
endobj
29 1 obj
/DeviceRGB 
endobj
30 1 obj
/DeviceGray 
endobj
31 1 obj
<< 
/Type /Group 
/S /Transparency 
/I false 
/K false 
/CS /DeviceRGB 
>> 
endobj
32 1 obj
<< /Height 128 /Width 128 /BitsPerComponent 8 /ColorSpace /DeviceRGB 
/Filter /FlateDecode /Length 33 1 R >> 
stream
+H‰ì—±ã:Eà„B(„BxáA„B„¡
+¡²ú?»™Ô×qG¶Gg4;³ÝÔ½‘ma0Ã0ÃØ@Û¶ÚK8/¿¿¿MÓ<템”ëõJù_.—÷û­½–ÓAmßüãççG{9ç‚þëëkʟ¶ÀëõÒ^ԉ †o>ùþþÖ^ÔY æ§†o€çó©½´S@­Žá·ÛM{iõCç¼7üšHµX9ÔäüéRÖ^`͌Â5çøÀt,󙓠Køýn>?3KÅ\¸Fº®†¦ïÝ-`:&ΜÔöþXΝ`:&
+µý”?\¦c’P3;ÍO
?…?:é˜(\ÔðNþ¨¦c"PÃÙâ†?Q¦c pQ«{ó§Yôó”2Û
+5¹7ü±h"u0ۃW¸ùS™ŽI±$\á2!,\á2ÛOX¸Âe:¶Žp…Ëtlá
+ͨÎ,j:Ƅ/\á2‹ƒ/\á2‹€/\ôRh¥¥?—^°¦c+0…«mÝ`éŒòþOÓ1>LáÂÙfÄ;#á,j:æ…)\¨·«ïËtŒS¸®×PþÞWó”é˜S¸èž]Åk
+¦ca˜Â…ó❗LÇð…•
+¹ßMǶá5êÒ<¿4ù|6¶éØø…“̦ü½ÇW×uÚ(î±èlٓ¿é˜
+}Hsþ‡ó7›`
+—lþÞCìœ:†Âå9·æ߶+1ØÂåT׭績sÔÙfQ.jËÕÜðôŽËÿä:Æ®ˆüûžõ(<Êú¾×&|á¾]eõë´:¶I¸°¤òΪc›„+"þ£†óéØVáZMlgþ§Ò±áÂB{ړ¿÷µêX„pm͟#NDÇ^0»DdEEz+›ÿp‹.,œÛçÜï1Ϭ^Çpæd
+×Öü7²áÇÖ¤cÑ……‹Hþë5’TJ«ùw]ü“kÕ±ÂåŽ+s"ªyÕ§cÔBND[…+]þ•é˜ˆpmÊ?úZ™ª&®ÕSbÎþ‡W£cRÂÅiQÁü‡ZtLJ¸øù‹nC:&(\XmëÏ_j
Ç×1Aáâ„#žÿ¡uLV¸øùn±áÈ:&+\X8¥§xËT×kóùC c)„K+ÿÃéX"ár
+Gô:öÄ¿ëX:–H¸°¼¤ø.˜ru,p)æ?GÇÒ	Öç
ÿÙ[~*œEÔ±¤Â……Ç2‘îëÊ×±¤Â¥ž?mgÇ¥c©…ÏätwÍX%ëXjáÂÂ!uþC©:–A¸
+É¿@Cá¢&IxÉO¼±JÓ±lÂÅhÅߋ:v¿ßµÂÏ)\«ùÓ)˜ç«ËÑ1®¤3§S*ûn(FÇ2W9ù¾ÛÿñxdÎ…+õÌé”Ó„Ïg¾¯V×±üÂUZ¡ŽåœEᢿenþJKÇT„«À¬mÛÔák	W™•_Ç´„«ÌʬcŠÂUlåÔ1z¹°Ýt~5M›mûßÛ‹BÐچÙtL]¸¦ß‹-7mF•1,Ž©×¾3õ9пª¬*µŽ=À7T„‹ÎœUèŒÌ¿°Ô:V‚pá°±„Ê]NÇpæT.<f—P¹˜éX9…²³„ÖTœBÇZ8sµ&=~þÔ/*+×±¢„‹Ÿ?]OZ‹”Õ±r„ËûӖPlA+D¸¦Âo‰®Ó\§”Ž• \N9šãE}":Vˆp9õ|º»é{ýuî×±„kë+ ÏUÄÄ[{t¬áZ*êZà¼A(yº›g¬h+G¸Ž^0<²t¬á:zEèXQÂUAA/¯èXQÂUAmÒ1.j~úÌjOá-°¤cŽp‰ðê
+—‘Ô1G¸Œ¤\>u…ËHÍ\Çhì¹ٙoÃ0Ã0Ã0è›?�7…ŒÕ
endstream
endobj
33 1 obj
1434 
endobj
34 1 obj
<< /Filter /FlateDecode /Length 37 1 R >> 
stream
+H‰\”ÏnÛ0ƟÀïÀãvˆ¬¿”94)+tE/Až«tœ´sœ}ûQ¶e{ƒ(ü…"?~’Sn_êË1œº¡»¼ÂÕU¹«žÃ÷6>Çì-åÝ¥	mf<®×Û]Q~«>B›öÜÇ®	ðiS5.Äçò!žãOB]Kq¹kÃ[ïctó»jùc<uáiŒ¶ñx¤àP5gŠ6/ÍK{É¥Ô ¤EhŒ"å¡©º¡ÿ˜{ßV§ókՆSý1²õúz»)¤§}.8D(Ê»@;ã[èkÇcèÚXC)`eàX¬tZ›´JN+ñ¼öüWqèKò¡dzî¾y
·ü¦ÏWØ?rx‚b¥`%™Þ(*혚c2µ)„gN:±HhþIO®ÇÔ)íU܃`ÖZ¥ûjÉœˆeè…K¨ÐJŠµ@.)VÚ£€º°L"ÀQkC	œkç€3+¼U‹X	ÔƁ¬8ãÎ9cŠµÔnjA1z¥°ß2¨ ä÷YæŠÚze
äI&PÓ(Ž»ÈñL(eU<Ӝê.;y†ŽtNb’ŸBúYló<3&Î%²#¹ËlY’MÍJ³éÿKÝßˤ1Ž²H¾–ÊÑiRÔQZQ%³¥Dƒ	h/èr-€å–«ÞËIú"„§¥é$€Ê¦ã0¦W#É&‰ºßcÑ&AŠIÄÞ~ch¥XKcݬ8ƒd¿Åtå&äi“E9ñLÒpzه¬ò\ªIŠgÆ;T³Ö	Ìó,Ð03þ¤&WØt@“qýÝpÆÒëϸt×Ñ#ýÌàPÜÜnŠ¿�èP
endstream
endobj
37 1 obj
606 
endobj
38 1 obj
<< /Type /Metadata /Subtype /XML /Length 818 >> 
stream
+<?xpacket begin='' id='W5M0MpCehiHzreSzNTczkc9d' bytes='818'?>
+
+<rdf:RDF xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#'
+ xmlns:iX='http://ns.adobe.com/iX/1.0/'>
+
+ <rdf:Description about=''
+  xmlns='http://ns.adobe.com/pdf/1.3/'
+  xmlns:pdf='http://ns.adobe.com/pdf/1.3/'>
+  <pdf:CreationDate>2004-06-09T15:24:31Z</pdf:CreationDate>
+  <pdf:ModDate>2004-06-09T22:33:20+02:00</pdf:ModDate>
+ </rdf:Description>
+
+ <rdf:Description about=''
+  xmlns='http://ns.adobe.com/xap/1.0/'
+  xmlns:xap='http://ns.adobe.com/xap/1.0/'>
+  <xap:CreateDate>2004-06-09T15:24:31Z</xap:CreateDate>
+  <xap:ModifyDate>2004-06-09T22:33:20+02:00</xap:ModifyDate>
+  <xap:CreatorTool>Adobe Illustrator 10</xap:CreatorTool>
+  <xap:MetadataDate>2004-06-09T22:33:20+02:00</xap:MetadataDate>
+ </rdf:Description>
+
+</rdf:RDF>
+<?xpacket end='r'?>
endstream
endobj
64 1 obj
<< 
/Private 65 1 R 
/LastModified (D:20040609223319+02'00')
>> 
endobj
65 1 obj
<< 
/CreatorVersion 10 
/ContainerVersion 9 
/RoundtripVersion 10 
/AIMetaData 7 1 R 
/AIPrivateData1 8 1 R 
/AIPrivateData2 9 1 R 
/AIPrivateData3 11 1 R 
/AIPrivateData4 13 1 R 
/AIPrivateData5 15 1 R 
/AIPrivateData6 17 1 R 
/AIPrivateData7 19 1 R 
/AIPrivateData8 21 1 R 
/AIPrivateData9 23 1 R 
/AIPrivateData10 25 1 R 
/AIPrivateData11 27 1 R 
/NumBlock 11 
>> 
endobj
xref
0 69 
0000000004 65535 f 
0000000016 00000 n 
0000000087 00000 n 
0000000151 00000 n 
0000000006 00003 f 
0000000310 00000 n 
0000000035 00002 f 
0000000625 00001 n 
0000001743 00001 n 
0000008033 00001 n 
0000025710 00001 n 
0000025733 00001 n 
0000043169 00001 n 
0000043192 00001 n 
0000062587 00001 n 
0000062610 00001 n 
0000082831 00001 n 
0000082854 00001 n 
0000095398 00001 n 
0000095421 00001 n 
0000099362 00001 n 
0000099384 00001 n 
0000114239 00001 n 
0000114262 00001 n 
0000137642 00001 n 
0000137665 00001 n 
0000158526 00001 n 
0000158549 00001 n 
0000164549 00001 n 
0000164571 00001 n 
0000164599 00001 n 
0000164628 00001 n 
0000164720 00001 n 
0000166299 00001 n 
0000166321 00001 n 
0000000036 00002 f 
0000000039 00002 f 
0000167005 00001 n 
0000167026 00001 n 
0000000040 00001 f 
0000000041 00001 f 
0000000042 00001 f 
0000000043 00001 f 
0000000044 00001 f 
0000000045 00001 f 
0000000046 00001 f 
0000000047 00001 f 
0000000048 00001 f 
0000000049 00001 f 
0000000050 00001 f 
0000000051 00001 f 
0000000052 00001 f 
0000000053 00001 f 
0000000054 00001 f 
0000000055 00001 f 
0000000056 00001 f 
0000000057 00001 f 
0000000058 00001 f 
0000000059 00001 f 
0000000060 00001 f 
0000000061 00001 f 
0000000062 00001 f 
0000000063 00001 f 
0000000066 00001 f 
0000167928 00001 n 
0000168009 00001 n 
0000000067 00001 f 
0000000068 00001 f 
0000000000 00001 f 
trailer
<<
/Size 69
/Info 3 0 R 
/Root 1 0 R 
/ID[<1068b0a4a34e07a1755758ff97cb023e><c77ab292fb398145e27764e8bdf048da>]
>>
startxref
168393
%%EOF
\ No newline at end of file
diff --git a/interfaces/ContentHistory.py b/interfaces/ContentHistory.py
new file mode 100755
index 0000000..2046ab4
--- /dev/null
+++ b/interfaces/ContentHistory.py
@@ -0,0 +1,28 @@
+from zope.interface import Interface
+
+class IContentHistory(Interface):
+	"""
+	Utility to manage historical entries of a content
+	"""
+	
+	def listEntries() :
+		"""
+		Return historical entries of the content
+		"""
+	
+	def getHistoricalRevisionByKey(key) :
+		"""
+		Return the object revision at state targeted by key.
+		"""
+	
+	def compare(leftkey, rightkey) :
+		"""
+		Return formated comparision of 2 revisions of content
+		"""
+	
+	def restore(key) :
+		"""
+		Restore the content by editing chosen versionned attributes.
+		example: for a Document, only the textual content will be restored.
+				 Metadata or talkback stay unchanged.
+		"""
\ No newline at end of file
diff --git a/interfaces/EmailNotification.py b/interfaces/EmailNotification.py
new file mode 100755
index 0000000..959e4de
--- /dev/null
+++ b/interfaces/EmailNotification.py
@@ -0,0 +1,6 @@
+from zope.interface import Interface
+
+class IEmailNotificationSettings(Interface):
+	"""
+	Utility to manage email notification settings
+	"""
diff --git a/interfaces/__init__.py b/interfaces/__init__.py
new file mode 100755
index 0000000..61478dc
--- /dev/null
+++ b/interfaces/__init__.py
@@ -0,0 +1,5 @@
+""" Plinn.interfaces package"""
+from ContentHistory import IContentHistory
+from EmailNotification import IEmailNotificationSettings
+from events import IObjectPositionModified, \
+				   IZopeShutdownEvent
diff --git a/interfaces/events.py b/interfaces/events.py
new file mode 100644
index 0000000..1aed56d
--- /dev/null
+++ b/interfaces/events.py
@@ -0,0 +1,41 @@
+# -*- coding: utf-8 -*-
+#######################################################################################
+#   Plinn - http://plinn.org                                                          #
+#   Copyright © 2009  Benoît PIN <benoit.pin@ensmp.fr>                                #
+#                                                                                     #
+#   This program is free software; you can redistribute it and/or                     #
+#   modify it under the terms of the GNU General Public License                       #
+#   as published by the Free Software Foundation; either version 2                    #
+#   of the License, or (at your option) any later version.                            #
+#                                                                                     #
+#   This program is distributed in the hope that it will be useful,                   #
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of                    #
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                     #
+#   GNU General Public License for more details.                                      #
+#                                                                                     #
+#   You should have received a copy of the GNU General Public License                 #
+#   along with this program; if not, write to the Free Software                       #
+#   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.   #
+#######################################################################################
+"""
+Plinn event interfaces.
+
+$Id: events.py 1480 2009-03-19 19:15:52Z pin $
+$URL: http://svn.cri.ensmp.fr/svn/Plinn/branches/CMF-2.1/interfaces/events.py $
+"""
+from zope.interface import Interface, Attribute
+
+class IObjectPositionModified(Interface) :
+	"""
+	the object position has changed in his container
+	"""
+	
+	object = Attribute("The object that change position.")
+	parent = Attribute("The container of the object.")
+	position = Attribute("The new position of the object in its container.")
+
+
+class IZopeShutdownEvent(Interface) :
+	"""
+	zope is shuting down
+	"""
\ No newline at end of file
diff --git a/interfaces/portal_membership.py b/interfaces/portal_membership.py
new file mode 100755
index 0000000..86f1320
--- /dev/null
+++ b/interfaces/portal_membership.py
@@ -0,0 +1,27 @@
+from Products.CMFDefault.interfaces.portal_membership \
+		import portal_membership as BaseInterface
+
+
+class portal_membership(BaseInterface):
+	""" Declare product-specific APIs for Plinn's tool.
+	"""
+
+	def getCandidateLocalRoles(self, obj) :
+		""" What local roles can I assign?
+			If I am a manager I can assign every portal roles
+			If I am a simple member, I can assign my roles or 'possible_local_roles'
+			from Plinn type information patch
+		"""
+
+	def getMemberFullNameById(self, userid) :
+		""" Return	the best formated representation of user fullname.
+			
+			Return NAME Surname or 
+			NAME or Surname or userid
+		 """
+	
+	def getMembers(self, users) :
+		""" Return wraped users """
+	
+	def getOtherMembers(self, users) :
+		""" Return the complement of global members set """
\ No newline at end of file
diff --git a/license.txt b/license.txt
new file mode 100755
index 0000000..3912109
--- /dev/null
+++ b/license.txt
@@ -0,0 +1,340 @@
+		    GNU GENERAL PUBLIC LICENSE
+		       Version 2, June 1991
+
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.
+                       51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+			    Preamble
+
+  The licenses for most software are designed to take away your
+freedom to share and change it.  By contrast, the GNU General Public
+License is intended to guarantee your freedom to share and change free
+software--to make sure the software is free for all its users.  This
+General Public License applies to most of the Free Software
+Foundation's software and to any other program whose authors commit to
+using it.  (Some other Free Software Foundation software is covered by
+the GNU Library General Public License instead.)  You can apply it to
+your programs, too.
+
+  When we speak of free software, we are referring to freedom, not
+price.  Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+this service if you wish), that you receive source code or can get it
+if you want it, that you can change the software or use pieces of it
+in new free programs; and that you know you can do these things.
+
+  To protect your rights, we need to make restrictions that forbid
+anyone to deny you these rights or to ask you to surrender the rights.
+These restrictions translate to certain responsibilities for you if you
+distribute copies of the software, or if you modify it.
+
+  For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must give the recipients all the rights that
+you have.  You must make sure that they, too, receive or can get the
+source code.  And you must show them these terms so they know their
+rights.
+
+  We protect your rights with two steps: (1) copyright the software, and
+(2) offer you this license which gives you legal permission to copy,
+distribute and/or modify the software.
+
+  Also, for each author's protection and ours, we want to make certain
+that everyone understands that there is no warranty for this free
+software.  If the software is modified by someone else and passed on, we
+want its recipients to know that what they have is not the original, so
+that any problems introduced by others will not reflect on the original
+authors' reputations.
+
+  Finally, any free program is threatened constantly by software
+patents.  We wish to avoid the danger that redistributors of a free
+program will individually obtain patent licenses, in effect making the
+program proprietary.  To prevent this, we have made it clear that any
+patent must be licensed for everyone's free use or not licensed at all.
+
+  The precise terms and conditions for copying, distribution and
+modification follow.
+
+		    GNU GENERAL PUBLIC LICENSE
+   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+  0. This License applies to any program or other work which contains
+a notice placed by the copyright holder saying it may be distributed
+under the terms of this General Public License.  The "Program", below,
+refers to any such program or work, and a "work based on the Program"
+means either the Program or any derivative work under copyright law:
+that is to say, a work containing the Program or a portion of it,
+either verbatim or with modifications and/or translated into another
+language.  (Hereinafter, translation is included without limitation in
+the term "modification".)  Each licensee is addressed as "you".
+
+Activities other than copying, distribution and modification are not
+covered by this License; they are outside its scope.  The act of
+running the Program is not restricted, and the output from the Program
+is covered only if its contents constitute a work based on the
+Program (independent of having been made by running the Program).
+Whether that is true depends on what the Program does.
+
+  1. You may copy and distribute verbatim copies of the Program's
+source code as you receive it, in any medium, provided that you
+conspicuously and appropriately publish on each copy an appropriate
+copyright notice and disclaimer of warranty; keep intact all the
+notices that refer to this License and to the absence of any warranty;
+and give any other recipients of the Program a copy of this License
+along with the Program.
+
+You may charge a fee for the physical act of transferring a copy, and
+you may at your option offer warranty protection in exchange for a fee.
+
+  2. You may modify your copy or copies of the Program or any portion
+of it, thus forming a work based on the Program, and copy and
+distribute such modifications or work under the terms of Section 1
+above, provided that you also meet all of these conditions:
+
+    a) You must cause the modified files to carry prominent notices
+    stating that you changed the files and the date of any change.
+
+    b) You must cause any work that you distribute or publish, that in
+    whole or in part contains or is derived from the Program or any
+    part thereof, to be licensed as a whole at no charge to all third
+    parties under the terms of this License.
+
+    c) If the modified program normally reads commands interactively
+    when run, you must cause it, when started running for such
+    interactive use in the most ordinary way, to print or display an
+    announcement including an appropriate copyright notice and a
+    notice that there is no warranty (or else, saying that you provide
+    a warranty) and that users may redistribute the program under
+    these conditions, and telling the user how to view a copy of this
+    License.  (Exception: if the Program itself is interactive but
+    does not normally print such an announcement, your work based on
+    the Program is not required to print an announcement.)
+
+These requirements apply to the modified work as a whole.  If
+identifiable sections of that work are not derived from the Program,
+and can be reasonably considered independent and separate works in
+themselves, then this License, and its terms, do not apply to those
+sections when you distribute them as separate works.  But when you
+distribute the same sections as part of a whole which is a work based
+on the Program, the distribution of the whole must be on the terms of
+this License, whose permissions for other licensees extend to the
+entire whole, and thus to each and every part regardless of who wrote it.
+
+Thus, it is not the intent of this section to claim rights or contest
+your rights to work written entirely by you; rather, the intent is to
+exercise the right to control the distribution of derivative or
+collective works based on the Program.
+
+In addition, mere aggregation of another work not based on the Program
+with the Program (or with a work based on the Program) on a volume of
+a storage or distribution medium does not bring the other work under
+the scope of this License.
+
+  3. You may copy and distribute the Program (or a work based on it,
+under Section 2) in object code or executable form under the terms of
+Sections 1 and 2 above provided that you also do one of the following:
+
+    a) Accompany it with the complete corresponding machine-readable
+    source code, which must be distributed under the terms of Sections
+    1 and 2 above on a medium customarily used for software interchange; or,
+
+    b) Accompany it with a written offer, valid for at least three
+    years, to give any third party, for a charge no more than your
+    cost of physically performing source distribution, a complete
+    machine-readable copy of the corresponding source code, to be
+    distributed under the terms of Sections 1 and 2 above on a medium
+    customarily used for software interchange; or,
+
+    c) Accompany it with the information you received as to the offer
+    to distribute corresponding source code.  (This alternative is
+    allowed only for noncommercial distribution and only if you
+    received the program in object code or executable form with such
+    an offer, in accord with Subsection b above.)
+
+The source code for a work means the preferred form of the work for
+making modifications to it.  For an executable work, complete source
+code means all the source code for all modules it contains, plus any
+associated interface definition files, plus the scripts used to
+control compilation and installation of the executable.  However, as a
+special exception, the source code distributed need not include
+anything that is normally distributed (in either source or binary
+form) with the major components (compiler, kernel, and so on) of the
+operating system on which the executable runs, unless that component
+itself accompanies the executable.
+
+If distribution of executable or object code is made by offering
+access to copy from a designated place, then offering equivalent
+access to copy the source code from the same place counts as
+distribution of the source code, even though third parties are not
+compelled to copy the source along with the object code.
+
+  4. You may not copy, modify, sublicense, or distribute the Program
+except as expressly provided under this License.  Any attempt
+otherwise to copy, modify, sublicense or distribute the Program is
+void, and will automatically terminate your rights under this License.
+However, parties who have received copies, or rights, from you under
+this License will not have their licenses terminated so long as such
+parties remain in full compliance.
+
+  5. You are not required to accept this License, since you have not
+signed it.  However, nothing else grants you permission to modify or
+distribute the Program or its derivative works.  These actions are
+prohibited by law if you do not accept this License.  Therefore, by
+modifying or distributing the Program (or any work based on the
+Program), you indicate your acceptance of this License to do so, and
+all its terms and conditions for copying, distributing or modifying
+the Program or works based on it.
+
+  6. Each time you redistribute the Program (or any work based on the
+Program), the recipient automatically receives a license from the
+original licensor to copy, distribute or modify the Program subject to
+these terms and conditions.  You may not impose any further
+restrictions on the recipients' exercise of the rights granted herein.
+You are not responsible for enforcing compliance by third parties to
+this License.
+
+  7. If, as a consequence of a court judgment or allegation of patent
+infringement or for any other reason (not limited to patent issues),
+conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License.  If you cannot
+distribute so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you
+may not distribute the Program at all.  For example, if a patent
+license would not permit royalty-free redistribution of the Program by
+all those who receive copies directly or indirectly through you, then
+the only way you could satisfy both it and this License would be to
+refrain entirely from distribution of the Program.
+
+If any portion of this section is held invalid or unenforceable under
+any particular circumstance, the balance of the section is intended to
+apply and the section as a whole is intended to apply in other
+circumstances.
+
+It is not the purpose of this section to induce you to infringe any
+patents or other property right claims or to contest validity of any
+such claims; this section has the sole purpose of protecting the
+integrity of the free software distribution system, which is
+implemented by public license practices.  Many people have made
+generous contributions to the wide range of software distributed
+through that system in reliance on consistent application of that
+system; it is up to the author/donor to decide if he or she is willing
+to distribute software through any other system and a licensee cannot
+impose that choice.
+
+This section is intended to make thoroughly clear what is believed to
+be a consequence of the rest of this License.
+
+  8. If the distribution and/or use of the Program is restricted in
+certain countries either by patents or by copyrighted interfaces, the
+original copyright holder who places the Program under this License
+may add an explicit geographical distribution limitation excluding
+those countries, so that distribution is permitted only in or among
+countries not thus excluded.  In such case, this License incorporates
+the limitation as if written in the body of this License.
+
+  9. The Free Software Foundation may publish revised and/or new versions
+of the General Public License from time to time.  Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+Each version is given a distinguishing version number.  If the Program
+specifies a version number of this License which applies to it and "any
+later version", you have the option of following the terms and conditions
+either of that version or of any later version published by the Free
+Software Foundation.  If the Program does not specify a version number of
+this License, you may choose any version ever published by the Free Software
+Foundation.
+
+  10. If you wish to incorporate parts of the Program into other free
+programs whose distribution conditions are different, write to the author
+to ask for permission.  For software which is copyrighted by the Free
+Software Foundation, write to the Free Software Foundation; we sometimes
+make exceptions for this.  Our decision will be guided by the two goals
+of preserving the free status of all derivatives of our free software and
+of promoting the sharing and reuse of software generally.
+
+			    NO WARRANTY
+
+  11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
+FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN
+OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
+PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
+OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS
+TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE
+PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
+REPAIR OR CORRECTION.
+
+  12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
+REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
+INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
+OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
+TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
+YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
+PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
+POSSIBILITY OF SUCH DAMAGES.
+
+		     END OF TERMS AND CONDITIONS
+
+	    How to Apply These Terms to Your New Programs
+
+  If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+  To do so, attach the following notices to the program.  It is safest
+to attach them to the start of each source file to most effectively
+convey the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+    <one line to give the program's name and a brief idea of what it does.>
+    Copyright (C) <year>  <name of author>
+
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 2 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this program; if not, write to the Free Software
+    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+
+
+Also add information on how to contact you by electronic and paper mail.
+
+If the program is interactive, make it output a short notice like this
+when it starts in an interactive mode:
+
+    Gnomovision version 69, Copyright (C) year name of author
+    Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+    This is free software, and you are welcome to redistribute it
+    under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+parts of the General Public License.  Of course, the commands you use may
+be called something other than `show w' and `show c'; they could even be
+mouse-clicks or menu items--whatever suits your program.
+
+You should also get your employer (if you work as a programmer) or your
+school, if any, to sign a "copyright disclaimer" for the program, if
+necessary.  Here is a sample; alter the names:
+
+  Yoyodyne, Inc., hereby disclaims all copyright interest in the program
+  `Gnomovision' (which makes passes at compilers) written by James Hacker.
+
+  <signature of Ty Coon>, 1 April 1989
+  Ty Coon, President of Vice
+
+This General Public License does not permit incorporating your program into
+proprietary programs.  If your program is a subroutine library, you may
+consider it more useful to permit linking proprietary applications with the
+library.  If this is what you want to do, use the GNU Library General
+Public License instead of this License.
diff --git a/locales/en/LC_MESSAGES/plinn.po b/locales/en/LC_MESSAGES/plinn.po
new file mode 100644
index 0000000..2937bf6
--- /dev/null
+++ b/locales/en/LC_MESSAGES/plinn.po
@@ -0,0 +1,1858 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: Plinn 2.0\n"
+"POT-Creation-Date: Thu Dec  6 14:58:49 2007\n"
+"PO-Revision-Date: 2007-10-17 14:43+0200\n"
+"Last-Translator:  Benoît PIN\n"
+"Language-Team: CRI http://cri.ensmp.fr\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"Language-Code: en\n"
+"Language-Name: English\n"
+"Preferred-Encodings: utf-8 latin1\n"
+"Domain: plinn\n"
+"X-Is-Fallback-For: en-us\n"
+
+#: profiles/default/actions.xml:102
+msgid "List"
+msgstr "List"
+
+#: profiles/default/actions.xml:11 skins/generic/gruf_macros.pt:250
+#: skins/generic/gruf_macros.pt:365
+msgid "Login"
+msgstr ""
+
+#: profiles/default/actions.xml:116
+msgid "Manage Boxes"
+msgstr ""
+
+#: profiles/default/actions.xml:127 skins/generic/send_email_form.pt:23
+msgid "Send an email"
+msgstr ""
+
+#: profiles/default/actions.xml:138
+msgid "Undo"
+msgstr ""
+
+#: profiles/default/actions.xml:149
+msgid "Configure Portal"
+msgstr ""
+
+#: profiles/default/actions.xml:176
+msgid "Add comment..."
+msgstr ""
+
+#: profiles/default/actions.xml:190
+msgid "Syndicate"
+msgstr ""
+
+#: profiles/default/actions.xml:22
+msgid "My stuff"
+msgstr ""
+
+#: profiles/default/actions.xml:33
+msgid "Add to favorites"
+msgstr ""
+
+#: profiles/default/actions.xml:44
+msgid "My favorites"
+msgstr ""
+
+#: profiles/default/actions.xml:55
+msgid "Preferences"
+msgstr ""
+
+#: profiles/default/actions.xml:66
+msgid "Log out"
+msgstr ""
+
+#: profiles/default/actions.xml:77
+msgid "Logged in"
+msgstr ""
+
+#: profiles/default/actions.xml:88
+msgid "Join"
+msgstr ""
+
+#: profiles/default/workflows/default_workflow/scripts/sendNotificationEmail.py:53
+#: profiles/default/workflows/folder_workflow/scripts/sendNotificationEmail.py:53
+#: profiles/default/workflows/portfolio_workflow/scripts/sendNotificationEmail.py:53
+msgid "Document state change notificaction"
+msgstr ""
+
+#: profiles/default/workflows/member_workflow/scripts/sendNotificationEmail.py:36
+msgid ""
+"\n"
+"You have been registered as a member of \"%(portal_title)s\", which\n"
+"allows you to personalize your view of the website and participate in\n"
+"the community.\n"
+msgstr ""
+
+#: profiles/default/workflows/member_workflow/scripts/sendNotificationEmail.py:44
+msgid ""
+"You will receive an other mail with your randomly-generated\n"
+"password. Once you have logged in with this password, you\n"
+"may change it to anything you like."
+msgstr ""
+
+#: profiles/default/workflows/member_workflow/scripts/sendNotificationEmail.py:56
+msgid "your registration has been accepted"
+msgstr ""
+
+#: skins/content/cal_calendar_view.pt:25
+msgid "Add a new event..."
+msgstr ""
+
+#: skins/content/cal_calendar_view.pt:32 skins/content/cal_calendar_view.pt:35
+msgid "Remove event..."
+msgstr ""
+
+#: skins/content/cal_calendar_view.pt:45
+msgid "The next click over an event will remove it!"
+msgstr ""
+
+#: skins/content/cal_calendar_view.pt:46
+msgid "Cancel delete mode"
+msgstr ""
+
+#: skins/content/content_info.pt:16 skins/content/file_info.pt:12
+#: skins/content/list_pending_contents.pt:31
+#: skins/custom_generic/talkback_tree.pt:65 skins/generic/gruf_macros.pt:51
+#: skins/generic/gruf_macros.pt:307 skins/generic/header_widgets.pt:18
+msgid "Title"
+msgstr ""
+
+#: skins/content/content_info.pt:20 skins/content/file_info.pt:20
+msgid "Created"
+msgstr ""
+
+#: skins/content/content_info.pt:24 skins/content/file_info.pt:24
+msgid "Modified"
+msgstr ""
+
+#: skins/content/content_info.pt:9 skins/content/file_info.pt:5
+msgid "Preview:"
+msgstr ""
+
+#: skins/content/dateCriterionResolvedDescription.py:17
+msgid "search from the beginning of the world until %s"
+msgstr ""
+
+#: skins/content/dateCriterionResolvedDescription.py:19
+msgid "search from %s and the end of the world"
+msgstr ""
+
+#: skins/content/dateCriterionResolvedDescription.py:21
+msgid "search between %s and %s"
+msgstr ""
+
+#: skins/content/file_info.pt:16
+msgid "Type"
+msgstr ""
+
+#: skins/content/file_preview.pt:15
+msgid "No preview available for this file"
+msgstr ""
+
+#: skins/content/list_pending_contents.pt:23
+msgid "Pending documents"
+msgstr ""
+
+#: skins/content/list_pending_contents.pt:37
+msgid "Submit by:"
+msgstr ""
+
+#: skins/content/list_pending_contents.pt:42 skins/generic/wf_macros.pt:16
+msgid "Date"
+msgstr ""
+
+#: skins/content/list_pending_contents.pt:52
+#: skins/content/topic_edit_template.pt:32
+#: skins/content/topic_edit_template.pt:40
+#: skins/custom_content/event_edit_template.pt:33
+#: skins/custom_content/event_view.pt:24
+#: skins/custom_content/friendlydatec_editform.pt:12
+#: skins/custom_content/friendlydatec_editform.pt:27
+#: skins/custom_content/friendlydatec_editform.pt:45
+#: skins/custom_content/listc_edit.pt:13 skins/custom_content/listc_edit.pt:26
+#: skins/custom_content/sic_edit.pt:10 skins/custom_content/sic_edit.pt:23
+#: skins/custom_content/sort_edit.pt:12 skins/custom_content/sort_edit.pt:23
+#: skins/custom_content/ssc_edit.pt:12 skins/custom_content/ssc_edit.pt:15
+#: skins/custom_content/topic_view.pt:25
+#: skins/custom_generic/talkback_tree.pt:15
+#: skins/custom_generic/talkback_tree.pt:16
+#: skins/custom_generic/talkback_tree.pt:36
+#: skins/custom_generic/viewThreadsAtBottom.pt:15
+#: skins/generic/calendar_macros.pt:26 skins/generic/calendar_macros.pt:30
+#: skins/generic/calendar_macros.pt:87 skins/generic/calendar_macros.pt:88
+#: skins/generic/gruf_macros.pt:32 skins/generic/gruf_macros.pt:93
+#: skins/generic/gruf_macros.pt:103 skins/generic/gruf_macros.pt:111
+#: skins/generic/gruf_macros.pt:455 skins/generic/gruf_macros.pt:456
+#: skins/generic/gruf_macros.pt:462 skins/generic/header_widgets.pt:189
+#: skins/generic/last_member_logs.pt:1 skins/generic/local_roles_macros.pt:18
+#: skins/generic/local_roles_macros.pt:39
+#: skins/generic/local_roles_macros.pt:44
+#: skins/generic/local_roles_macros.pt:84
+#: skins/generic/local_roles_macros.pt:99
+#: skins/generic/local_roles_macros.pt:122
+#: skins/generic/local_roles_macros.pt:126
+#: skins/generic/local_roles_macros.pt:160
+#: skins/generic/local_roles_macros.pt:174 skins/generic/send_email_form.pt:33
+#: skins/generic/send_email_form.pt:56 skins/generic/tabs.pt:25
+#: skins/generic/tabs.pt:42 skins/generic/wf_macros.pt:27
+msgid "${DYNAMIC_CONTENT}"
+msgstr ""
+
+#: skins/content/topic_edit_template.pt:12
+msgid "Reuse criteria from parent:"
+msgstr ""
+
+#: skins/content/topic_edit_template.pt:13
+msgid "yes"
+msgstr ""
+
+#: skins/content/topic_edit_template.pt:14
+msgid "no"
+msgstr ""
+
+#: skins/content/topic_edit_template.pt:22
+#: skins/custom_content/event_edit_template.pt:135
+msgid "Save"
+msgstr ""
+
+#: skins/content/topic_edit_template.pt:23 skins/generic/gruf_macros.pt:211
+#: skins/generic/gruf_macros.pt:235
+msgid "Remove selected"
+msgstr ""
+
+#: skins/content/topic_edit_template.pt:26
+msgid "New criterion:"
+msgstr ""
+
+#: skins/content/topic_edit_template.pt:29
+msgid "Name:"
+msgstr ""
+
+#: skins/content/topic_edit_template.pt:37
+msgid "Type:"
+msgstr ""
+
+#: skins/content/topic_edit_template.pt:47 skins/generic/gruf_macros.pt:288
+#: skins/generic/gruf_macros.pt:327
+msgid "Add"
+msgstr ""
+
+#: skins/custom_content/discussionitem_view.pt:23
+msgid "Above in thread:"
+msgstr ""
+
+#: skins/custom_content/event_edit_template.pt:115
+#: skins/custom_content/event_view.pt:53 skins/generic/gruf_macros.pt:57
+#: skins/generic/gruf_macros.pt:313 skins/generic/header_widgets.pt:24
+msgid "Description"
+msgstr ""
+
+#: skins/custom_content/event_edit_template.pt:121
+#: skins/custom_content/event_view.pt:29
+msgid "Event URL"
+msgstr ""
+
+#: skins/custom_content/event_edit_template.pt:20
+#: skins/custom_content/event_view.pt:7
+msgid "Event Name"
+msgstr ""
+
+#: skins/custom_content/event_edit_template.pt:24
+#: skins/custom_content/event_view.pt:23
+msgid "Event type"
+msgstr ""
+
+#: skins/custom_content/event_edit_template.pt:27
+#: skins/custom_content/event_view.pt:13
+msgid "Location"
+msgstr ""
+
+#: skins/custom_content/event_edit_template.pt:38
+#: skins/custom_content/event_view.pt:9
+msgid "Contact Name"
+msgstr ""
+
+#: skins/custom_content/event_edit_template.pt:44
+#: skins/custom_content/event_view.pt:15
+msgid "Contact Email"
+msgstr ""
+
+#: skins/custom_content/event_edit_template.pt:50
+#: skins/custom_content/event_view.pt:25
+msgid "Contact Phone"
+msgstr ""
+
+#: skins/custom_content/event_edit_template.pt:67
+msgid "Beginning"
+msgstr ""
+
+#: skins/custom_content/event_edit_template.pt:78
+#: skins/custom_content/event_edit_template.pt:103 skins/generic/widgets.pt:92
+msgid ""
+"${month}&nbsp;/&nbsp;${day}&nbsp;/&nbsp;${year}&nbsp;&nbsp;${hour}&nbsp;:"
+"&nbsp;${minute}"
+msgstr ""
+
+#: skins/custom_content/event_edit_template.pt:92
+msgid "End"
+msgstr ""
+
+#: skins/custom_content/event_view.pt:40
+msgid "Start Date"
+msgstr ""
+
+#: skins/custom_content/event_view.pt:45
+msgid "Stop Date"
+msgstr ""
+
+#: skins/custom_content/friendlydatec_editform.pt:14
+msgid "At the least:"
+msgstr ""
+
+#: skins/custom_content/friendlydatec_editform.pt:17
+msgid "At the most:"
+msgstr ""
+
+#: skins/custom_content/friendlydatec_editform.pt:20
+msgid "Within the day:"
+msgstr ""
+
+#. Default: "old"
+#: skins/custom_content/friendlydatec_editform.pt:37
+msgid "daterange_old"
+msgstr ""
+
+#. Default: "ahead"
+#: skins/custom_content/friendlydatec_editform.pt:40
+msgid "daterange_ahead"
+msgstr ""
+
+#: skins/custom_content/listc_edit.pt:16
+msgid "Operator:"
+msgstr ""
+
+#: skins/custom_content/listc_edit.pt:18
+msgid "or"
+msgstr ""
+
+#: skins/custom_content/listc_edit.pt:21
+#: skins/custom_generic/talkback_tree.pt:29
+msgid "and"
+msgstr ""
+
+#: skins/custom_content/sic_edit.pt:15
+msgid "Minimum"
+msgstr ""
+
+#: skins/custom_content/sic_edit.pt:18
+msgid "Maximum"
+msgstr ""
+
+#: skins/custom_content/sic_edit.pt:21
+msgid "Min/Max"
+msgstr ""
+
+#: skins/custom_content/sort_edit.pt:16
+msgid "Regular sort"
+msgstr ""
+
+#: skins/custom_content/sort_edit.pt:20
+msgid "Reversed sort"
+msgstr ""
+
+#: skins/custom_content/topic_view.pt:41
+msgid "No result"
+msgstr ""
+
+#: skins/custom_content/topic_view.pt:45
+msgid "Subtopics"
+msgstr ""
+
+#: skins/custom_content/topic_view.pt:48
+msgid "Topic"
+msgstr ""
+
+#: skins/custom_control/addtoFavorites.py:15
+msgid "Favorites"
+msgstr ""
+
+#: skins/custom_control/folder_bottom_control.py:17
+msgid "%d item moved to bottom.%d items moved to bottom."
+msgstr ""
+
+#: skins/custom_control/folder_down_control.py:18
+msgid "%d item moved down.%d items moved down."
+msgstr ""
+
+#: skins/custom_control/folder_top_control.py:17
+msgid "%d item moved to top.%d items moved to top."
+msgstr ""
+
+#: skins/custom_control/folder_up_control.py:17
+msgid "%d item moved up.%d items moved up."
+msgstr ""
+
+#: skins/custom_generic/folder_contents_template.pt:26
+msgid "Up"
+msgstr ""
+
+#: skins/custom_generic/folder_contents_template.pt:29
+msgid "Down"
+msgstr ""
+
+#. Default: "by"
+#: skins/custom_generic/folder_contents_template.pt:31
+msgid "move_by"
+msgstr ""
+
+#: skins/custom_generic/folder_contents_template.pt:39
+msgid "Top"
+msgstr ""
+
+#: skins/custom_generic/folder_contents_template.pt:41
+msgid "Bottom"
+msgstr ""
+
+#: skins/custom_generic/mail_password_template.py:30
+msgid "${portal_title}: Membership reminder"
+msgstr ""
+
+#: skins/custom_generic/mail_password_template.py:35
+#: skins/custom_generic/registered_notify_template.py:46
+msgid ""
+"Your member id and password are: Member ID: ${member_id} Password: "
+"${password}"
+msgstr ""
+
+#: skins/custom_generic/mail_password_template.py:37
+#: skins/custom_generic/registered_notify_template.py:48
+msgid "You can use this URL to log in:"
+msgstr ""
+
+#: skins/custom_generic/mail_password_template.py:45
+#: skins/custom_generic/registered_notify_template.py:56
+msgid ""
+"Be aware that this URL might wrap over two lines. If your browser shows an "
+"error message when you try to access the URL please make sure that you put "
+"in the complete string."
+msgstr ""
+
+#: skins/custom_generic/mail_password_template.py:48
+msgid "%Y/%m/%d at %I:%M:%S %p"
+msgstr ""
+
+#: skins/custom_generic/mail_password_template.py:50
+msgid "Request made by IP ${ip} at ${time}"
+msgstr ""
+
+#: skins/custom_generic/main_template_standard.pt:98
+msgid "Skip to content"
+msgstr ""
+
+#: skins/custom_generic/reconfig_template.pt:112
+msgid "Default ajax options"
+msgstr ""
+
+#: skins/custom_generic/reconfig_template.pt:116
+msgid "Enable handling of all clicks over links"
+msgstr ""
+
+#: skins/custom_generic/reconfig_template.pt:121
+msgid "Enable handling of all forms submissions"
+msgstr ""
+
+#: skins/custom_generic/registered_notify_template.py:30
+msgid "${portal_title}: Your Membership Information"
+msgstr ""
+
+#: skins/custom_generic/registered_notify_template.py:35
+msgid ""
+"You have been registered as a member of \"${portal_title}\", which allows "
+"you to personalize your view of the website and participate in the community."
+msgstr ""
+
+#: skins/custom_generic/registered_notify_template.py:39
+msgid "This describes the purpose of the website:"
+msgstr ""
+
+#: skins/custom_generic/registered_notify_template.py:44
+msgid "Visit us at ${portal_url}"
+msgstr ""
+
+#: skins/custom_generic/talkback_tree.pt:24
+msgid "by"
+msgstr ""
+
+#: skins/custom_generic/talkback_tree.pt:33
+msgid "unknown"
+msgstr ""
+
+#. Default: "at"
+#: skins/custom_generic/talkback_tree.pt:34 skins/generic/recent_news.pt:41
+msgid "at_(date)"
+msgstr ""
+
+#: skins/custom_generic/talkback_tree.pt:71
+msgid "Body"
+msgstr ""
+
+#: skins/custom_generic/talkback_tree.pt:79 skins/generic/gruf_macros.pt:77
+#: skins/generic/gruf_macros.pt:410 skins/generic/header_widgets.pt:32
+#: skins/generic/send_email_form.pt:70
+msgid "Validate"
+msgstr ""
+
+#: skins/custom_generic/talkback_tree.pt:82
+msgid "Cancel"
+msgstr ""
+
+#: skins/custom_generic/viewThreadsAtBottom.pt:9
+msgid "Comments:"
+msgstr ""
+
+#. Default: "Previous${number}"
+#: skins/generic/batch_macros.pt:21
+msgid "batch_previous_x_items"
+msgstr ""
+
+#. Default: "Next${number}items"
+#: skins/generic/batch_macros.pt:27
+msgid "batch_next_x_items"
+msgstr ""
+
+#: skins/generic/calendar_macros.pt:162 skins/generic/calendar_macros.pt:164
+msgid "Previous"
+msgstr ""
+
+#: skins/generic/calendar_macros.pt:167
+msgid "Week"
+msgstr ""
+
+#: skins/generic/calendar_macros.pt:169
+msgid "Month"
+msgstr ""
+
+#: skins/generic/calendar_macros.pt:174 skins/generic/calendar_macros.pt:176
+msgid "Next"
+msgstr ""
+
+#: skins/generic/calendar_macros.pt:79 skins/generic/calendar_macros.pt:82
+#: skins/generic/calendar_macros.pt:131 skins/generic/calendar_macros.pt:133
+msgid "Click to see hidden items"
+msgstr ""
+
+#: skins/generic/calendar_macros.pt:89
+msgid "${dayName}&nbsp;${monthName}&nbsp;${dayNumber}"
+msgstr ""
+
+#: skins/generic/content_depublish_form.pt:12
+msgid "Select the destination state"
+msgstr ""
+
+#: skins/generic/content_depublish_form.pt:15
+msgid "Private"
+msgstr ""
+
+#: skins/generic/content_depublish_form.pt:19
+msgid "Shared"
+msgstr ""
+
+#: skins/generic/content_depublish_form.pt:23
+msgid "Depublish"
+msgstr ""
+
+#: skins/generic/content_depublish_form.pt:5
+msgid "Depublish: \"${docTitle}\""
+msgstr ""
+
+#: skins/generic/content_depublish_form.pt:7
+msgid "depublish_transition_explanations"
+msgstr ""
+
+#: skins/generic/content_make_private_form.pt:10
+msgid "Make private: \"${docTitle}\""
+msgstr ""
+
+#. Default: "share_transition_explanations"
+#: skins/generic/content_make_private_form.pt:11
+msgid "make_private_transition_explanations"
+msgstr ""
+
+#: skins/generic/content_make_private_form.pt:16
+msgid "Make private"
+msgstr ""
+
+#: skins/generic/content_publish_form.pt:14
+#: skins/generic/content_reject_form.pt:13
+msgid "Notify by e-mail"
+msgstr ""
+
+#: skins/generic/content_publish_form.pt:23
+msgid "Publish"
+msgstr ""
+
+#: skins/generic/content_publish_form.pt:5
+msgid "Publish: \"${docTitle}\""
+msgstr ""
+
+#: skins/generic/content_publish_form.pt:7
+msgid "publish_transition_explanations"
+msgstr ""
+
+#: skins/generic/content_reject_form.pt:22 skins/generic/pending_members.pt:30
+msgid "Reject"
+msgstr ""
+
+#: skins/generic/content_reject_form.pt:5
+msgid "Reject: \"${objectid}\""
+msgstr ""
+
+#: skins/generic/content_reject_form.pt:6
+msgid "reject_transition_explanations"
+msgstr ""
+
+#: skins/generic/content_retract_form.pt:12
+msgid "Retract"
+msgstr ""
+
+#: skins/generic/content_retract_form.pt:5
+msgid "Retract: \"${objectid}\""
+msgstr ""
+
+#: skins/generic/content_retract_form.pt:6
+msgid "retract_transition_explanations"
+msgstr ""
+
+#: skins/generic/content_share_form.pt:10
+msgid "Share: \"${docTitle}\""
+msgstr ""
+
+#: skins/generic/content_share_form.pt:11
+msgid "share_transition_explanations"
+msgstr ""
+
+#: skins/generic/content_share_form.pt:16
+msgid "Share"
+msgstr ""
+
+#: skins/generic/content_submit_form.pt:12
+msgid "Submit"
+msgstr ""
+
+#: skins/generic/content_submit_form.pt:5
+msgid "Submit: \"${objectid}\" for Review."
+msgstr ""
+
+#: skins/generic/content_submit_form.pt:6
+msgid "submit_transition_explanations"
+msgstr ""
+
+#: skins/generic/default_home_page_content.pt:2
+msgid "Welcome to Plinn!"
+msgstr ""
+
+#: skins/generic/default_home_page_content.pt:3
+msgid "This is the default home page."
+msgstr ""
+
+#: skins/generic/default_home_page_content.pt:4
+#: skins/generic/default_member_content.pt:4
+msgid "To change the content just select \"Edit\" in the Tab bar on the top."
+msgstr ""
+
+#: skins/generic/default_member_content.pt:2
+msgid "Default page for ${memberFullName}"
+msgstr ""
+
+#: skins/generic/default_member_content.pt:3
+msgid ""
+"This is the default document created for you when you have been registered "
+"in this portal."
+msgstr ""
+
+#: skins/generic/groups_members.pt:35
+msgid "Members of \"${groupId}\""
+msgstr ""
+
+#: skins/generic/groups_members.pt:47
+msgid "Groups of \"${groupId}\""
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:105
+msgid "Remove"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:112
+msgid "Append"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:129 skins/generic/gruf_macros.pt:164
+msgid "Outside group"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:131 skins/generic/gruf_macros.pt:166
+msgid "Inside group"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:148 skins/generic/gruf_macros.pt:183
+msgid "None"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:197
+msgid "All members"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:210
+msgid "Edit"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:224
+msgid "All groups"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:247
+msgid "Add new member"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:25
+msgid "Group Tree"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:256 skins/generic/gruf_macros.pt:378
+#: skins/generic/last_member_logs.pt:1 skins/generic/pending_members.pt:13
+msgid "Name"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:262 skins/generic/gruf_macros.pt:384
+msgid "Given Name"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:268 skins/generic/gruf_macros.pt:390
+msgid "Password"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:274 skins/generic/gruf_macros.pt:396
+msgid "Confirm"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:280 skins/generic/gruf_macros.pt:402
+msgid "Email address"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:298
+msgid "Add new group"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:301
+msgid "Id"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:371
+msgid "Groups"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:373
+msgid "explicitly:"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:374
+msgid "implicitly:"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:415
+msgid "Tree view by this member"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:416
+msgid "Click here to see the tree viewed by this member &gt;&gt;"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:440
+msgid "collapse all"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:45
+msgid "Identifier"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:471
+msgid "&lt;&lt; Back to member properties"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:63 skins/generic/gruf_macros.pt:319
+msgid "Shared folder"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:66
+msgid "Open shared folder..."
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:69 skins/generic/gruf_macros.pt:321
+msgid "Create"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:90
+msgid "Implicit roles"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:98
+msgid "Explicit roles"
+msgstr ""
+
+#: skins/generic/header_widgets.pt:33
+msgid "Edit all metadata"
+msgstr ""
+
+#: skins/generic/last_member_logs.pt:1
+msgid "Last member login times"
+msgstr ""
+
+#: skins/generic/last_member_logs.pt:1
+msgid "Last login time"
+msgstr ""
+
+#: skins/generic/local_roles_macros.pt:160
+msgid "No more group available for the ${role} role in this folder"
+msgstr ""
+
+#: skins/generic/local_roles_macros.pt:174
+msgid "No group have got the ${role} role in this folder"
+msgstr ""
+
+#: skins/generic/local_roles_macros.pt:39
+#: skins/generic/local_roles_macros.pt:122
+msgid "Current Role: \"${current_role}\""
+msgstr ""
+
+#: skins/generic/local_roles_macros.pt:45
+#: skins/generic/local_roles_macros.pt:127
+msgid "ok"
+msgstr ""
+
+#: skins/generic/local_roles_macros.pt:66
+#: skins/generic/local_roles_macros.pt:148
+msgid "Haven't role"
+msgstr ""
+
+#: skins/generic/local_roles_macros.pt:72
+#: skins/generic/local_roles_macros.pt:150
+msgid "Have role"
+msgstr ""
+
+#: skins/generic/local_roles_macros.pt:84
+msgid "No more member available for the ${role} role in this folder"
+msgstr ""
+
+#: skins/generic/local_roles_macros.pt:99
+msgid "Nobody have got the ${role} role in this folder"
+msgstr ""
+
+#. Default: "%m/%d/%Y %Hh%M"
+#: skins/generic/locale_date_fmt.pt:1
+msgid "locale_date_fmt"
+msgstr ""
+
+#: skins/generic/main_template_macros.pt:108
+msgid "Exit boxes editing"
+msgstr ""
+
+#: skins/generic/pending_members.pt:14
+msgid "Email"
+msgstr ""
+
+#: skins/generic/pending_members.pt:35
+msgid "Register"
+msgstr ""
+
+#: skins/generic/pending_members.pt:9
+msgid "Review members registration"
+msgstr ""
+
+#: skins/generic/recent_news.pt:19
+msgid "News"
+msgstr ""
+
+#: skins/generic/recent_news.pt:34
+msgid "by:"
+msgstr ""
+
+#. Default: "Read More"
+#: skins/generic/recent_news.pt:47
+msgid "read_more"
+msgstr ""
+
+#: skins/generic/recent_news.pt:55
+msgid "No news is good news!"
+msgstr ""
+
+#: skins/generic/reject_member_form.pt:14
+msgid "From:"
+msgstr ""
+
+#: skins/generic/reject_member_form.pt:20
+msgid "To:"
+msgstr ""
+
+#: skins/generic/reject_member_form.pt:27 skins/generic/send_email_form.pt:87
+msgid "Subject:"
+msgstr ""
+
+#: skins/generic/reject_member_form.pt:31
+msgid "Membership request denied"
+msgstr ""
+
+#: skins/generic/reject_member_form.pt:35 skins/generic/send_email_form.pt:92
+msgid "Message body:"
+msgstr ""
+
+#: skins/generic/reject_member_form.pt:39
+msgid ""
+"I'm sorry to have to inform you that your request has been denied. Please "
+"contact the site administrator."
+msgstr ""
+
+#: skins/generic/reject_member_form.pt:45
+msgid "Send"
+msgstr ""
+
+#: skins/generic/reject_member_form.pt:9
+msgid "Reject registration of ${fullname}"
+msgstr ""
+
+#: skins/generic/send_email_form.pt:101
+msgid "Note: This message will be stored in content history."
+msgstr ""
+
+#: skins/generic/send_email_form.pt:27
+msgid "Recipients:"
+msgstr ""
+
+#: skins/generic/send_email_form.pt:38
+msgid "(as copy)"
+msgstr ""
+
+#: skins/generic/send_email_form.pt:53
+msgid "All (${nofpers} persons)"
+msgstr ""
+
+#: skins/generic/send_email_form.pt:60
+msgid "Show list"
+msgstr ""
+
+#: skins/generic/send_email_form.pt:70
+msgid "(not required)"
+msgstr ""
+
+#: skins/generic/send_email_form.pt:81
+msgid "Others (on address by line)"
+msgstr ""
+
+#: skins/generic/send_email_form.pt:98
+msgid "Send email"
+msgstr ""
+
+#: skins/generic/wf_macros.pt:17
+msgid "Actor"
+msgstr ""
+
+#: skins/generic/wf_macros.pt:18
+msgid "Action"
+msgstr ""
+
+#: skins/generic/wf_macros.pt:19
+msgid "Comments"
+msgstr ""
+
+#: skins/generic/wf_macros.pt:20
+msgid "Email sent to"
+msgstr ""
+
+#: skins/generic/wf_macros.pt:28
+msgid "(no comments)"
+msgstr ""
+
+#: skins/generic/wf_macros.pt:33
+msgid "(no email sent)"
+msgstr ""
+
+#: skins/generic/widgets.pt:32 skins/generic/widgets.pt:33
+msgid "Edit metadata"
+msgstr ""
+
+#: skins/generic/widgets.pt:53
+msgid "Clipboard"
+msgstr ""
+
+#: skins/generic/widgets.pt:59
+msgid "Delete"
+msgstr ""
+
+#: skins/generic/widgets.pt:60
+msgid "Empty"
+msgstr ""
+
+#: skins/generic/wysiwyg_support.pt:108
+msgid "Format"
+msgstr ""
+
+#: skins/generic/wysiwyg_support.pt:112
+msgid "Structured text"
+msgstr ""
+
+#: skins/generic/wysiwyg_support.pt:118
+msgid "HTML"
+msgstr ""
+
+#: skins/generic/wysiwyg_support.pt:124
+msgid "Plain text"
+msgstr ""
+
+# from plinn-manual
+msgid "${month}/${day}/${year}&nbsp;&nbsp;${hour}:${minute}:${second}"
+msgstr ""
+
+msgid "%s's Home"
+msgstr ""
+
+msgid "%s's front page"
+msgstr ""
+
+msgid "1 Day"
+msgstr ""
+
+msgid "2 Days"
+msgstr ""
+
+msgid "5 Days"
+msgstr ""
+
+msgid "1 Week"
+msgstr ""
+
+msgid "2 Weeks"
+msgstr ""
+
+msgid "1 Month"
+msgstr ""
+
+msgid "3 Months"
+msgstr ""
+
+msgid "6 Months"
+msgstr ""
+
+msgid "1 Year"
+msgstr ""
+
+msgid "2 years"
+msgstr ""
+
+msgid "Action Box Block"
+msgstr ""
+
+msgid "Action box settings"
+msgstr ""
+
+msgid "Activity block"
+msgstr ""
+
+msgid "Add a document..."
+msgstr ""
+
+msgid "Add an activity"
+msgstr ""
+
+msgid "Add node"
+msgstr ""
+
+msgid "Advanced search"
+msgstr ""
+
+msgid "Anonymous registration"
+msgstr ""
+
+msgid "Appointment"
+msgstr ""
+
+msgid "Append Roles"
+msgstr ""
+
+msgid "Append or remove groups"
+msgstr ""
+
+msgid "Append or remove members"
+msgstr ""
+
+msgid "April"
+msgstr ""
+
+msgid "April_abbr"
+msgstr "Apr"
+
+msgid "Assign local roles: Search Members"
+msgstr ""
+
+msgid "Assign local roles: Search Results"
+msgstr ""
+
+msgid "August"
+msgstr ""
+
+msgid "August_abbr"
+msgstr "Aug"
+
+msgid "B"
+msgstr ""
+
+msgid "Backlinks"
+msgstr ""
+
+msgid "Base folder of members' folders"
+msgstr ""
+
+msgid "Box title:"
+msgstr ""
+
+msgid "Calendar View"
+msgstr ""
+
+msgid "catalog_index_allowedRolesAndUsers"
+msgstr "Allowed roles and users"
+
+msgid "catalog_index_created"
+msgstr "Creation date"
+
+msgid "catalog_index_Creator"
+msgstr "Creator"
+
+msgid "catalog_index_Date"
+msgstr "Date"
+
+msgid "catalog_index_DateTimeOriginal"
+msgstr "Date time original"
+
+msgid "catalog_index_Description"
+msgstr "Description"
+
+msgid "catalog_index_effective"
+msgstr "Effective date"
+
+msgid "catalog_index_expires"
+msgstr "Expiration date"
+
+msgid "catalog_index_getId"
+msgstr "Id"
+
+msgid "catalog_index_listCreators"
+msgstr "Creators"
+
+msgid "catalog_index_modified"
+msgstr "Modification date"
+
+msgid "catalog_index_path"
+msgstr "Relative url"
+
+msgid "catalog_index_portal_type"
+msgstr "Content type"
+
+msgid "catalog_index_review_state"
+msgstr "Review state"
+
+msgid "catalog_index_SearchableText"
+msgstr "Full text"
+
+msgid "catalog_index_Subject"
+msgstr "Subject"
+
+msgid "catalog_index_Title"
+msgstr "Title"
+
+msgid "Categories:"
+msgstr ""
+
+msgid "Change"
+msgstr ""
+
+msgid "Change image:"
+msgstr ""
+
+msgid "Click here to modify roles..."
+msgstr ""
+
+msgid "Click to get raw image"
+msgstr ""
+
+msgid "Click to see image full-size"
+msgstr ""
+
+msgid "Close"
+msgstr ""
+
+msgid "Collapse"
+msgstr ""
+
+msgid "Comment"
+msgstr ""
+
+msgid "Configure ${portal_calendar} Tool"
+msgstr ""
+
+msgid "Container block"
+msgstr ""
+
+msgid "Contributor"
+msgstr ""
+
+msgid "Convention"
+msgstr ""
+
+msgid "Copy"
+msgstr ""
+
+msgid "Create a mosaic document"
+msgstr ""
+
+msgid "Saved changes."
+msgstr ""
+
+msgid "Import a photo zipped file"
+msgstr ""
+
+msgid "send_email"
+msgstr ""
+
+msgid "Set Mapping"
+msgstr ""
+
+msgid "shared_submit"
+msgstr ""
+
+msgid "sort_by_index_created"
+msgstr "Created"
+
+msgid "sort_by_index_DateTimeOriginal"
+msgstr "Date Time Original"
+
+msgid "Criteria"
+msgstr ""
+
+msgid "coordonateur"
+msgstr ""
+
+msgid "Currently assigned local roles"
+msgstr ""
+
+msgid "DateTimeOriginal"
+msgstr ""
+
+msgid "Day"
+msgstr ""
+
+msgid "December"
+msgstr ""
+
+msgid "December_abbr"
+msgstr "Dec"
+
+msgid "demande_avis_tut"
+msgstr ""
+
+msgid "depublish"
+msgstr ""
+
+msgid "depublish_to_private"
+msgstr ""
+
+msgid "depublish_to_shared"
+msgstr ""
+
+msgid "Direct_publish"
+msgstr "Publish"
+
+msgid "Directories"
+msgstr ""
+
+msgid "Directory"
+msgstr ""
+
+msgid "Do you realy want to delete ?"
+msgstr ""
+
+msgid "confirm_layer_delete"
+msgstr "Do you realy want to delete \\\"Layer "
+
+msgid "eleve"
+msgstr ""
+
+msgid "Empty image: upload an image file in \"Edit\" tab."
+msgstr ""
+
+msgid "ExifImageWidth"
+msgstr ""
+
+msgid "ExifImageHeight"
+msgstr ""
+
+msgid "Expand"
+msgstr ""
+
+msgid "Export as zip"
+msgstr ""
+
+msgid "ExposureTime"
+msgstr ""
+
+msgid "February"
+msgstr ""
+
+msgid "February_abbr"
+msgstr "Feb"
+
+msgid "File"
+msgstr ""
+
+msgid "File Block"
+msgstr ""
+
+msgid "Filter (meta_type list) :"
+msgstr ""
+
+msgid "FNumber"
+msgstr ""
+
+msgid "FocalLength"
+msgstr ""
+
+msgid "Folder contents"
+msgstr ""
+
+msgid "Folders are created upon first login."
+msgstr ""
+
+msgid "Fri"
+msgstr ""
+
+msgid "Friday"
+msgstr ""
+
+msgid "Friendly Date Criterion"
+msgstr ""
+
+msgid "Global actions"
+msgstr ""
+
+msgid "Group folder area"
+msgstr ""
+
+msgid "Group's roles settings"
+msgstr ""
+
+msgid "GroupManager"
+msgstr ""
+
+msgid "Height:"
+msgstr ""
+
+msgid "Image block"
+msgstr ""
+
+msgid "Implicitly member of groups"
+msgstr ""
+
+msgid "Import"
+msgstr ""
+
+msgid "Insert file"
+msgstr ""
+
+msgid "Insert image"
+msgstr ""
+
+msgid "Insert inside text"
+msgstr ""
+
+msgid "Insert new block:"
+msgstr ""
+
+msgid "Integer Criterion"
+msgstr ""
+
+msgid "ISOSpeedRatings"
+msgstr ""
+
+msgid "January"
+msgstr ""
+
+msgid "January_abbr"
+msgstr "Jan"
+
+msgid "July"
+msgstr ""
+
+msgid "July_abbr"
+msgstr "Jul"
+
+msgid "June"
+msgstr ""
+
+msgid "June_abbr"
+msgstr "Jun"
+
+msgid "KB"
+msgstr ""
+
+msgid "lang_iso"
+msgstr "en"
+
+msgid "Layer"
+msgstr ""
+
+msgid "Left boxes"
+msgstr ""
+
+msgid "List Criterion"
+msgstr ""
+
+msgid "List Folder"
+msgstr ""
+
+msgid "List parent folder"
+msgstr ""
+
+msgid "Listen"
+msgstr ""
+
+msgid "Loading progress..."
+msgstr ""
+
+msgid "Local Roles"
+msgstr ""
+
+msgid "MB"
+msgstr ""
+
+msgid "make_private"
+msgstr ""
+
+msgid "Manage Groups"
+msgstr ""
+
+msgid "Manage boxes"
+msgstr ""
+
+msgid "Manage group's datas"
+msgstr ""
+
+msgid "Manage group's members"
+msgstr ""
+
+msgid "Manage portal's groups"
+msgstr ""
+
+msgid "Manage portal's members"
+msgstr ""
+
+msgid "Manager"
+msgstr ""
+
+msgid "March"
+msgstr ""
+
+msgid "March_abbr"
+msgstr "Mar"
+
+msgid "May"
+msgstr ""
+
+msgid "May_abbr"
+msgstr "May"
+
+msgid "Meeting"
+msgstr ""
+
+msgid "Member"
+msgstr ""
+
+msgid "Members"
+msgstr ""
+
+msgid "Members folder id"
+msgstr ""
+
+msgid "Member of groups"
+msgstr ""
+
+msgid "Member properties"
+msgstr ""
+
+msgid "member_creation_area_explanations"
+msgstr ""
+
+msgid "member_creation_area_title"
+msgstr ""
+
+msgid "Membership role mappings"
+msgstr ""
+
+msgid "membership_role_mapping_explanations"
+msgstr ""
+
+msgid "Metadata"
+msgstr ""
+
+msgid "Sort Criterion"
+msgstr ""
+
+msgid "sort_by_index_modified"
+msgstr "Modified"
+
+msgid "Modify"
+msgstr ""
+
+msgid "Mon"
+msgstr ""
+
+msgid "Monday"
+msgstr ""
+
+msgid "Move down"
+msgstr ""
+
+msgid "Move left"
+msgstr ""
+
+msgid "Move right"
+msgstr ""
+
+msgid "Move up"
+msgstr ""
+
+msgid "New layer"
+msgstr ""
+
+msgid "News Item"
+msgstr ""
+
+msgid "No document"
+msgstr ""
+
+msgid "Node block"
+msgstr ""
+
+msgid "November"
+msgstr ""
+
+msgid "November_abbr"
+msgstr "Nov"
+
+msgid "Now"
+msgstr ""
+
+msgid "Number of br:"
+msgstr ""
+
+msgid "October"
+msgstr ""
+
+msgid "October_abbr"
+msgstr "Oct"
+
+msgid "Owner"
+msgstr ""
+
+msgid "person selected"
+msgstr ""
+
+msgid "persons selected"
+msgstr ""
+
+msgid "Play"
+msgstr ""
+
+msgid "Portal manager registration"
+msgstr ""
+
+msgid "Portal Role"
+msgstr ""
+
+msgid "Portlets"
+msgstr ""
+
+msgid "Preview..."
+msgstr ""
+
+msgid "private_submit"
+msgstr ""
+
+msgid "Properties of: ${memberFullName}"
+msgstr ""
+
+msgid "publish"
+msgstr ""
+
+msgid "Reader"
+msgstr ""
+
+msgid "Right boxes"
+msgstr ""
+
+msgid "Remove layer"
+msgstr ""
+
+msgid "Reply..."
+msgstr ""
+
+msgid "Represent a simple field-match for a string value."
+msgstr ""
+
+msgid "retract_to_private"
+msgstr ""
+
+msgid "retract_to_shared"
+msgstr ""
+
+msgid "Reviewed registration"
+msgstr ""
+
+msgid "Reviewer"
+msgstr ""
+
+msgid "Role(s)"
+msgstr ""
+
+msgid "Role mapping mismatch : click Validate to solve this problem !"
+msgstr ""
+
+msgid "Roles to assign:"
+msgstr ""
+
+msgid "Root object expression:"
+msgstr ""
+
+msgid "Sat"
+msgstr ""
+
+msgid "Saturday"
+msgstr ""
+
+msgid "Search"
+msgstr ""
+
+msgid "Search by"
+msgstr ""
+
+msgid "Search Term"
+msgstr ""
+
+msgid "Section block"
+msgstr ""
+
+msgid "Select date indexes"
+msgstr ""
+
+msgid "Select default time range displayed in calendar week view"
+msgstr ""
+
+msgid "Select member area folder type to construct:"
+msgstr ""
+
+msgid "Select Member(s) and a role(s) to assign:"
+msgstr ""
+
+msgid "Select registration mode"
+msgstr ""
+
+msgid "September"
+msgstr ""
+
+msgid "September_abbr"
+msgstr "Sept"
+
+msgid "Set Roles"
+msgstr ""
+
+msgid "share"
+msgstr ""
+
+msgid "Show layer"
+msgstr ""
+
+msgid "Slide show"
+msgstr ""
+
+msgid "Social Event"
+msgstr ""
+
+msgid "Sorry, no members matched your search."
+msgstr ""
+
+msgid "Source file:"
+msgstr ""
+
+msgid "Spacer block"
+msgstr ""
+
+msgid "(start and end time in hour)"
+msgstr ""
+
+msgid "Status history"
+msgstr ""
+
+msgid "Stop"
+msgstr ""
+
+msgid "String Criterion"
+msgstr ""
+
+msgid "Sun"
+msgstr ""
+
+msgid "Sunday"
+msgstr ""
+
+msgid "Text block"
+msgstr ""
+
+msgid "These users currently have local roles assigned in this folder:"
+msgstr ""
+
+msgid "This folder has to be in the same container as the membership tool."
+msgstr ""
+
+msgid "Thu"
+msgstr ""
+
+msgid "Thursday"
+msgstr ""
+
+msgid "Title :"
+msgstr ""
+
+msgid "Tree Box Block"
+msgstr ""
+
+msgid "Tree box settings"
+msgstr ""
+
+msgid "Tree viewed by: ${memberFullName}"
+msgstr ""
+
+msgid "Tue"
+msgstr ""
+
+msgid "Tuesday"
+msgstr ""
+
+msgid "Turn folder creation off"
+msgstr ""
+
+msgid "Turn folder creation on"
+msgstr ""
+
+msgid "Two images block"
+msgstr ""
+
+msgid "Upload"
+msgstr ""
+
+msgid "User"
+msgstr ""
+
+msgid "User Folder-defined Role"
+msgstr ""
+
+msgid "UserManager"
+msgstr "User manager"
+
+msgid "Untitled-"
+msgstr ""
+
+msgid "Validate pending documents"
+msgstr ""
+
+msgid "Visitor"
+msgstr ""
+
+msgid "View"
+msgstr ""
+
+msgid "View history"
+msgstr ""
+
+msgid "View local roles"
+msgstr ""
+
+msgid "Wed"
+msgstr ""
+
+msgid "Wednesday"
+msgstr ""
+
+msgid "Width:"
+msgstr ""
+
+msgid "width / height:"
+msgstr ""
+
+msgid "Work"
+msgstr ""
+
+msgid "Workflow chain"
+msgstr ""
+
+msgid "You are not allowed to delete: "
+msgstr ""
+
+msgid "collaborator"
+msgstr ""
+
+msgid "collapse"
+msgstr ""
+
+msgid "expand"
+msgstr ""
+
+msgid "file type:"
+msgstr ""
+
+msgid "Hide layer"
+msgstr ""
+
+msgid "Home"
+msgstr ""
+
+msgid "name"
+msgstr ""
+
+msgid "No Folders are created."
+msgstr ""
+
+msgid ""
+"Put a friendly interface on date range searches, like 'where effective date "
+"is less than 5 days old'."
+msgstr ""
+
+msgid "Represent a criterion which is a list of values (for an 'OR' search)."
+msgstr ""
+
+msgid ""
+"Represent a simple field-match for an integer value, including catalog range "
+"searches."
+msgstr ""
+
+msgid ""
+"Represent a mock criterion, to allow spelling the sort order and reversal "
+"items in a catalog query."
+msgstr ""
+
+msgid ""
+"WARNING: The current portal type is unknown. You must change the value to "
+"enable the member area creation."
+msgstr ""
diff --git a/locales/fr/LC_MESSAGES/cmf_default.mo b/locales/fr/LC_MESSAGES/cmf_default.mo
new file mode 100644
index 0000000..8605417
Binary files /dev/null and b/locales/fr/LC_MESSAGES/cmf_default.mo differ
diff --git a/locales/fr/LC_MESSAGES/cmf_default.po b/locales/fr/LC_MESSAGES/cmf_default.po
new file mode 100755
index 0000000..cbd52b7
--- /dev/null
+++ b/locales/fr/LC_MESSAGES/cmf_default.po
@@ -0,0 +1,1190 @@
+# Gettext Message File for CMF.
+msgid ""
+msgstr ""
+"Project-Id-Version: CMF 1.5.5\n"
+"POT-Creation-Date: 2004-05-09 13:40+0200\n"
+"PO-Revision-Date: 2007-10-17 14:43+0200\n"
+"Last-Translator: Benoît PIN <pin@cri.ensmp.fr>\n"
+"Language-Team: CRI http://cri.ensmp.fr\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"Language-Code: fr\n"
+"Language-Name: French\n"
+"Preferred-Encodings: utf-8 latin1\n"
+"Domain: cmf_default\n"
+"X-Is-Fallback-For: fr-fr, fr-be fr-ca fr-lu fr-mc fr-ch\n"
+
+msgid "${link} to change your password."
+msgstr "${link} pour changer votre mot de passe."
+
+msgid "${portal_title}: Membership reminder"
+msgstr "${portal_title} : Rappel de mot de passe"
+
+msgid "%Y/%m/%d at %I:%M:%S %p"
+msgstr "%d/%m/%Y à %H:%M:%S"
+
+msgid  "${month}&nbsp;/&nbsp;${day}&nbsp;/&nbsp;${year}&nbsp;&nbsp;${hour}&nbsp;:&nbsp;${minute}"
+msgstr "${day}&nbsp;/&nbsp;${month}&nbsp;/&nbsp;${year}&nbsp;&nbsp;${hour}&nbsp;:&nbsp;${minute}"
+
+msgid  "${month}/${day}/${year}&nbsp;&nbsp;${hour}:${minute}:${second}"
+msgstr "${day}/${month}/${year}&nbsp;&nbsp;${hour}:${minute}:${second}"
+
+
+msgid "${dayName}&nbsp;${monthName}&nbsp;${dayNumber}"
+msgstr "${dayName}&nbsp;${dayNumber}&nbsp;${monthName}"
+
+msgid "(No description)"
+msgstr "(Sans description)"
+
+msgid "-- any --"
+msgstr "-- tous --"
+
+msgid "Advanced search"
+msgstr "Recherche avancée"
+
+msgid "A <b>published</b> item is available to the general member base and anonymous visitors."
+msgstr "Un objet <em>publié</em> est accessible aux membres du site ainsi qu'aux visiteurs anonymes."
+
+msgid "A Contact Document describes a person."
+msgstr "Un contact contient la description d'une personne."
+
+msgid "A FAQ Document is editable through the web."
+msgstr "Une question fréquemment posée."
+
+msgid "A File Document is editable through the web."
+msgstr "Un fichier, éventuellement dans un format bureautique, en vue d'une conversion au format html."
+
+msgid "A Text Document is editable through the web."
+msgstr "Un document texte simple."
+
+msgid "A resource that this resource relies on may be encountering an error."
+msgstr "Une ressource utilisée par cette ressource a peut-être rencontré une erreur."
+
+msgid "Action performed"
+msgstr "Action effectuée"
+
+msgid "Add"
+msgstr "Ajouter"
+
+msgid "Add Content"
+msgstr "Ajouter"
+
+msgid "Add to favorites"
+msgstr "Ajouter aux favoris"
+
+msgid "Affected Item"
+msgstr "Élément affecté"
+
+msgid "Allow members to select their initial password"
+msgstr "Autoriser les membres à choisir leur mot de passe initial"
+
+msgid "An error was encountered while publishing this resource."
+msgstr "Une erreur a été produite lors de la publication de cette ressource."
+
+msgid "An item's status (also called its review state) determines who can see it. A <b>private</b> item can only be viewed by its Owner and by the site management. Only <b>published</b> items are available to the general member base and anonymous visitors. To make an item published, it has to be reviewed by one of the site's Reviewers. You can request that an item be reviewed by setting its status to <b>pending</b>."
+msgstr "L'état d'un document (également appelé son état de publication) détermine les personnes qui peuvent y accéder. Un document <em>privé</em> peut être vu uniquement par son propriétaire. Les documents publiés peuvent avoir une visibilité plus large qui dépend de la chaîne de validation. Si vous n'avez pas les droits de publication, vous pouvez tout de même faire passer vos documents dans l'état <em>en attente</em> en vue d'une publication accordée par un modérateur."
+
+msgid "Annotated URL."
+msgstr "Adresse internet commentée."
+
+msgid "Another way to control the visibility of an item is with its <b>effective date</b>. An item is not publicly available before its effective date, <em>even if its status is <b>published</b></em>."
+msgstr "Un autre moyen pour contrôler la visibilité d'un document consiste à paramétrer sa <em>date de mise en ligne</em>. Un document n'est pas publiquement accessible tant que la date de mise en ligne n'a pas été révolue, et cela même si le document est dans l'état <em>publié</em>."
+
+msgid "As a reviewer, you may search for items based on their review state. If you wish to constrain results to items in certain states, select them from this list."
+msgstr "En tant que validateur, vous pouvez rechercher des objets sur un critère d'état de validation. Si vous souhaitez contraindre la recherche à certains états, sélectionnez les dans la liste."
+
+msgid "Assign Roles"
+msgstr "Assigner"
+
+msgid "Assign local roles: Search Members"
+msgstr "Assigner des rôles locaux : recherche de membres"
+
+msgid "Assign local roles: Search Results"
+msgstr "Assigner des rôles locaux : résultats de la recherche"
+
+msgid "ascending sort"
+msgstr "tri croissant"
+
+msgid "at"
+msgstr "à"
+
+msgid "avis_demande"
+msgstr "avis demandé"
+
+msgid "Become a Member"
+msgstr "Devenir membre"
+
+msgid "Becoming a member gives you the ability to personalize the site and participate in the community."
+msgstr "Devenir membre vous donne la possibilité de personaliser le site et de participer à la communauté."
+
+msgid "Body"
+msgstr "Corps"
+
+msgid "Bold"
+msgstr "Gras"
+
+msgid "By"
+msgstr "Par"
+
+msgid "Calendar"
+msgstr "Calendrier"
+
+msgid "Can be embedded in Portal documents."
+msgstr "Peut être utilisée dans les documents du portail."
+
+msgid "Cancel"
+msgstr "Annuler"
+
+msgid "Canned query for organizing content with up to date queries into the catalog."
+msgstr "Requête multicritères sur le moteur de recherche."
+
+msgid "Change"
+msgstr "Modifier"
+
+msgid "Change & Edit"
+msgstr "Valider et éditer le document"
+
+msgid "Change & View"
+msgstr "Valider et voir le document"
+
+msgid "Change password"
+msgstr "Changer le mot de passe"
+
+msgid "Change and View"
+msgstr "Valider"
+
+msgid "Change your Password"
+msgstr "Changer votre mot de passe"
+
+msgid "Channel Description:"
+msgstr "Description du canal :"
+
+msgid "Channel Properties"
+msgstr "Propriétés du canal :"
+
+msgid "Channel Title:"
+msgstr "Titre du canal :"
+
+msgid "Charset used to decode portal content strings. If empty, 'ascii' is used."
+msgstr "L'encodage est utilisé par le portail pour interpréter les textes des contenus. Si ce champ est laissé vide, c'est l'encodage 'ascii' qui sera utilisé."
+
+msgid "Check this box to have the password mailed."
+msgstr "Cochez cette case afin que votre mot de passe vous soit envoyé par mail."
+
+msgid "Clear View Filter"
+msgstr "Éffacer le filtre"
+
+msgid "Click here"
+msgstr "Cliquer ici"
+
+msgid "Click the button to log in immediately."
+msgstr "Cliquez sur le bouton pour vous connecter immédiatement."
+
+msgid "Close this form"
+msgstr "Fermer ce formulaire"
+
+msgid "Close View Filter"
+msgstr "Fermer le filtre"
+
+msgid "Comment"
+msgstr "Commenter"
+
+msgid "Comments"
+msgstr "Commentaires"
+
+msgid "Comments:"
+msgstr "Commentaires :"
+
+msgid "Configure the Portal"
+msgstr "Configurer le portail"
+
+msgid "Confirm new password"
+msgstr "Confirmation"
+
+msgid "Contain arbitrary downloadable files."
+msgstr "Contient n'importe quel fichier téléchargeable."
+
+msgid "Contain text that can be formatted using 'Structured Text.' It may also contain HTML, or \"plain\" text."
+msgstr "Contient du texte qui peut rester brut ou bien être formaté avec la syntaxe &laquo; texte structuré &raquo; ou encore utiliser du HTML."
+
+msgid "Container to put content in categories."
+msgstr "Conteneur pour classer les documents."
+
+msgid "Content"
+msgstr "Contenu"
+
+msgid "Content Item status history"
+msgstr "Historique des états du document"
+
+msgid "Content type"
+msgstr "Type"
+
+msgid "Content-type"
+msgstr "Type"
+
+msgid "Contents View Filter"
+msgstr "Filtre d'affichage"
+
+msgid "Contributors"
+msgstr "Contributeurs"
+
+msgid "Copy"
+msgstr "Copier"
+
+msgid "Created by"
+msgstr "Créé par"
+
+msgid "Creation Date"
+msgstr "Date de création"
+
+msgid "Creator"
+msgstr "Créateur"
+
+msgid "Creator:"
+msgstr "Créateur :"
+
+msgid "creator:"
+msgstr "créateur :"
+
+msgid "Criteria"
+msgstr "Critères"
+
+msgid "Current state"
+msgstr "État actuel"
+
+msgid "Current state:"
+msgstr "État actuel :"
+
+
+msgid "Currently assigned local roles"
+msgstr "Rôles locaux actuellement assignés"
+
+msgid "Cut"
+msgstr "Couper"
+
+msgid "Daily"
+msgstr "Quotidiennement"
+
+msgid "Date"
+msgstr "Date"
+
+msgid "Default"
+msgstr "Défaut"
+
+msgid "Default Syndication Properties"
+msgstr "Propriétés de diffusion par défaut"
+
+msgid "Default Value"
+msgstr "Valeur par défaut"
+
+msgid "Delete"
+msgstr "Supprimer"
+
+msgid "Description"
+msgstr "Description"
+
+msgid "Desktop"
+msgstr "Bureau"
+
+msgid "Directories"
+msgstr "Annuaires"
+
+msgid "Disable Syndication"
+msgstr "Désactiver la diffusion"
+
+msgid "Discussion Item"
+msgstr "Commentaire"
+
+msgid "Document"
+msgstr "Document"
+
+msgid "Documents contain text that can be formatted using 'Structured Text.' They may also contain HTML, or &quot;plain&quot; text."
+msgstr "Un document contient un texte qui peut être formaté en utilisant du texte structuré, du texte brut ou encore du HTML."
+
+msgid "Domains"
+msgstr "Domaines"
+
+msgid "Don't forget to logout or exit your browser when you're done."
+msgstr "N'oubliez pas de vous déconnecter ou de fermer votre navigateur à la fin de la session."
+
+msgid "Don't panic!"
+msgstr "Pas de panique !"
+
+msgid "Download"
+msgstr "Télécharger"
+
+msgid "Download : &laquo;&nbsp;${file_title}&nbsp;&raquo;"
+msgstr "Télécharger : &laquo; ${file_title} &raquo;"
+
+msgid "Download File"
+msgstr "Télécharger le fichier"
+
+msgid "Earlier Transactions"
+msgstr "Transaction plus anciennes"
+
+msgid "Edit"
+msgstr "Éditer"
+
+msgid "Edit ${objectid}"
+msgstr "Éditer ${objectid}"
+
+msgid "Edit all metadata"
+msgstr "Éditer toutes les métadonnées"
+
+msgid "Edit standard metadata"
+msgstr "Éditer les métadonnées standard"
+
+msgid "Edit title and description"
+msgstr "Modifier le titre et la description"
+
+msgid "Effective Date"
+msgstr "Date de mise en ligne"
+
+msgid "Element"
+msgstr "Élément"
+
+msgid "Email Address"
+msgstr "Adresse e-mail"
+
+msgid "Email address"
+msgstr "Adresse e-mail"
+
+msgid "Enable Discussion?"
+msgstr "Autoriser les commentaires ?"
+
+msgid "Enable Syndication"
+msgstr "Activer la diffusion"
+
+msgid "Error Type: ${error_type}"
+msgstr "Nature de l'erreur : ${error_type}"
+
+msgid "Error Value: ${error_value}"
+msgstr "Valeur de l'erreur : ${error_value}"
+
+msgid "Event"
+msgstr "Événement"
+
+msgid "Events are objects for use in Calendar topical queries on the catalog."
+msgstr "Les événements sont les objets qui apparaissent dans le calendrier."
+
+msgid "Ever"
+msgstr "Toujours"
+
+msgid "Expiration Date"
+msgstr "Date d'expiration"
+
+msgid "External file"
+msgstr "Fichier externe"
+
+msgid "Favorite"
+msgstr "Favori"
+
+msgid "File"
+msgstr "Fichier"
+
+msgid "File Properties"
+msgstr "Propriétés du fichier"
+
+msgid "Filename"
+msgstr "Nom"
+
+msgid "Find new items since..."
+msgstr "Rechercher les éléments récents depuis..."
+
+msgid "First name"
+msgstr "Prénom"
+
+msgid "Folder"
+msgstr "Dossier"
+
+msgid "Folder contents"
+msgstr "Contenu du dossier"
+
+msgid "Folders"
+msgstr "Dossiers"
+
+msgid "For a simple text search, enter your search term here. Multiple words may be found by combining them with <b>AND</b> and <b>OR</b>. This will find text in items' contents, title and description."
+msgstr "Pour une recherche simple sur le texte, entrez un terme ici. Vous pouvez entrer plusieurs mots en les combinant avec <b>AND</b> ou <b>OR</b>. La recherche s'effectuera aussi bien dans le corps du texte, le titre et la description des documents."
+
+msgid "For more detailed information about the error, please refer to the HTML source for this page."
+msgstr "Pour des informations plus détaillées à propos de l'erreur, merci de vous référer au code HTML de cette page."
+
+msgid "Format"
+msgstr "Format"
+
+msgid "Found ${count} ${item_s_match} '${text}'."
+msgstr "${count} ${item_s_match} « ${text} »"
+
+msgid "Found 1 item."
+msgstr "1 élément trouvé."
+
+msgid "Found ${count} items."
+msgstr "${count} éléments trouvés."
+
+msgid "Full Text"
+msgstr "Texte intégral"
+
+msgid "Generate and email members' initial password"
+msgstr "Générer et envoyer par e-mail les mots de passe initiaux des membres"
+
+msgid "Given Name"
+msgstr "Prénom"
+
+msgid "Guest"
+msgstr "Invité"
+
+msgid "Having trouble logging in? Make sure to enable cookies in your web browser."
+msgstr "Vous rencontrez des difficultés pour la connexion ? Vérifiez que votre navigateur accepte les cookies."
+
+msgid "Hourly"
+msgstr "Toutes les heures"
+
+msgid "Forgot your password?"
+msgstr "Mot de passe oublié ?"
+
+msgid "ID:"
+msgstr "ID :"
+
+msgid "Identifier"
+msgstr "Identifiant"
+
+msgid "If the error persists please contact the site maintainer. Thank you for your patience."
+msgstr "Si l'erreur persiste, merci de contacter la maintenance du site. Merci de votre compréhension."
+
+msgid "If this will not work for you (for example, if you forget your member name or didn't enter your email address) send email to ${admin_email}."
+msgstr "Si cette procédure ne fonctionne pas, envoyez un e-mail à ${admin_email}."
+
+msgid "If you do not know what this field is for, leave it blank."
+msgstr "Si vous ne savez pas à quoi sert ce champs, laissez-le vide."
+
+msgid "If you wish to constrain results to items in certain states, select them from this list."
+msgstr "Si vous souhaitez contraindre la recherche à certains états, sélectionnez dans la liste."
+
+msgid "Image"
+msgstr "Image"
+
+msgid "Photos width"
+msgstr "Largeur des photos"
+
+msgid "immediately"
+msgstr "immédiatement"
+
+msgid "It does not cost any money to become a member and your email and other personal information will remain private."
+msgstr "Devenir membre est complètement gratuit. Votre e-mail ainsi que toutes vos données personnelles resteront privées."
+
+msgid "item"
+msgstr "élément"
+
+msgid "item matching"
+msgstr "élément correspond à"
+
+msgid "Item type"
+msgstr "Type"
+
+msgid "items"
+msgstr "éléments"
+
+msgid "items matching"
+msgstr "éléments correspondent à"
+
+msgid "Join"
+msgstr "S'inscrire"
+
+msgid "Just enter your username below, click <em>Send</em>, and your password will be mailed to you if you gave a valid email address when you signed on."
+msgstr "Entrez ci-dessous votre login et cliquez sur «&nbsp;Envoyer&nbsp;». Votre mot de passe vous sera immédiatement renvoyé par mail, dans la mesure où vous aviez entré une adresse valide, lors de votre inscription."
+
+msgid "Keywords"
+msgstr "Mot-clefs"
+
+msgid "Keywords describing the portal. Type one keyword (or expression) per line."
+msgstr "Mot-clefs décrivant le portail. Entrez un mot-clef (ou expression) par ligne."
+
+msgid "Language"
+msgstr "Langue"
+
+msgid "Last Modified Date"
+msgstr "Dernière modification"
+
+msgid "Last Modified"
+msgstr "Modifié le"
+
+msgid "Last name"
+msgstr "Nom"
+
+msgid "Last login"
+msgstr "Dernière connexion"
+
+msgid "Last modified"
+msgstr "Dernière modification"
+
+msgid "Last month"
+msgstr "Ce dernier mois"
+
+msgid "Last week"
+msgstr "Cette dernière semaine"
+
+msgid "Later Transactions"
+msgstr "Transactions plus récentes"
+
+msgid "Lead-in"
+msgstr "Chapô"
+
+msgid "Link"
+msgstr "Lien"
+
+msgid "Link to an intra-portal resource."
+msgstr "Lien vers un élément interne au portail."
+
+msgid "Link: ${link}"
+msgstr "Lien : ${link}"
+
+msgid "Listed"
+msgstr "Listé"
+
+msgid "Listed status"
+msgstr "État de listage"
+
+msgid "Listed?"
+msgstr "Listé ?"
+
+msgid "Local Roles"
+msgstr "Rôles locaux"
+
+msgid "Log in"
+msgstr "Connexion"
+
+msgid "Log out"
+msgstr "Déconnexion"
+
+msgid "Login"
+msgstr "Connexion"
+
+msgid " Login "
+msgstr "Connexion"
+
+msgid "Login Name"
+msgstr "Nom d'utilisateur"
+
+msgid "Login failure"
+msgstr "Échec durant la connexion"
+
+msgid "Login success"
+msgstr "Connexion réussie"
+
+msgid "Mail Password?"
+msgstr "Envoyer le mot de passe ?"
+
+msgid "Max Syndicated Items"
+msgstr "Nombre maximum d'objets diffusés"
+
+msgid "Member"
+msgstr "Membre"
+
+msgid "Member ID"
+msgstr "Login"
+
+msgid "Member Preferences"
+msgstr "Préférences"
+
+msgid "Memo"
+msgstr "Mémo"
+
+msgid "Metadata"
+msgstr "Métadonnées"
+
+msgid "Modified on"
+msgstr "Modifié le"
+
+msgid "Modify my entry"
+msgstr "Modifier ma fiche"
+
+msgid "Monthly"
+msgstr "Mensuellement"
+
+msgid "More..."
+msgstr "Plus..."
+
+msgid "Mosaic Document"
+msgstr "Document Mosaïque"
+
+msgid "My favorites"
+msgstr "Mes favoris"
+
+msgid "My stuff"
+msgstr "Mes documents"
+
+msgid "Name"
+msgstr "Nom"
+
+msgid "never"
+msgstr "jamais"
+
+msgid "New password"
+msgstr "Nouveau mot de passe"
+
+msgid "New..."
+msgstr "Ajouter..."
+
+msgid "News"
+msgstr "Actualités"
+
+msgid "News Item"
+msgstr "Actualité"
+
+msgid "No"
+msgstr "Non"
+
+msgid "No news is good news!"
+msgstr "Pas de nouvelle bonne nouvelle :-)"
+
+msgid "No news is no news."
+msgstr "Pas de nouvelle bonne nouvelle :-)"
+
+msgid "(No title)"
+msgstr "(Sans titre)"
+
+msgid "Off"
+msgstr "Désactiver"
+
+msgid "Ok"
+msgstr "Valider"
+
+msgid "On"
+msgstr "Activer"
+
+msgid "Password"
+msgstr "Mot de passe"
+
+msgid "Password (confirm)"
+msgstr "Confirmation"
+
+msgid "Password policy"
+msgstr "Option des mots de passe"
+
+msgid "Paste"
+msgstr "Coller"
+
+msgid "Portal default encoding"
+msgstr "Encodage par défaut"
+
+msgid "Portal 'From' address"
+msgstr "Champ «&nbsp;from&nbsp;» de l'adresse du portail"
+
+msgid "Portal 'From' name"
+msgstr "Nom de l'expéditeur"
+
+msgid "Portal Members"
+msgstr "Membres du portail"
+
+msgid "Portal description"
+msgstr "Description du portail"
+
+msgid "Portal title"
+msgstr "Titre du portail"
+
+msgid "Preferences"
+msgstr "Préférences"
+
+msgid "Preview"
+msgstr "Prévisualiser"
+
+msgid "Publish"
+msgstr "Publier"
+
+msgid "Publish ${objectid}"
+msgstr "Publier ${objectid}"
+
+msgid "Publish this item"
+msgstr "Publier ce document"
+
+msgid "Reconfigure Portal"
+msgstr "Reconfigurer le portail"
+
+msgid "Register"
+msgstr "S'enregistrer"
+
+msgid "Register Member"
+msgstr "Enregistrer un membre"
+
+msgid "Reject"
+msgstr "Rejeter"
+
+msgid "Reject ${objectid}"
+msgstr "Rejeter ${objectid}"
+
+msgid "Reject this item"
+msgstr "Rejeter ce document"
+
+msgid "Related Resources"
+msgstr "Liens"
+
+msgid "Remember my name."
+msgstr "Se souvenir de mon login"
+
+msgid "Rename"
+msgstr "Renommer"
+
+msgid "Rename Items"
+msgstr "Renommer des documents"
+
+msgid "Reply"
+msgstr "Commenter"
+
+msgid "Reply body"
+msgstr "Corps du texte"
+
+msgid "Resource Metadata"
+msgstr "Métadonnées de la ressource"
+
+msgid "Retract"
+msgstr "Retirer"
+
+msgid "Retract ${objectid}"
+msgstr "Retirer ${objectid}"
+
+msgid "Retract this item"
+msgstr "Retirer ce document"
+
+msgid "Return to homepage"
+msgstr "Retourner à la page d'accueil"
+
+msgid "Review Status"
+msgstr "État de validation"
+
+msgid "Reviewing history"
+msgstr "Historique"
+
+msgid "Rights"
+msgstr "Droits"
+
+msgid "Role to assign:"
+msgstr "Rôle à assigner"
+
+msgid "Role(s)"
+msgstr "Rôle(s)"
+
+msgid "SMTP server"
+msgstr "Serveur SMTP"
+
+msgid "Save"
+msgstr "Enregistrer"
+
+msgid "Search"
+msgstr "Rechercher"
+
+msgid " Search "
+msgstr "Rechercher"
+
+msgid "Search ${title}"
+msgstr "Rechercher ${title}"
+
+msgid "Search inside ${title}"
+msgstr "Rechercher dans ${title}"
+
+msgid "Search Results"
+msgstr "Résultats de la recherche"
+
+msgid "Search Term"
+msgstr "Terme de recherche"
+
+msgid "Search by"
+msgstr "Rechercher par"
+
+msgid "Select Member(s) and a role to assign:"
+msgstr "Sélectionner le(s) membre(s) et un rôle à assigner :"
+
+msgid "Select one or more transactions below and then click on the &quot;Undo&quot; button to undo the transactions. Note that even though a transaction is shown below, you will not be able to undo it if later transactions modified objects that were modified by the transaction."
+msgstr "Sélectionnez une ou plusieurs transaction ci-dessous puis cliquez sur «&nbsp;Annuler&nbsp;».  Notez que l'annulation peut échouer s'il y a eu entre temps des transactions portants sur des objets concernés par l'annulation."
+
+msgid "Send"
+msgstr "Envoyer"
+
+msgid " Send "
+msgstr "Envoyer"
+
+msgid "Set Sorting as Default"
+msgstr "Définir ce tri par défaut"
+
+msgid "Set View Filter"
+msgstr "Définir un filtre d'affichage"
+
+msgid "Setting the 'Remember my name' option will set a cookie with your username, so that when you next log in, your user name will already be filled in for you."
+msgstr "L'option « Se souvenir de mon login » permet de le sauvegarder dans un cookie : vous n’aurez pas à le saisir de nouveau lors de votre prochaine visite."
+
+msgid "shared"
+msgstr "partagé"
+
+msgid "shared_and_pending"
+msgstr "partagé et en attente"
+
+msgid "Short text article with a title and an optional lead-in."
+msgstr "Article textuel court avec un titre et un chapô optionnel."
+
+msgid "Show Error Log Entry"
+msgstr "Afficher le compte-rendu de l'erreur"
+
+msgid "Site Error"
+msgstr "Erreur"
+
+msgid "Size"
+msgstr "Taille"
+
+msgid "Skin"
+msgstr "Habillage"
+
+msgid "Standard Resource Metadata"
+msgstr "Métadonnées standard"
+
+msgid "Status"
+msgstr "État"
+
+msgid "Status history"
+msgstr "Historique des états"
+
+msgid "Status:"
+msgstr "État :"
+
+msgid "Subject"
+msgstr "Sujet"
+
+msgid "Subject (Title)"
+msgstr "Sujet (titre)"
+
+msgid "Subject:"
+msgstr "Sujet :"
+
+msgid "Subtopics"
+msgstr "Sous thèmes"
+
+msgid "Success!"
+msgstr "Opération réussie"
+
+msgid "Sy Module Properties"
+msgstr "Propriétés du module de diffusion"
+
+msgid "Syndication"
+msgstr "Diffusion"
+
+msgid "Syndication is Disabled"
+msgstr "La diffusion est désactivée"
+
+msgid "Syndication is the process by which a site is able to share information out to other sites. When syndication is enabled, this folder items summary will be provided on <strong>RSS</strong> xml format at :"
+msgstr "La diffusion est le procédé utilisé par un site pour partager de l'information vers d'autres sites. Lorsque la diffusion est activée, un résumé du contenu de ce dossier sera disponible au format <em>RSS</em> (xml) à l'adresse :"
+
+msgid "Text body"
+msgstr "Corps de texte"
+
+msgid "Text editor"
+msgstr "Éditeur de texte"
+
+msgid "The URL may be incorrect."
+msgstr "L'url est peut-être erronée."
+
+msgid "The parameters passed to this resource may be incorrect."
+msgstr "Les paramètres envoyés à cette ressource sont peut-être incorrects."
+
+msgid "There are no items matching your specified criteria."
+msgstr "Aucun élément ne correspond aux critères de recherche."
+
+msgid "These users currently have local roles assigned in this folder:"
+msgstr "Ces utilisateurs ont actuellement les rôles locaux suivants :"
+
+msgid "This application's transactional feature allows you to easily undo changes made to the application's settings or data. You can revert the application to a &quot;snapshot&quot; of its state at a previous point in time."
+msgstr "Cette application est transactionnelle. Ce mécanisme permet une annulation facile des changements des paramètres ou des données. Il est possible de revenir sur un état du site à un instant précis."
+
+msgid "This describes the purpose of the website:"
+msgstr "Voici le but de ce site web :"
+
+msgid "This description is made available via syndicated content and elsewhere. It should be fairly brief."
+msgstr "Cette description est visible via les canaux de diffusion et partout ailleurs. Il est recommandé d'être concis."
+
+msgid "This is the size of the thumbnails in the photo album, in pixels."
+msgstr "C'est la taille, en pixels, utilisée pour les vignettes des albums photo."
+
+msgid "Thumbnails size"
+msgstr "Taille des vignettes"
+
+msgid "This form is used to set the portal configuration options."
+msgstr "Ce formulaire est utilisé pour configurer les options du portail."
+
+msgid "This is the first time that you've logged in to ${portal_title}. Before you start exploring you need to change your original password. This will ensure that the password we sent you via email cannot be used in a malicious manner."
+msgstr "C'est la première fois que vous vous connectez à ${portal_title}. Avant de commencer à naviguer, vous devez changer votre mot de passe initial. Cela vous assurera que le mot de passe, envoyé par mail, ne sera pas utilisé à votre insu, dans le cas où le message aurait été intercepté."
+
+msgid "This is the address of your local SMTP (out-going mail) server."
+msgstr "Ceci est l'adresse de votre serveur SMTP (courrier sortant)."
+
+msgid "This is the title which appears at the top of every portal page."
+msgstr "Ceci est le titre qui apparaîtra en haut de chaque page."
+
+msgid "This item has not had any status changes."
+msgstr "Cet objet n'a pas encore eu de changement d'état."
+
+msgid "This item is currently in ${status} status."
+msgstr "Ce document est actuellement dans l'état ${status}."
+
+msgid "This item is in ${status} state."
+msgstr "Ce document est dans l'état ${status}."
+
+msgid "Title"
+msgstr "Titre"
+
+msgid "To find items by a particular user only, enter their username above. Note that you must enter their username <i>exactly</i>."
+msgstr "Pour trouver des objets pour un utilisateur particulier, entrez son nom ci-dessus. Vous devez le saisir de manière <em>exacte</em>."
+
+msgid "To find items by a particular user, enter one or more of his properties (login, name, email...)."
+msgstr "Pour trouver les éléments d'un utilisateur particulier, entrer une ou plusieurs de ses propriétés (login, nom, email...)."
+
+msgid "Topic"
+msgstr "Thème"
+
+msgid "Troubleshooting Suggestions"
+msgstr "Suggestions de dépannage"
+
+msgid "Type"
+msgstr "Type"
+
+msgid "URL"
+msgstr "URL"
+
+msgid "Undo"
+msgstr "Annuler"
+
+msgid "Undo Transactions"
+msgstr "Annuler des transactions"
+
+msgid "Unlisted"
+msgstr "Non listé"
+
+msgid "Up to"
+msgstr "Remonter vers"
+
+msgid "UpdateBase"
+msgstr "Date de départ"
+
+msgid "UpdateFrequency"
+msgstr "Fréquence de mise à jour"
+
+msgid "UpdatePeriod"
+msgstr "Période de mise à jour"
+
+msgid "Upload"
+msgstr "Envoyer vers le serveur"
+
+msgid "Upload file"
+msgstr "Envoyer un fichier"
+
+msgid "Upload image"
+msgstr "Envoyer une image"
+
+msgid "Use this form to reject the publication of a content item and set its status to <b>Private</b>, thereby making it unavailable to other portal members and visitors."
+msgstr "Utilisez ce formulaire pour refuser la publication d'un contenu afin de le remettre dans l'état <em>privé</em>, de cette manière, il sera inaccessible aux membres et aux visiteurs du portail."
+
+msgid "Use this form to retract a content item by setting its status to <b>Private</b>, thereby making it unavailable to other portal members and visitors."
+msgstr "Utilisez ce formulaire pour retirer un contenu afin de le remettre dans l'état <em>privé</em>, de cette manière, il sera inaccessible aux membres et aux visiteurs du portail."
+
+msgid "User"
+msgstr "Utilisateur"
+
+msgid "User Name"
+msgstr "Nom"
+
+msgid "Username"
+msgstr "Login"
+
+msgid "Validate"
+msgstr "Valider"
+
+msgid "View"
+msgstr "Voir"
+
+msgid "Visit us at ${portal_url}"
+msgstr "Allez à l'url : ${portal_url}"
+
+msgid "Web Preview"
+msgstr "Aperçu web"
+
+msgid "Weekly"
+msgstr "Hebdomadairement"
+
+msgid "Welcome!"
+msgstr "Bienvenue !"
+
+msgid "Welcome. You are currently logged in."
+msgstr "Bienvenue ! Vous êtes maintenant connecté."
+
+msgid "When the portal generates mail, it uses this address as its (apparent) return address."
+msgstr "Lorsque le portail génère un mail, il utilise cette adresse de retour."
+
+msgid "When the portal generates mail, it uses this name as its (apparent) sender."
+msgstr "Lorsque le portail génère un mail, il utilise ce nom pour l'envoi."
+
+msgid "Wiki Page"
+msgstr "Page de wiki"
+
+msgid "Yearly"
+msgstr "Annuellement"
+
+msgid "Yes"
+msgstr "Oui"
+
+msgid "Yesterday"
+msgstr "Hier"
+
+msgid "You are already a member. You may use the <a href=\"personalize_form\">personalization form</a> to change your membership information."
+msgstr "Vous êtes déjà connecté en tant que membre. Vous pouvez utiliser le <a href=\"personalize_form\">formulaire des préférences</a> pour changer vos informations."
+
+msgid "You are logged in outside the portal. You may need to <a href=\"/manage_zmi_logout\">log out of the Zope management interface</a>."
+msgstr "Vous vous êtes connecté en dehors du portail. Vous devez vous déconnecter depuis <a href=\"/manage_zmi_logout\">l'interface d'administration de zope (ZMI)</a>."
+
+msgid "You are not currently logged in. Your username and or password may be incorrect. Your browser may also not be configured to accept HTTP cookies. If you need help please contact ${admin_email}."
+msgstr "Vous n'êtes pas encore connecté. Votre nom d'utilisateur ou votre mot de passe sont peut-être incorrects. Votre navigateur doit être configuré afin d'accepter les cookies. Si vous avez besoin d'aide, merci de contacter ${admin_email}."
+
+msgid "You can log on immediately by clicking"
+msgstr "Vous pouvez vous connecter immédiatement en cliquant"
+
+msgid "You can use this URL to log in:"
+msgstr "Vous pouvez utiliser ce lien pour vous connecter :"
+
+msgid "You have been logged out."
+msgstr "Vous avez été déconnecté."
+
+msgid "You have been registered as a member."
+msgstr "Vous avez été enregistré en tant que membre."
+
+msgid "You have been registered as a member of \"${portal_title}\", which allows you to personalize your view of the website and participate in the community."
+msgstr "Vous avez été enregistré en tant que membre de « ${portal_title} », ce qui vous permet de participer à la rédaction des contenus ainsi qu'à la communauté de ce site."
+
+msgid "You may also search the items' descriptions and titles specifically. Multiple words may be found by combining them with <b>AND</b> and <b>OR</b>."
+msgstr "Vous pouvez également chercher à partir des titres et des descriptions. Plusieurs mots peuvent être combinés avec des opérateurs <b>AND</b> et <b>OR</b>."
+
+msgid "You may find only recent items by selecting a time-frame."
+msgstr "Vous pouvez choisir de rechercher uniquement les éléments récents en sélectionnant la fourchette de temps."
+
+msgid "You may limit your results to particular kinds of items by selecting them above. To find all kinds of items, do not select anything."
+msgstr "Vous pouvez limiter les résultats à des types d'éléments particuliers en sélectionnant ci-dessus. Pour rechercher tout, ne rien sélectionner."
+
+msgid "You must enter a password."
+msgstr "Vous devez entrer un mot de passe."
+
+msgid "You must enter a valid name."
+msgstr "Vous devez entrer un login valide."
+
+msgid "You must submit a valid email address. This address will be used to send you a randomly-generated password. Once you have logged in with this password, you may change it to anything you like."
+msgstr "Vous devez entrer une adresse e-mail valide qui sera utilisée pour vous envoyer votre mot de passe généré automatiquement. Vous pourrez le changer dès votre première connexion."
+
+msgid "You will <i>not</i> show up on the public membership roster. Your Member folder will still be publicly accessible unless you change its security settings."
+msgstr "Vous ne serez pas dans la liste publique des membres. Néanmoins, votre dossier personnel pourra quand même disposer d'un accès public en changeant le paramétrage du partage."
+
+msgid "Your password and confirmation did not match. Please try again."
+msgstr "Le mot de passe et sa confirmation sont différents. Essayez à nouveau."
+
+msgid "You will receive an email shortly containing your password and instructions on how to activate your membership."
+msgstr "Vous allez recevoir sous peu un e-mail qui contiendra votre mot de passe ainsi que les instructions pour activer votre inscription."
+
+msgid "You will show up on the public membership roster."
+msgstr "Vous serez visible dans la liste publique des membres."
+
+
+msgid "Your member id and password are: Member ID: ${member_id} Password: ${password}"
+msgstr "Votre login et votre mot de passe sont :\nLogin: ${member_id}\nMot de passe: ${password}"
+
+msgid "Your password: ${password}"
+msgstr "Votre mot de passe : ${password}"
+
+msgid "Your password has been mailed. <br /> It should arrive in your mailbox momentarily."
+msgstr "Votre mot de passe vient d'être envoyé. <br /> Il devrait arriver dans votre messagerie d'un moment à l'autre."
+
+msgid "Your password must contain at least 5 characters."
+msgstr "Le mot de passe doit comporter au moins 5 caractères."
+
+msgid "Your registration request has been taken into account."
+msgstr "Votre demande d'inscription a été prise en compte."
+
+msgid "Your request will be reviewed soon by a portal administrator. You will receive an email containing your password and instructions on how to activate your membership when your registration will be approved."
+msgstr "Votre demande va bientôt être vérifiée par un administrateur du portail. Vous recevrez un e-mail contenant votre mot de passe et des instructions pour vous connectez dès que votre inscription aura été approuvée."
+
+msgid "Your request will be reviewed soon by a portal administrator. You will receive an email when your registration will be approved."
+msgstr "Votre demande va bientôt être vérifiée par un administrateur du portail. Vous recevrez un e-mail lorsque votre inscription aura été approuvée."
+
+msgid "${portal_title}: Your Membership Information"
+msgstr "${portal_title} : vos informations d'inscription"
+
+msgid "Be aware that this URL might wrap over two lines. If your browser shows an error message when you try to access the URL please make sure that you put in the complete string."
+msgstr "Notez que ce lien peut être découpé sur 2 lignes. Si votre navigateur affiche un message d'erreur lorsque vous essayez d'y accéder, vérifier bien qu'il n'y a pas eu de troncature"
+
+msgid "by"
+msgstr "par"
+
+msgid "by ${actor}"
+msgstr "par ${actor}"
+
+msgid "created"
+msgstr "créé"
+
+msgid "descending sort"
+msgstr "tri décroissant"
+
+msgid "here"
+msgstr "ici"
+
+msgid "home"
+msgstr "Accueil"
+
+msgid "html"
+msgstr "html"
+
+msgid "members"
+msgstr "Membres"
+
+msgid "news"
+msgstr "actualités"
+
+msgid "on"
+msgstr "à"
+
+msgid "pending"
+msgstr "en attente"
+
+msgid "plain text"
+msgstr "texte brut"
+
+msgid "Please use the form below to change your password."
+msgstr "Utilisez le formulaire ci-dessous pour changer votre mot de passe."
+
+msgid "Plinn Document"
+msgstr "Document Plinn"
+
+msgid "private"
+msgstr "privé"
+
+msgid "private_and_pending"
+msgstr "privé et en attente"
+
+msgid "publish"
+msgstr "publier"
+
+msgid "published"
+msgstr "publié"
+
+msgid "reject"
+msgstr "rejeter"
+
+msgid "Request made by IP ${ip} at ${time}"
+msgstr "Requête faite par l'IP ${ip} le ${time}"
+
+msgid "retract"
+msgstr "retirer"
+
+msgid "search"
+msgstr "Rechercher"
+
+msgid "structured-text"
+msgstr "texte structuré"
+
+msgid "Syndicate"
+msgstr "Diffuser"
+
+msgid "to"
+msgstr "à"
diff --git a/locales/fr/LC_MESSAGES/default.mo b/locales/fr/LC_MESSAGES/default.mo
new file mode 100644
index 0000000..b319578
Binary files /dev/null and b/locales/fr/LC_MESSAGES/default.mo differ
diff --git a/locales/fr/LC_MESSAGES/default.po b/locales/fr/LC_MESSAGES/default.po
new file mode 100644
index 0000000..5b6cd7e
--- /dev/null
+++ b/locales/fr/LC_MESSAGES/default.po
@@ -0,0 +1,319 @@
+msgid ""
+msgstr "Project-Id-Version: Third party messages for Plinn 2.0\n"
+"POT-Creation-Date: 2004-04-22 21:04+CET\n"
+"PO-Revision-Date: 2007-10-17 14:43+0200\n"
+"Last-Translator:  Benoît PIN\n"
+"Language-Team: CRI http://cri.ensmp.fr\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"Language-Code: fr\n"
+"Language-Name: French\n"
+"Preferred-Encodings: utf-8 latin1\n"
+"Domain: default\n"
+"X-Is-Fallback-For: fr-fr, fr-be fr-ca fr-lu fr-mc fr-ch\n"
+
+
+msgid "%d item moved down."
+msgstr "%d élément déplacé plus bas."
+
+msgid "%d items moved down."
+msgstr "%d éléments déplacés plus bas."
+
+msgid "%d item moved to bottom."
+msgstr "%d élément déplacé en dernier."
+
+msgid "%d items moved to bottom."
+msgstr "%d éléments déplacés en dernier."
+
+msgid "%d item moved to top."
+msgstr "%d élément déplacé en premier."
+
+msgid "%d items moved to top."
+msgstr "%d éléments déplacés en premier."
+
+msgid "%d item moved up."
+msgstr "%d élément déplacé plus haut."
+
+msgid "%d items moved up."
+msgstr "%d éléments déplacés plus haut."
+
+msgid "Advanced search"
+msgstr "Recherche avancée"
+
+msgid "CMF Settings changed."
+msgstr "Paramètres du site enregistrés"
+
+msgid "Changes saved."
+msgstr "Modifications enregistrées."
+
+msgid "Clipboard emptied."
+msgstr "Presse-papier vidé."
+
+msgid "Comment added."
+msgstr "Commentaire ajouté."
+
+msgid "Comment deleted."
+msgstr "Commentaire supprimé."
+
+msgid "Criteria deleted."
+msgstr "Critères supprimés."
+
+msgid "Criterion added."
+msgstr "Critère ajouté."
+
+msgid "Criterion deleted."
+msgstr "Critère supprimé."
+
+msgid "Deleted."
+msgstr "Objet(s) Supprimé(s)."
+
+msgid "Discussion thread deleted."
+msgstr "Fil de discussion supprimé."
+
+msgid "Document changed."
+msgstr "Document modifié."
+
+msgid "Email sent."
+msgstr "E-mail envoyé."
+
+msgid "End date is not valid."
+msgstr "La date de fin n'est pas valide."
+
+msgid "Event changed."
+msgstr "Événement changé."
+
+msgid "Favorite added."
+msgstr "Favori ajouté."
+
+msgid "File changed."
+msgstr "Fichier modifié."
+
+msgid "Filter cleared."
+msgstr "Filtre effacé."
+
+msgid "Folder changed."
+msgstr "Dossier modifié."
+
+msgid "Group created."
+msgstr "Groupe créé."
+
+msgid "Group deleted."
+msgstr "Groupe effacé."
+
+msgid "Group modified."
+msgstr "Groupe modifié."
+
+msgid "Groups deleted."
+msgstr "Groupes effacés."
+
+msgid "Header Changed."
+msgstr "En-tête modifié."
+
+msgid "Image changed."
+msgstr "Image modifiée."
+
+msgid "Image file format non supported."
+msgstr "Fichier d'image non reconnu."
+
+msgid "Install"
+msgstr "Installer"
+
+msgid "Item copied."
+msgstr "Élément copié."
+
+msgid "Items copied."
+msgstr "Éléments copiés."
+
+msgid "Item cut."
+msgstr "Élément coupé."
+
+msgid "Items cut."
+msgstr "Éléments coupés."
+
+msgid "Item deleted."
+msgstr "Élément supprimé."
+
+msgid "Item removed from clipboard."
+msgstr "Élément retiré du presse-papier."
+
+msgid "Items deleted."
+msgstr "Éléments supprimés"
+
+msgid "Items removed from clipboard."
+msgstr "Éléments retirés du presse-papier."
+
+msgid "Item pasted."
+msgstr "Élément collé."
+
+msgid "Items pasted."
+msgstr "Éléments collés."
+
+msgid "Item renamed."
+msgstr "Élément renommé."
+
+msgid "Items renamed."
+msgstr "Éléments renommés."
+
+msgid "Link changed."
+msgstr "Lien modifié."
+
+msgid "Local Roles changed."
+msgstr "Rôles locaux modifiés."
+
+msgid "Login success"
+msgstr "Connexion réussie"
+
+msgid "Member modified."
+msgstr "Membre modifié."
+
+msgid "Member created."
+msgstr "Membre créé."
+
+msgid "Member deleted."
+msgstr "Membre supprimé."
+
+msgid "Member registered."
+msgstr "Membre inscrit."
+
+msgid "Members deleted."
+msgstr "Membres supprimés."
+
+msgid "Members registered."
+msgstr "Membres inscrits."
+
+msgid "Metadata changed."
+msgstr "Métadonnées changées."
+
+msgid "News Item changed."
+msgstr "Actualité modifiée."
+
+msgid "No email sent : no recipient specified."
+msgstr "Pas d'e-mail envoyé : aucun destinataire spécifié."
+
+msgid "Nothing to change."
+msgstr "Aucune modification."
+
+msgid "Object created."
+msgstr "Objet créé."
+
+msgid "Object deleted."
+msgstr "Objet supprimé."
+
+msgid "Password changed."
+msgstr "Mot de passe modifié."
+
+msgid "Paste"
+msgstr "Coller"
+
+msgid "place holder for an image"
+msgstr "espace réservé pour une image"
+
+msgid "Please copy or cut one or more items to paste first."
+msgstr "Veuillez d'abord copier ou couper un ou plusieurs éléments à coller."
+
+msgid "Please select at least one member."
+msgstr "Veuillez sélectionner au moins un membre."
+
+msgid "Please select one ore more criteria first."
+msgstr "Veuillez sélectionner un ou plusieurs critères."
+
+msgid "Please select one or more groups before."
+msgstr "Veuillez sélectionner un ou plusieurs groupes."
+
+msgid "Please select one or more items first."
+msgstr "Veuillez sélectionner un ou plusieurs éléments."
+
+msgid "Please select one or more members."
+msgstr "Veuillez sélectionner un ou plusieurs membres."
+
+msgid "Please select a member first."
+msgstr "Veuillez sélectionner un membre."
+
+msgid "Registration rejected."
+msgstr "Inscription rejetée."
+
+msgid "Reinstall"
+msgstr "Réinstaller"
+
+msgid "Reply deleted."
+msgstr "Réponse supprimée."
+
+msgid "Required"
+msgstr "Requis"
+
+msgid "SEARCH"
+msgstr "RECHERCHE"
+
+msgid "Save"
+msgstr "Enregistrer"
+
+msgid "Saved changes."
+msgstr "Modifications enregistrées."
+
+msgid "Start date is not valid."
+msgstr "La date de début n'est pas valide."
+
+msgid "Status changed."
+msgstr "État modifié."
+
+msgid "Success!"
+msgstr "Succès !"
+
+msgid "Syndication Disabled"
+msgstr "Diffusion désactivée."
+
+msgid "Syndication Enabled"
+msgstr "Diffusion activée."
+
+msgid "Syndication Not Allowed"
+msgstr "Diffusion non autorisée."
+
+msgid "Syndication Properties Updated."
+msgstr "Propriétés de diffusion mises à jour."
+
+msgid "Syndication is Disabled"
+msgstr "La diffusion est désactivée."
+
+msgid "The login name you selected is already in use or is not valid. Please choose another."
+msgstr "Le login est déjà utilisé ou n'est pas valide. Merci d'en choisir un autre."
+
+msgid "This resource is locked via webDAV."
+msgstr "Cette ressource est verrouillée par <em>webdav</em>."
+
+msgid "Transaction(s) undone"
+msgstr "Transaction(s) annulée(s)"
+
+msgid "Uninstall"
+msgstr "Déinstaller"
+
+msgid "You are here:"
+msgstr "Vous êtes ici :"
+
+msgid "You are not allowed to manage this role in this context."
+msgstr "Vous n'êtes pas autorisé à gérer ce rôle dans ce contexte."
+
+msgid "You must enter a title and body."
+msgstr "Vous devez ajouter un titre et un corps."
+
+msgid "You must enter a valid email address."
+msgstr "Vous devez entrer une adresse e-mail valide."
+
+msgid "next"
+msgstr "suivant"
+
+msgid "previous"
+msgstr "précédent"
+
+msgid "Warning: you should have selected only one member."
+msgstr "Attention : vous deviez sélectionner qu'un seul membre."
+
+msgid "Zip file imported and decompressed."
+msgstr "Fichier zip importé et décompressé."
+
+msgid "zoom in"
+msgstr "zoom avant"
+
+msgid "zoom out"
+msgstr "zoom arrière"
\ No newline at end of file
diff --git a/locales/fr/LC_MESSAGES/plinn.mo b/locales/fr/LC_MESSAGES/plinn.mo
new file mode 100644
index 0000000..e9d6f58
Binary files /dev/null and b/locales/fr/LC_MESSAGES/plinn.mo differ
diff --git a/locales/fr/LC_MESSAGES/plinn.po b/locales/fr/LC_MESSAGES/plinn.po
new file mode 100755
index 0000000..91520a8
--- /dev/null
+++ b/locales/fr/LC_MESSAGES/plinn.po
@@ -0,0 +1,2110 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: Plinn 2.0\n"
+"POT-Creation-Date: $Date: Mon Jun 29 11:38:05 2009 $\n"
+"PO-Revision-Date: 2009-06-29 11:41+0200\n"
+"Last-Translator:  Benoît PIN\n"
+"Language-Team: CRI http://cri.ensmp.fr\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"Language-Code: fr\n"
+"Language-Name: French\n"
+"Preferred-Encodings: utf-8 latin1\n"
+"Domain: plinn\n"
+"X-Is-Fallback-For: fr-fr, fr-be fr-ca fr-lu fr-mc fr-ch\n"
+
+#: EmailNotification.py:38
+msgid "Object deleted"
+msgstr "Objet supprimé"
+
+#. Default: ""
+#: MembershipTool.py:401
+msgid "%s's Home"
+msgstr "Accueil : %s"
+
+#. Default: ""
+#: MembershipTool.py:402
+msgid "%s's front page"
+msgstr "Page d'accueil de %s"
+
+#: profiles/default/actions.xml:107
+msgid "List"
+msgstr "Lister"
+
+#: profiles/default/actions.xml:122
+msgid "Manage Boxes"
+msgstr "Gérer les boîtes"
+
+#: profiles/default/actions.xml:134 skins/generic/send_email_form.pt:25
+msgid "Send an email"
+msgstr "Envoyer un e-mail"
+
+#: profiles/default/actions.xml:156
+msgid "Configure Portal"
+msgstr "Configurer le portail"
+
+#: profiles/default/actions.xml:167
+msgid "Directory"
+msgstr "Annuaire"
+
+#: profiles/default/actions.xml:181
+msgid "Add comment..."
+msgstr "Ajouter un commentaire..."
+
+#: profiles/default/actions.xml:209
+msgid "Calendar View"
+msgstr "Calendrier"
+
+#: profiles/default/workflows/default_workflow/scripts/sendNotificationEmail.py:52
+#: profiles/default/workflows/folder_workflow/scripts/sendNotificationEmail.py:52
+#: profiles/default/workflows/portfolio_workflow/scripts/sendNotificationEmail.py:52
+msgid "Document state change notificaction"
+msgstr "Notification de changement d'état d'un document"
+
+#: profiles/default/workflows/member_workflow/scripts/sendNotificationEmail.py:35
+msgid ""
+"\n"
+"You have been registered as a member of \"%(portal_title)s\", which\n"
+"allows you to personalize your view of the website and participate in\n"
+"the community.\n"
+msgstr ""
+"\n"
+"Vous venez d'être inscrit en tant que membre du portail « %(portal_title)s », ce qui vous permet de participer à la rédaction des contenus.\n"
+
+#: profiles/default/workflows/member_workflow/scripts/sendNotificationEmail.py:43
+msgid ""
+"You will receive an other mail with your randomly-generated\n"
+"password. Once you have logged in with this password, you\n"
+"may change it to anything you like."
+msgstr ""
+"Vous allez recevoir un autre e-mail avec votre mot de passe généré "
+"aléatoirement. Vous pourrez le changer dès votre première connexion."
+
+#: profiles/default/workflows/member_workflow/scripts/sendNotificationEmail.py:55
+msgid "your registration has been accepted"
+msgstr "votre inscription a été acceptée"
+
+#: skins/content/cal_calendar_view.pt:30
+msgid "Add a new event..."
+msgstr "Ajouter un nouvel événement..."
+
+#: skins/content/cal_calendar_view.pt:37 skins/content/cal_calendar_view.pt:40
+msgid "Remove event..."
+msgstr "Supprimer un événement..."
+
+#: skins/content/cal_calendar_view.pt:50
+msgid "The next click over an event will remove it!"
+msgstr "Le prochain clic sur un événement provoquera sa suppression !"
+
+#: skins/content/cal_calendar_view.pt:51
+msgid "Cancel delete mode"
+msgstr "Ne pas faire de suppression"
+
+#: skins/content/changes_history_template.pt:24
+msgid "« later revisions"
+msgstr "« révisions précédentes"
+
+#: skins/content/changes_history_template.pt:28
+msgid "earlier revisions »"
+msgstr "révisions suivantes »"
+
+#: skins/content/changes_history_template.pt:36
+#: skins/content/list_pending_contents.pt:42 skins/generic/wf_macros.pt:16
+msgid "Date"
+msgstr "Date"
+
+#: skins/content/changes_history_template.pt:37
+msgid "user"
+msgstr "utilisateur"
+
+#: skins/content/changes_history_template.pt:70
+msgid "Compare"
+msgstr "Comparer"
+
+#: skins/content/changes_history_template.pt:72
+msgid "Please select one revision per column to compare."
+msgstr "Veuillez sélectionner une révision par colonne pour comparer."
+
+#: skins/content/content_info.pt:16 skins/content/file_info.pt:12
+#: skins/content/list_pending_contents.pt:31
+#: skins/custom_generic/talkback_tree.pt:68 skins/generic/gruf_macros.pt:51
+#: skins/generic/gruf_macros.pt:307 skins/generic/header_widgets.pt:18
+#: skins/generic/header_widgets.pt:75
+#: skins/generic/search_results_template.pt:37
+msgid "Title"
+msgstr "Titre"
+
+#: skins/content/content_info.pt:20 skins/content/file_info.pt:20
+msgid "Created"
+msgstr "Créé"
+
+#: skins/content/content_info.pt:24 skins/content/file_info.pt:24
+msgid "Modified"
+msgstr "Modifié"
+
+#: skins/content/content_info.pt:9 skins/content/file_info.pt:5
+msgid "Preview:"
+msgstr "Aperçu :"
+
+#: skins/content/dateCriterionResolvedDescription.py:17
+msgid "search from the beginning of the world until %s"
+msgstr "recherche depuis la nuit des temps jusqu'au %s"
+
+#: skins/content/dateCriterionResolvedDescription.py:19
+msgid "search from %s and the end of the world"
+msgstr "recherche depuis le %s jusqu'à la fin du monde"
+
+#: skins/content/dateCriterionResolvedDescription.py:21
+msgid "search between %s and %s"
+msgstr "recherche entre le %s et le %s"
+
+#: skins/content/file_info.pt:16
+msgid "Type"
+msgstr "Type"
+
+#: skins/content/folder_notifications_template.pt:23
+#: skins/content/topic_edit_template.pt:26
+#: skins/custom_content/event_edit_template.pt:135
+#: skins/generic/search_results_template.pt:86
+msgid "Save"
+msgstr "Enregistrer"
+
+#: skins/content/list_pending_contents.pt:23
+msgid "Pending documents"
+msgstr "Documents en attente"
+
+#: skins/content/list_pending_contents.pt:37
+msgid "Submit by:"
+msgstr "Soumis par :"
+
+#: skins/content/no_preview.pt:11
+msgid "No preview available for this file"
+msgstr "Pas d'aperçu disponible pour ce fichier"
+
+#: skins/content/topic_edit_template.pt:16
+msgid "Reuse criteria from parent:"
+msgstr "Réutiliser les critères du parent :"
+
+#: skins/content/topic_edit_template.pt:17
+msgid "yes"
+msgstr "oui"
+
+#: skins/content/topic_edit_template.pt:18
+msgid "no"
+msgstr "non"
+
+#: skins/content/topic_edit_template.pt:27 skins/generic/gruf_macros.pt:211
+#: skins/generic/gruf_macros.pt:235
+msgid "Remove selected"
+msgstr "Supprimer la sélection"
+
+#: skins/content/topic_edit_template.pt:30
+msgid "New criterion:"
+msgstr "Nouveau critère :"
+
+#: skins/content/topic_edit_template.pt:33
+msgid "Name:"
+msgstr "Nom :"
+
+#: skins/content/topic_edit_template.pt:41
+msgid "Type:"
+msgstr "Type :"
+
+#: skins/content/topic_edit_template.pt:51 skins/generic/gruf_macros.pt:288
+#: skins/generic/gruf_macros.pt:327
+msgid "Add"
+msgstr "Ajouter"
+
+#: skins/control/restore_revision.py:9
+msgid "%(type)s restored."
+msgstr "%(type)s restauré."
+
+#: skins/control/save_search_as_topic.py:17
+msgid "Topic added."
+msgstr "Thème ajouté."
+
+#: skins/custom_content/content_status_history.pt:12
+#: skins/custom_content/transition_form.pt:25
+msgid "Current state:"
+msgstr "État actuel :"
+
+#: skins/custom_content/content_status_history.pt:9
+#: skins/custom_content/transition_form.pt:46
+msgid "Reviewing history"
+msgstr "Historique"
+
+#: skins/custom_content/discussionitem_view.pt:24
+msgid "Above in thread:"
+msgstr "Plus haut dans le fil :"
+
+#: skins/custom_content/event_edit_template.pt:115
+#: skins/custom_content/event_view.pt:57 skins/generic/gruf_macros.pt:57
+#: skins/generic/gruf_macros.pt:313 skins/generic/header_widgets.pt:24
+#: skins/generic/header_widgets.pt:85
+msgid "Description"
+msgstr "Description"
+
+#: skins/custom_content/event_edit_template.pt:121
+#: skins/custom_content/event_view.pt:33
+msgid "Event URL"
+msgstr "Url de l'événement"
+
+#: skins/custom_content/event_edit_template.pt:20
+#: skins/custom_content/event_view.pt:11
+msgid "Event Name"
+msgstr "Titre"
+
+#: skins/custom_content/event_edit_template.pt:24
+#: skins/custom_content/event_view.pt:27
+msgid "Event type"
+msgstr "Catégorie"
+
+#: skins/custom_content/event_edit_template.pt:27
+#: skins/custom_content/event_view.pt:17
+msgid "Location"
+msgstr "Lieu"
+
+#: skins/custom_content/event_edit_template.pt:38
+#: skins/custom_content/event_view.pt:13
+msgid "Contact Name"
+msgstr "Nom du contact"
+
+#: skins/custom_content/event_edit_template.pt:44
+#: skins/custom_content/event_view.pt:19
+msgid "Contact Email"
+msgstr "E-mail du contact"
+
+#: skins/custom_content/event_edit_template.pt:50
+#: skins/custom_content/event_view.pt:29
+msgid "Contact Phone"
+msgstr "Tel. du contact"
+
+#: skins/custom_content/event_edit_template.pt:67
+msgid "Beginning"
+msgstr "Début"
+
+#: skins/custom_content/event_edit_template.pt:78
+#: skins/custom_content/event_edit_template.pt:103 skins/generic/widgets.pt:94
+msgid ""
+"${month}&nbsp;/&nbsp;${day}&nbsp;/&nbsp;${year}&nbsp;&nbsp;${hour}&nbsp;:"
+"&nbsp;${minute}"
+msgstr ""
+"${day}&nbsp;/&nbsp;${month}&nbsp;/&nbsp;${year}&nbsp;&nbsp;${hour}&nbsp;:"
+"&nbsp;${minute}"
+
+#: skins/custom_content/event_edit_template.pt:92
+msgid "End"
+msgstr "Fin"
+
+#: skins/custom_content/event_view.pt:44
+msgid "Start Date"
+msgstr "Début"
+
+#: skins/custom_content/event_view.pt:49
+msgid "Stop Date"
+msgstr "Fin"
+
+#: skins/custom_content/friendlydatec_editform.pt:14
+msgid "At the least:"
+msgstr "Au moins :"
+
+#: skins/custom_content/friendlydatec_editform.pt:17
+msgid "At the most:"
+msgstr "Au plus :"
+
+#: skins/custom_content/friendlydatec_editform.pt:20
+msgid "Within the day:"
+msgstr "Au jour de :"
+
+#. Default: "old"
+#: skins/custom_content/friendlydatec_editform.pt:37
+msgid "daterange_old"
+msgstr "passé"
+
+#. Default: "ahead"
+#: skins/custom_content/friendlydatec_editform.pt:40
+msgid "daterange_ahead"
+msgstr "futur"
+
+#: skins/custom_content/listc_edit.pt:16
+msgid "Operator:"
+msgstr "Opérateur :"
+
+#: skins/custom_content/listc_edit.pt:18
+msgid "or"
+msgstr "ou"
+
+#: skins/custom_content/listc_edit.pt:21
+#: skins/custom_generic/talkback_tree.pt:32
+msgid "and"
+msgstr "et"
+
+#: skins/custom_content/sic_edit.pt:15
+msgid "Minimum"
+msgstr "Mininum"
+
+#: skins/custom_content/sic_edit.pt:18
+msgid "Maximum"
+msgstr "Maximum"
+
+#: skins/custom_content/sic_edit.pt:21
+msgid "Min/Max"
+msgstr "Min/Max"
+
+#: skins/custom_content/sort_edit.pt:16
+msgid "Regular sort"
+msgstr "Tri normal"
+
+#: skins/custom_content/sort_edit.pt:20
+msgid "Reversed sort"
+msgstr "Tri inversé"
+
+#: skins/custom_content/topic_view.pt:42
+msgid "No result"
+msgstr "Pas de résultat"
+
+#: skins/custom_content/topic_view.pt:46
+msgid "Subtopics"
+msgstr "Sous-thèmes"
+
+#: skins/custom_content/topic_view.pt:49
+msgid "Topic"
+msgstr "Thème"
+
+#: skins/custom_content/transition_form.pt:15
+msgid "Transition of ${objectid}."
+msgstr "Transition de « ${objectid} »."
+
+#: skins/custom_content/transition_form.pt:18
+msgid "Transition description."
+msgstr "Description"
+
+#: skins/custom_content/transition_form.pt:30 skins/generic/wf_macros.pt:19
+msgid "Comments"
+msgstr "Commentaires"
+
+#: skins/custom_content/transition_form.pt:40
+msgid "Transition"
+msgstr "Transition"
+
+#: skins/custom_control/addtoFavorites.py:15
+msgid "Favorites"
+msgstr "Favoris"
+
+#: skins/custom_control/folder_bottom_control.py:17
+msgid "%d item moved to bottom.%d items moved to bottom."
+msgstr "%d élément déplacé en bas.%d éléments déplacés en bas."
+
+#: skins/custom_control/folder_down_control.py:18
+msgid "%d item moved down.%d items moved down."
+msgstr "%d élément déplacé vers le bas.%d éléments déplacés vers le bas."
+
+#: skins/custom_control/folder_top_control.py:17
+msgid "%d item moved to top.%d items moved to top."
+msgstr "%d élément déplacé en haut.%d éléments déplacés en haut."
+
+#: skins/custom_control/folder_up_control.py:17
+msgid "%d item moved up.%d items moved up."
+msgstr "%d élément déplacé vers le haut.%d éléments déplacés vers le haut."
+
+#: skins/custom_generic/folder_contents_template.pt:26
+msgid "Up"
+msgstr "Haut"
+
+#: skins/custom_generic/folder_contents_template.pt:29
+msgid "Down"
+msgstr "Bas"
+
+#. Default: "by"
+#: skins/custom_generic/folder_contents_template.pt:31
+msgid "move_by"
+msgstr "de"
+
+#: skins/custom_generic/folder_contents_template.pt:39
+msgid "Top"
+msgstr "Premier"
+
+#: skins/custom_generic/folder_contents_template.pt:41
+msgid "Bottom"
+msgstr "Dernier"
+
+#: skins/custom_generic/logged_in.py:28
+msgid "Login failure"
+msgstr "Échec de la connexion"
+
+#: skins/custom_generic/logged_in.py:50
+msgid "Login success"
+msgstr "Connexion réussie"
+
+#: skins/custom_generic/mail_password_template.py:30
+msgid "${portal_title}: Membership reminder"
+msgstr "${portal_title} : rappel du mot de passe"
+
+#: skins/custom_generic/mail_password_template.py:35
+#: skins/custom_generic/registered_notify_template.py:46
+msgid ""
+"Your member id and password are: Member ID: ${member_id} Password: "
+"${password}"
+msgstr ""
+"Vos login et mot de passe sont :login : ${member_id}mot de passe : "
+"${password}"
+
+#: skins/custom_generic/mail_password_template.py:37
+#: skins/custom_generic/registered_notify_template.py:48
+msgid "You can use this URL to log in:"
+msgstr "Vous pouvez utiliser ce lien pour vous connecter :"
+
+#: skins/custom_generic/mail_password_template.py:45
+#: skins/custom_generic/registered_notify_template.py:56
+msgid ""
+"Be aware that this URL might wrap over two lines. If your browser shows an "
+"error message when you try to access the URL please make sure that you put "
+"in the complete string."
+msgstr ""
+"Notez que ce lien peut être découpé sur 2 lignes. Si votre navigateur "
+"affiche un message d'erreur lorsque vous essayez d'y accéder, vérifier bien "
+"qu'il n'y a pas eu de troncature."
+
+#: skins/custom_generic/mail_password_template.py:48
+#: skins/generic/load_revision.py:31 skins/generic/load_revision.py:38
+msgid "%Y/%m/%d at %I:%M:%S %p"
+msgstr "%d/%m/%Y à %H:%M:%S"
+
+#: skins/custom_generic/mail_password_template.py:50
+msgid "Request made by IP ${ip} at ${time}"
+msgstr "Requête faîte par l'IP ${ip} à ${time}"
+
+#: skins/custom_generic/main_template_standard.pt:110
+#: skins/custom_generic/talkback_tree.pt:63
+#: skins/generic/main_template_ajax.pt:12
+msgid "Information"
+msgstr "Information"
+
+#: skins/custom_generic/main_template_standard.pt:111
+#: skins/custom_generic/talkback_tree.pt:64
+#: skins/generic/main_template_ajax.pt:13 skins/generic/widgets.pt:17
+msgid "${DYNAMIC_CONTENT}"
+msgstr "${DYNAMIC_CONTENT}"
+
+#: skins/custom_generic/main_template_standard.pt:95
+msgid "Skip to content"
+msgstr "Sauter au contenu"
+
+#: skins/custom_generic/reconfig_template.pt:124
+msgid "Default ajax options"
+msgstr "Options ajax par défaut"
+
+#: skins/custom_generic/reconfig_template.pt:128
+msgid "Enable handling of all clicks over links"
+msgstr "Activer l'interception de tous les clicks sur les liens"
+
+#: skins/custom_generic/reconfig_template.pt:133
+msgid "Enable handling of all forms submissions"
+msgstr "Activer l'interception de tous les envois de formulaires"
+
+#: skins/custom_generic/reconfig_template.pt:79
+msgid "Copyright notice"
+msgstr "Mention légale"
+
+#: skins/custom_generic/reconfig_template.pt:83
+msgid "Copyright notice displayed on the portal footer."
+msgstr "Mention légale affichée sur le pied de page du portail."
+
+#: skins/custom_generic/registered_notify_template.py:30
+msgid "${portal_title}: Your Membership Information"
+msgstr "${portal_title} : Vos informations d'inscription"
+
+#: skins/custom_generic/registered_notify_template.py:35
+msgid ""
+"You have been registered as a member of \"${portal_title}\", which allows "
+"you to personalize your view of the website and participate in the community."
+msgstr ""
+"Vous avez été enregistré en tant que membre de « %(portal_title)s », ce qui "
+"vous permet de participer à la rédaction des contenus ainsi qu'à la "
+"communauté de ce site."
+
+#: skins/custom_generic/registered_notify_template.py:39
+msgid "This describes the purpose of the website:"
+msgstr "Voici le but de ce site web :"
+
+#: skins/custom_generic/registered_notify_template.py:44
+msgid "Visit us at ${portal_url}"
+msgstr "Rejoignez-nous sur ${portal_url}"
+
+#: skins/custom_generic/talkback_tree.pt:27
+msgid "by"
+msgstr "par"
+
+#: skins/custom_generic/talkback_tree.pt:36
+msgid "unknown"
+msgstr "inconnu"
+
+#. Default: "at"
+#: skins/custom_generic/talkback_tree.pt:37 skins/generic/recent_news.pt:43
+msgid "at_(date)"
+msgstr "le"
+
+#: skins/custom_generic/talkback_tree.pt:74
+msgid "Body"
+msgstr "Corps"
+
+#: skins/custom_generic/talkback_tree.pt:82 skins/generic/gruf_macros.pt:77
+#: skins/generic/gruf_macros.pt:410 skins/generic/header_widgets.pt:32
+#: skins/generic/header_widgets.pt:173 skins/generic/send_email_form.pt:79
+msgid "Validate"
+msgstr "Valider"
+
+#: skins/custom_generic/talkback_tree.pt:85
+msgid "Cancel"
+msgstr "Annuler"
+
+#: skins/custom_generic/viewThreadsAtBottom.pt:10
+msgid "Comments:"
+msgstr "Commentaires :"
+
+#. Default: "Previous${number}"
+#: skins/generic/batch_macros.pt:26
+msgid "batch_previous_x_items"
+msgstr "${number} précédents"
+
+#. Default: "Next${number}items"
+#: skins/generic/batch_macros.pt:32
+msgid "batch_next_x_items"
+msgstr "${number} suivants"
+
+#: skins/generic/calendar_macros.pt:159 skins/generic/calendar_macros.pt:161
+msgid "Previous"
+msgstr "Précédent"
+
+#: skins/generic/calendar_macros.pt:164
+msgid "Week"
+msgstr "Semaine"
+
+#: skins/generic/calendar_macros.pt:166
+msgid "Month"
+msgstr "Mois"
+
+#: skins/generic/calendar_macros.pt:171 skins/generic/calendar_macros.pt:173
+msgid "Next"
+msgstr "Suivant"
+
+#: skins/generic/calendar_macros.pt:78 skins/generic/calendar_macros.pt:81
+#: skins/generic/calendar_macros.pt:128 skins/generic/calendar_macros.pt:130
+msgid "Click to see hidden items"
+msgstr "Cliquer pour voir les éléments masqués"
+
+#: skins/generic/calendar_macros.pt:88
+msgid "${dayName}&nbsp;${monthName}&nbsp;${dayNumber}"
+msgstr "${dayName}&nbsp;${dayNumber}&nbsp;${monthName}"
+
+#: skins/generic/content_depublish_form.pt:10
+msgid "depublish_transition_explanations"
+msgstr ""
+"La dépublication de ce document annulera son partage entre tout les membres "
+"du site et permettra à son créateur de le modifier à nouveau. Vous devez "
+"choisir quel sera l'état de destination pour effectuer l'opération."
+
+#: skins/generic/content_depublish_form.pt:15
+msgid "Select the destination state"
+msgstr "Sélectionnez l'état de destination"
+
+#: skins/generic/content_depublish_form.pt:18
+msgid "Private"
+msgstr "Privé"
+
+#: skins/generic/content_depublish_form.pt:22
+msgid "Shared"
+msgstr "Partagé"
+
+#: skins/generic/content_depublish_form.pt:26
+msgid "Depublish"
+msgstr "Dépublier"
+
+#: skins/generic/content_depublish_form.pt:8
+msgid "Depublish: \"${docTitle}\""
+msgstr "Dépublier : «&nbsp;${docTitle}&nbsp;»"
+
+#: skins/generic/content_make_private_form.pt:10
+msgid "Make private: \"${docTitle}\""
+msgstr "Rendre privé : «&nbsp;${docTitle}&nbsp;»"
+
+#. Default: "share_transition_explanations"
+#: skins/generic/content_make_private_form.pt:11
+msgid "make_private_transition_explanations"
+msgstr ""
+"Une fois ce changement effectué, ce document ne sera visible que par vous "
+"même ainsi que les coordonnateurs."
+
+#: skins/generic/content_make_private_form.pt:16
+msgid "Make private"
+msgstr "Rendre privé"
+
+#: skins/generic/content_publish_form.pt:10
+msgid "publish_transition_explanations"
+msgstr ""
+"La publication de ce document aura pour effet de le rendre disponible à "
+"l'ensemble des membres du site ainsi que d'empêcher sa supression."
+
+#: skins/generic/content_publish_form.pt:17
+#: skins/generic/content_reject_form.pt:16
+msgid "Notify by e-mail"
+msgstr "Notifier par mail"
+
+#: skins/generic/content_publish_form.pt:26
+msgid "Publish"
+msgstr "Publier"
+
+#: skins/generic/content_publish_form.pt:8
+msgid "Publish: \"${docTitle}\""
+msgstr "Publier : «&nbsp;${docTitle}&nbsp;»"
+
+#: skins/generic/content_reject_form.pt:25 skins/generic/pending_members.pt:30
+msgid "Reject"
+msgstr "Rejeter"
+
+#: skins/generic/content_reject_form.pt:8
+msgid "Reject: \"${objectid}\""
+msgstr "Rejeter : «&nbsp;${objectid}&nbsp;»"
+
+#: skins/generic/content_reject_form.pt:9
+msgid "reject_transition_explanations"
+msgstr ""
+"Rejeter la publication de ce document pour que son propriétaire puisse "
+"continuer à travailler."
+
+#: skins/generic/content_retract_form.pt:15
+msgid "Retract"
+msgstr "Retirer"
+
+#: skins/generic/content_retract_form.pt:8
+msgid "Retract: \"${objectid}\""
+msgstr "Retirer : «&nbsp;${objectid}&nbsp;»"
+
+#: skins/generic/content_retract_form.pt:9
+msgid "retract_transition_explanations"
+msgstr ""
+"Le retrait d'un document a pour effet d'annuler sa soumission pour le "
+"remettre à l'état privé."
+
+#: skins/generic/content_share_form.pt:10
+msgid "Share: \"${docTitle}\""
+msgstr "Partager : «&nbsp;${docTitle}&nbsp;»"
+
+#: skins/generic/content_share_form.pt:11
+msgid "share_transition_explanations"
+msgstr ""
+"Partager signifie que l'ensemble des utilisateurs ayant accès à ce dossier "
+"pourra lire ce document."
+
+#: skins/generic/content_share_form.pt:16
+msgid "Share"
+msgstr "Partager"
+
+#: skins/generic/content_submit_form.pt:15
+msgid "Submit"
+msgstr "Soumettre"
+
+#: skins/generic/content_submit_form.pt:8
+msgid "Submit: \"${objectid}\" for Review."
+msgstr "Soumettre : «&nbsp;${objectid}&nbsp;» pour validation."
+
+#: skins/generic/content_submit_form.pt:9
+msgid "submit_transition_explanations"
+msgstr ""
+"Soumettre ce document en vue d'une validation accordée par un modérateur."
+
+#: skins/generic/default_home_page_content.pt:2
+msgid "Welcome to Plinn!"
+msgstr "Bienvenue sur Plinn !"
+
+#: skins/generic/default_home_page_content.pt:3
+msgid "This is the default home page."
+msgstr "Ceci est la page d'accueil par défaut."
+
+#: skins/generic/default_home_page_content.pt:4
+#: skins/generic/default_member_content.pt:4
+msgid "To change the content just select \"Edit\" in the Tab bar on the top."
+msgstr ""
+"Pour modifier cette page, sélectionner « Modifier » dans la barre d'onglets "
+"ci-dessus. "
+
+#: skins/generic/default_member_content.pt:2
+msgid "Default page for ${memberFullName}"
+msgstr "Page d'accueil de ${memberFullName}"
+
+#: skins/generic/default_member_content.pt:3
+msgid ""
+"This is the default document created for you when you have been registered "
+"in this portal."
+msgstr ""
+"Ceci est la page par d&eacute;faut qui a &eacute;t&eacute; cr&eacute;&eacute;"
+"e automatiquement lorsque vous avez &eacute;t&eacute; inscrit sur le portail."
+
+#: skins/generic/groups_members.pt:35
+msgid "Members of \"${groupId}\""
+msgstr "Membres pour «&nbsp;${groupId}&nbsp;»"
+
+#: skins/generic/groups_members.pt:47
+msgid "Groups of \"${groupId}\""
+msgstr "Groupes pour «&nbsp;${groupId}&nbsp;»"
+
+#: skins/generic/gruf_macros.pt:105
+msgid "Remove"
+msgstr "Retirer"
+
+#: skins/generic/gruf_macros.pt:112
+msgid "Append"
+msgstr "Ajouter"
+
+#: skins/generic/gruf_macros.pt:129 skins/generic/gruf_macros.pt:164
+msgid "Outside group"
+msgstr "Non membres"
+
+#: skins/generic/gruf_macros.pt:131 skins/generic/gruf_macros.pt:166
+msgid "Inside group"
+msgstr "Membres"
+
+#: skins/generic/gruf_macros.pt:148 skins/generic/gruf_macros.pt:183
+msgid "None"
+msgstr "Aucun"
+
+#: skins/generic/gruf_macros.pt:197
+msgid "All members"
+msgstr "Tous les membres"
+
+#: skins/generic/gruf_macros.pt:210
+msgid "Edit"
+msgstr "Modifier"
+
+#: skins/generic/gruf_macros.pt:224
+msgid "All groups"
+msgstr "Tous les groupes"
+
+#: skins/generic/gruf_macros.pt:247
+msgid "Add new member"
+msgstr "Nouveau membre"
+
+#: skins/generic/gruf_macros.pt:25
+msgid "Group Tree"
+msgstr "Arborescence des groupes"
+
+#: skins/generic/gruf_macros.pt:250 skins/generic/gruf_macros.pt:365
+msgid "Login"
+msgstr "Login"
+
+#: skins/generic/gruf_macros.pt:256 skins/generic/gruf_macros.pt:378
+#: skins/generic/last_member_logs.pt:23 skins/generic/pending_members.pt:13
+msgid "Name"
+msgstr "Nom"
+
+#: skins/generic/gruf_macros.pt:262 skins/generic/gruf_macros.pt:384
+msgid "Given Name"
+msgstr "Prénom"
+
+#: skins/generic/gruf_macros.pt:268 skins/generic/gruf_macros.pt:390
+msgid "Password"
+msgstr "Mot de passe"
+
+#: skins/generic/gruf_macros.pt:274 skins/generic/gruf_macros.pt:396
+msgid "Confirm"
+msgstr "Confirmation"
+
+#: skins/generic/gruf_macros.pt:280 skins/generic/gruf_macros.pt:402
+msgid "Email address"
+msgstr "Adresse e-mail"
+
+#: skins/generic/gruf_macros.pt:298
+msgid "Add new group"
+msgstr "Nouveau groupe"
+
+#: skins/generic/gruf_macros.pt:301
+msgid "Id"
+msgstr "Identifiant"
+
+#: skins/generic/gruf_macros.pt:371
+msgid "Groups"
+msgstr "Groupes"
+
+#: skins/generic/gruf_macros.pt:373
+msgid "explicitly:"
+msgstr "explicitement :"
+
+#: skins/generic/gruf_macros.pt:374
+msgid "implicitly:"
+msgstr "implicitement :"
+
+#: skins/generic/gruf_macros.pt:415
+msgid "Tree view by this member"
+msgstr "Arborescence vue par ce membre"
+
+#: skins/generic/gruf_macros.pt:416
+msgid "Click here to see the tree viewed by this member &gt;&gt;"
+msgstr "Cliquer ici pour afficher l'arborescence vue par ce membre &gt;&gt;"
+
+#: skins/generic/gruf_macros.pt:440
+msgid "collapse all"
+msgstr "condenser tout"
+
+#: skins/generic/gruf_macros.pt:45 skins/generic/header_widgets.pt:70
+msgid "Identifier"
+msgstr "Identifiant"
+
+#: skins/generic/gruf_macros.pt:471
+msgid "&lt;&lt; Back to member properties"
+msgstr "&lt;&lt; Revenir aux propriétés du membre"
+
+#: skins/generic/gruf_macros.pt:63 skins/generic/gruf_macros.pt:319
+msgid "Shared folder"
+msgstr "Dossier partagé"
+
+#: skins/generic/gruf_macros.pt:66
+msgid "Open shared folder..."
+msgstr "Ouvrir le dossier partagé"
+
+#: skins/generic/gruf_macros.pt:69 skins/generic/gruf_macros.pt:321
+msgid "Create"
+msgstr "Créer"
+
+#: skins/generic/gruf_macros.pt:90
+msgid "Implicit roles"
+msgstr "Rôles implicites"
+
+#: skins/generic/gruf_macros.pt:98
+msgid "Explicit roles"
+msgstr "Rôles explicites"
+
+#: skins/generic/header_widgets.pt:108
+msgid "Contributors"
+msgstr "Contributeurs"
+
+#: skins/generic/header_widgets.pt:115
+msgid "Creation Date"
+msgstr "Date de création"
+
+#: skins/generic/header_widgets.pt:118
+msgid "Last Modified Date"
+msgstr "Dernière modification"
+
+#: skins/generic/header_widgets.pt:130
+msgid "Effective Date"
+msgstr "Date de mise en ligne"
+
+#: skins/generic/header_widgets.pt:141
+msgid "Expiration Date"
+msgstr "Date d'expiration"
+
+#: skins/generic/header_widgets.pt:147 skins/generic/wysiwyg_support.pt:108
+msgid "Format"
+msgstr "Format"
+
+#: skins/generic/header_widgets.pt:155
+msgid "Language"
+msgstr "Langue"
+
+#: skins/generic/header_widgets.pt:163
+msgid "Rights"
+msgstr "Droits"
+
+#: skins/generic/header_widgets.pt:174
+msgid "Edit standard metadata"
+msgstr "Éditer les métadonnées standard"
+
+#: skins/generic/header_widgets.pt:33
+msgid "Edit all metadata"
+msgstr "Éditer toutes les métadonnées"
+
+#: skins/generic/header_widgets.pt:54
+msgid "Enable Discussion?"
+msgstr "Activer les commentaires ?"
+
+#: skins/generic/header_widgets.pt:57
+msgid "Default"
+msgstr "Par défaut"
+
+#: skins/generic/header_widgets.pt:60
+msgid "Off"
+msgstr "Désactiver"
+
+#: skins/generic/header_widgets.pt:63
+msgid "On"
+msgstr "Activer"
+
+#: skins/generic/header_widgets.pt:91
+msgid "Subject"
+msgstr "Sujet"
+
+#: skins/generic/last_member_logs.pt:19
+msgid "Last member login times"
+msgstr "Dates de dernière connexion des membres"
+
+#: skins/generic/last_member_logs.pt:27
+msgid "Last login time"
+msgstr "Dernière connexion"
+
+#: skins/generic/load_revision.py:29
+#: skins/content/changes_history_template.pt:63
+msgid "nobody"
+msgstr "personne"
+
+#: skins/generic/load_revision.py:38
+msgid "state of %s"
+msgstr "état au %s"
+
+#: skins/generic/local_roles_macros.pt:160
+msgid "No more group available for the ${role} role in this folder"
+msgstr "Plus de groupe disponible pour le rôle de ${role} dans ce dossier"
+
+#: skins/generic/local_roles_macros.pt:174
+msgid "No group have got the ${role} role in this folder"
+msgstr "Aucun groupe ne dispose du rôle de ${role} dans ce dossier"
+
+#: skins/generic/local_roles_macros.pt:39
+#: skins/generic/local_roles_macros.pt:122
+msgid "Current Role: \"${current_role}\""
+msgstr "Rôle sélectionné : «&nbsp;${current_role}&nbsp;»"
+
+#: skins/generic/local_roles_macros.pt:45
+#: skins/generic/local_roles_macros.pt:127
+msgid "ok"
+msgstr "ok"
+
+#: skins/generic/local_roles_macros.pt:66
+#: skins/generic/local_roles_macros.pt:148
+msgid "Haven't role"
+msgstr "N'a pas le rôle"
+
+#: skins/generic/local_roles_macros.pt:72
+#: skins/generic/local_roles_macros.pt:150
+msgid "Have role"
+msgstr "A le rôle"
+
+#: skins/generic/local_roles_macros.pt:84
+msgid "No more member available for the ${role} role in this folder"
+msgstr "Plus de membre disponible pour le rôle de ${role} dans ce dossier"
+
+#: skins/generic/local_roles_macros.pt:99
+msgid "Nobody have got the ${role} role in this folder"
+msgstr "Personne ne dispose du rôle de ${role} dans ce dossier"
+
+#. Default: "%m/%d/%Y %Hh%M"
+#: skins/generic/locale_date_fmt.pt:1
+msgid "locale_date_fmt"
+msgstr "%d/%m/%Y %Hh%M"
+
+#: skins/generic/main_template_macros.pt:109
+msgid "Exit boxes editing"
+msgstr "Quitter l'édition des boîtes"
+
+#: skins/generic/main_template_macros.pt:78
+msgid "You are here:"
+msgstr "Vous êtes ici :"
+
+#: skins/generic/main_template_macros.pt:91
+#: skins/generic/main_template_macros.pt:94
+#: skins/generic/main_template_macros.pt:112
+#: skins/generic/main_template_macros.pt:113
+msgid "Paste"
+msgstr "Coller"
+
+#: skins/generic/pending_members.pt:14
+msgid "Email"
+msgstr "E-mail"
+
+#: skins/generic/pending_members.pt:35
+msgid "Register"
+msgstr "Inscrire"
+
+#: skins/generic/pending_members.pt:9
+msgid "Review members registration"
+msgstr "Modérer l'inscription des membres"
+
+#: skins/generic/recent_news.pt:21
+msgid "News"
+msgstr "Actualités"
+
+#: skins/generic/recent_news.pt:36
+msgid "by:"
+msgstr "par :"
+
+#. Default: "Read More"
+#: skins/generic/recent_news.pt:49
+msgid "read_more"
+msgstr "lire la suite..."
+
+#: skins/generic/recent_news.pt:57
+msgid "No news is good news!"
+msgstr "Pas de nouvelle bonne nouvelle !"
+
+#: skins/generic/reject_member_form.pt:14
+msgid "From:"
+msgstr "De :"
+
+#: skins/generic/reject_member_form.pt:20
+msgid "To:"
+msgstr "À :"
+
+#: skins/generic/reject_member_form.pt:27 skins/generic/send_email_form.pt:96
+msgid "Subject:"
+msgstr "Sujet :"
+
+#: skins/generic/reject_member_form.pt:31
+msgid "Membership request denied"
+msgstr "Demande d'inscription refusée"
+
+#: skins/generic/reject_member_form.pt:35 skins/generic/send_email_form.pt:101
+msgid "Message body:"
+msgstr "Texte du message :"
+
+#: skins/generic/reject_member_form.pt:39
+msgid ""
+"I'm sorry to have to inform you that your request has been denied. Please "
+"contact the site administrator."
+msgstr ""
+"Nous sommes dans le regret de vous informer que votre demande d'inscription "
+"a été refusée. Merci de contacter l'administrateur du site."
+
+#: skins/generic/reject_member_form.pt:45
+msgid "Send"
+msgstr "Envoyer"
+
+#: skins/generic/reject_member_form.pt:9
+msgid "Reject registration of ${fullname}"
+msgstr "Refuser l'inscription de ${fullname}"
+
+#: skins/generic/revision_context_header.pt:10
+msgid ""
+"This is an old revision of this content, as edited by ${user} at ${datetime}."
+msgstr ""
+"Ceci est une révision archivée de ce contenu, tel qu'il a été enregistré par "
+"${user} le ${datetime}"
+
+#: skins/generic/revision_context_header.pt:16
+msgid "Restore this revision"
+msgstr "Restaurer cette révision"
+
+#: skins/generic/revision_context_header.pt:22
+msgid "← previous revision"
+msgstr "← révision précédente"
+
+#: skins/generic/revision_context_header.pt:27
+msgid "current revision"
+msgstr "révision actuelle"
+
+#: skins/generic/revision_context_header.pt:29
+msgid "next revision →"
+msgstr "révision suivante →"
+
+#: skins/generic/search.py:82 skins/generic/search.py:86
+msgid "ascending sort"
+msgstr "tri croissant"
+
+#: skins/generic/search_results_template.pt:16
+msgid "Search Results"
+msgstr "Résultats de la recherche"
+
+#: skins/generic/search_results_template.pt:23
+msgid "Found ${count} ${item_s_match} '${text}'."
+msgstr "${count} ${item_s_match} « ${text} »"
+
+#: skins/generic/search_results_template.pt:27
+msgid "Found 1 item."
+msgstr "1 élément trouvé."
+
+#: skins/generic/search_results_template.pt:28
+msgid "Found ${count} items."
+msgstr "${count} éléments trouvés."
+
+#: skins/generic/search_results_template.pt:41
+msgid "Creator"
+msgstr "Créateur"
+
+#: skins/generic/search_results_template.pt:45
+msgid "Last modified"
+msgstr "Dernière modification"
+
+#: skins/generic/search_results_template.pt:65
+msgid "(No title)"
+msgstr "(Sans titre)"
+
+#: skins/generic/search_results_template.pt:82
+msgid "Save this search as topic"
+msgstr "Enregistrer cette recherche dans un thème"
+
+#: skins/generic/search_results_template.pt:83
+msgid "Title:"
+msgstr "Titre :"
+
+#: skins/generic/search_results_template.pt:88
+msgid "There are no items matching your specified criteria."
+msgstr "Aucun élément ne correspond aux critères de recherche."
+
+#: skins/generic/send_email_form.pt:107
+msgid "Send email"
+msgstr "Envoyer l'email"
+
+#: skins/generic/send_email_form.pt:110
+msgid "Note: This message will be stored in content history."
+msgstr "Nota : Ce message sera enregistré dans l'historique du document."
+
+#: skins/generic/send_email_form.pt:29
+msgid "Recipients:"
+msgstr "Destinataires :"
+
+#: skins/generic/send_email_form.pt:47
+msgid "(as copy)"
+msgstr "(en copie)"
+
+#: skins/generic/send_email_form.pt:62
+msgid "All (${nofpers} persons)"
+msgstr "Tous (${nofpers} personnes)"
+
+#: skins/generic/send_email_form.pt:69
+msgid "Show list"
+msgstr "Afficher la liste"
+
+#: skins/generic/send_email_form.pt:79
+msgid "(not required)"
+msgstr "(facultatif)"
+
+#: skins/generic/send_email_form.pt:90
+msgid "Others (on address by line)"
+msgstr "Autres (une adresse par ligne)"
+
+#: skins/generic/wf_macros.pt:17
+msgid "Actor"
+msgstr "Acteur"
+
+#: skins/generic/wf_macros.pt:18
+msgid "Action"
+msgstr "Action"
+
+#: skins/generic/wf_macros.pt:20
+msgid "Email sent to"
+msgstr "E-mail envoyé à"
+
+#: skins/generic/wf_macros.pt:28
+msgid "(no comments)"
+msgstr "(pas de commentaire)"
+
+#: skins/generic/wf_macros.pt:33
+msgid "(no email sent)"
+msgstr "(pas d'e-mail envoyé)"
+
+#: skins/generic/widgets.pt:32 skins/generic/widgets.pt:33
+msgid "Edit metadata"
+msgstr "Éditer les métadonnées"
+
+#: skins/generic/widgets.pt:53
+msgid "Clipboard"
+msgstr "Presse-papier"
+
+#: skins/generic/wysiwyg_support.pt:112
+msgid "Structured text"
+msgstr "Texte structuré"
+
+#: skins/generic/wysiwyg_support.pt:118
+msgid "HTML"
+msgstr "HTML"
+
+#: skins/generic/wysiwyg_support.pt:124
+msgid "Plain text"
+msgstr "Texte brut"
+
+msgid "${month}/${day}/${year}&nbsp;&nbsp;${hour}:${minute}:${second}"
+msgstr "${day}/${month}/${year}&nbsp;&nbsp;${hour}:${minute}:${second}"
+
+msgid "1 Day"
+msgstr "1 jour"
+
+msgid "2 Days"
+msgstr "2 jours"
+
+msgid "5 Days"
+msgstr "5 jours"
+
+msgid "1 Week"
+msgstr "1 semaine"
+
+msgid "2 Weeks"
+msgstr "2 semaines"
+
+msgid "1 Month"
+msgstr "1 mois"
+
+msgid "3 Months"
+msgstr "3 mois"
+
+msgid "6 Months"
+msgstr "6 mois"
+
+msgid "1 Year"
+msgstr "1 an"
+
+msgid "2 years"
+msgstr "2 ans"
+
+msgid "Action Box Block"
+msgstr "Boîte d'action"
+
+msgid "Action box settings"
+msgstr "Paramètres de la boîte d'action"
+
+msgid "Activity block"
+msgstr "Activité"
+
+msgid "Add a document..."
+msgstr "Ajouter un document..."
+
+msgid "Add an activity"
+msgstr "Ajouter une activité"
+
+msgid "Add node"
+msgstr "Ajouter un nœud"
+
+msgid "Advanced search"
+msgstr "Recherche avancée"
+
+msgid "Anonymous registration"
+msgstr "Inscription anonyme"
+
+msgid "Appointment"
+msgstr "Rendez-vous"
+
+msgid "Append Roles"
+msgstr "Ajouter les rôles"
+
+msgid "Append or remove groups"
+msgstr "Ajout / Suppression de groupes"
+
+msgid "Append or remove members"
+msgstr "Ajout / Suppression de membres"
+
+msgid "April"
+msgstr "Avril"
+
+msgid "April_abbr"
+msgstr "Avr"
+
+msgid "Assign local roles: Search Members"
+msgstr "Assigner des rôles locaux : recherche de membres"
+
+msgid "Assign local roles: Search Results"
+msgstr "Assigner des rôles locaux : résultats de la recherche"
+
+msgid "August"
+msgstr "Août"
+
+msgid "August_abbr"
+msgstr "Août"
+
+msgid "B"
+msgstr "o"
+
+msgid "Backlinks"
+msgstr "Liens arrières"
+
+msgid "Base folder of members' folders"
+msgstr "Dossier racine des dossiers des membres"
+
+msgid "Box title:"
+msgstr "Titre de la boîte :"
+
+msgid "catalog_index_allowedRolesAndUsers"
+msgstr "Rôles et utilisateurs autorisés"
+
+msgid "catalog_index_created"
+msgstr "Date de création"
+
+msgid "catalog_index_Creator"
+msgstr "Créateur"
+
+msgid "catalog_index_Date"
+msgstr "Date"
+
+msgid "catalog_index_DateTimeOriginal"
+msgstr "Date de prise de vue"
+
+msgid "catalog_index_Description"
+msgstr "Description"
+
+msgid "catalog_index_effective"
+msgstr "Date de mise en ligne"
+
+msgid "catalog_index_expires"
+msgstr "Date d'expiration"
+
+msgid "catalog_index_fTitle"
+msgstr "Titre (pour tri)"
+
+msgid "catalog_index_getId"
+msgstr "Identifiant"
+
+msgid "catalog_index_listCreators"
+msgstr "Contributeurs"
+
+msgid "catalog_index_modified"
+msgstr "Date de modification"
+
+msgid "catalog_index_path"
+msgstr "Url relative"
+
+msgid "catalog_index_portal_type"
+msgstr "Type de contenu"
+
+msgid "catalog_index_review_state"
+msgstr "État de validation"
+
+msgid "catalog_index_SearchableText"
+msgstr "Texte intégral"
+
+msgid "catalog_index_Subject"
+msgstr "Sujet"
+
+msgid "catalog_index_Title"
+msgstr "Titre"
+
+msgid "Categories:"
+msgstr "Catégories :"
+
+msgid "Change"
+msgstr "Changer"
+
+msgid "Change image:"
+msgstr "Changer l'image :"
+
+msgid "Click here to modify roles..."
+msgstr "Cliquer ici pour modifier les rôles..."
+
+msgid "Click to get raw image"
+msgstr "Cliquer pour obtenir l'image brute"
+
+msgid "Click to see image full-size"
+msgstr "Cliquer pour voir l'image en taille réelle."
+
+msgid "Close"
+msgstr "Fermer"
+
+msgid "Collapse"
+msgstr "Condenser"
+
+msgid "Comment"
+msgstr "Commenter"
+
+msgid "Configure ${portal_calendar} Tool"
+msgstr "Configurer l'outil ${portal_calendar}"
+
+msgid "Container block"
+msgstr "Conteneur"
+
+msgid "Contributor"
+msgstr "Contributeur"
+
+msgid "Convention"
+msgstr "Congrès"
+
+msgid "Copy"
+msgstr "Copier"
+
+msgid "Create a mosaic document"
+msgstr "Créer un document mosaïque"
+
+msgid "Saved changes."
+msgstr "Modifications enregistrées."
+
+msgid "Import a photo zipped file"
+msgstr "Importer un fichier de photos zippées"
+
+msgid "send_email"
+msgstr "envoyer email"
+
+msgid "Set Mapping"
+msgstr "Associer"
+
+msgid "shared_submit"
+msgstr "soumettre"
+
+msgid "sort_by_index_created"
+msgstr "Création"
+
+msgid "sort_by_index_DateTimeOriginal"
+msgstr "Prise de vue"
+
+msgid "Criteria"
+msgstr "Critères"
+
+msgid "coordonateur"
+msgstr "Coordonnateur"
+
+msgid "Currently assigned local roles"
+msgstr "Rôles actuellement assignés"
+
+msgid "DateTimeOriginal"
+msgstr "Date de prise de vue"
+
+msgid "Day"
+msgstr "Jour"
+
+msgid "December"
+msgstr "Décembre"
+
+msgid "December_abbr"
+msgstr "Déc"
+
+msgid "Delete"
+msgstr "Supprimer"
+
+msgid "depublish"
+msgstr "dépublier"
+
+msgid "depublish_to_private"
+msgstr "rendre privé"
+
+msgid "depublish_to_shared"
+msgstr "partager"
+
+msgid "Direct_publish"
+msgstr "Publier"
+
+msgid "Directories"
+msgstr "Annuaires"
+
+msgid "Do you realy want to delete ?"
+msgstr "Êtes-vous sûr de vouloir supprimer ?"
+
+msgid "confirm_layer_delete"
+msgstr "Êtes-vous sûr de vouloir supprimer \\\"Calque "
+
+msgid "eleve"
+msgstr "Élève"
+
+msgid "Empty image: upload an image file in \"Edit\" tab."
+msgstr "Image vide : envoyer un fichier d'image dans l'onglet « Modifier »."
+
+msgid "ExifImageWidth"
+msgstr "Largeur"
+
+msgid "ExifImageHeight"
+msgstr "Hauteur"
+
+msgid "Expand"
+msgstr "Développer"
+
+msgid "Export as zip"
+msgstr "Exporter en zip"
+
+msgid "ExposureTime"
+msgstr "Temps de pose"
+
+msgid "February"
+msgstr "Février"
+
+msgid "February_abbr"
+msgstr "Févr"
+
+msgid "File"
+msgstr "Fichier"
+
+msgid "File Block"
+msgstr "Fichier"
+
+msgid "Filter (meta_type list) :"
+msgstr "Filtre (liste de meta_type) :"
+
+msgid "FNumber"
+msgstr "Ouverture"
+
+msgid "FocalLength"
+msgstr "Focale"
+
+msgid "Folder contents"
+msgstr "Contenu du dossier"
+
+msgid "Folders are created upon first login."
+msgstr "Les dossiers sont créés lors de la première connexion"
+
+msgid "Fri"
+msgstr "Ven"
+
+msgid "Friday"
+msgstr "Vendredi"
+
+msgid "Friendly Date Criterion"
+msgstr "Intervalle de dates"
+
+msgid "Global actions"
+msgstr "Actions globales"
+
+msgid "Group folder area"
+msgstr "Espace de travail du groupe"
+
+msgid "Group's roles settings"
+msgstr "Paramétrage des rôles d'un groupe"
+
+msgid "GroupManager"
+msgstr "Admin. annuaire"
+
+msgid "Height:"
+msgstr "Hauteur :"
+
+msgid "History"
+msgstr "Historique"
+
+msgid "Image block"
+msgstr "Image"
+
+msgid "Implicitly member of groups"
+msgstr "Implicitement membre des groupes"
+
+msgid "Import"
+msgstr "Importer"
+
+msgid "Insert file"
+msgstr "Insérer un fichier"
+
+msgid "Insert image"
+msgstr "Insérer une image"
+
+msgid "Insert inside text"
+msgstr "Insérer dans le texte"
+
+msgid "Insert new block:"
+msgstr "Ajouter un bloc :"
+
+msgid "Integer Criterion"
+msgstr "Nombre entier"
+
+msgid "ISOSpeedRatings"
+msgstr "Sensibilité ISO"
+
+msgid "January"
+msgstr "Janvier"
+
+msgid "January_abbr"
+msgstr "Janv"
+
+msgid "July"
+msgstr "Juillet"
+
+msgid "July_abbr"
+msgstr "Juil"
+
+msgid "June"
+msgstr "Juin"
+
+msgid "June_abbr"
+msgstr "Juin"
+
+msgid "immediately"
+msgstr "immédiatement"
+
+msgid "KB"
+msgstr "Ko"
+
+msgid "lang_iso"
+msgstr "fr"
+
+msgid "Layer"
+msgstr "Calque "
+
+msgid "Left boxes"
+msgstr "Boîtes de gauche"
+
+msgid "List Criterion"
+msgstr "Liste de valeurs"
+
+msgid "List Folder"
+msgstr "Lister le dossier"
+
+msgid "List parent folder"
+msgstr "Lister le dossier parent"
+
+msgid "Listen"
+msgstr "Écouter"
+
+msgid "Loading progress..."
+msgstr "Chargement en cours..."
+
+msgid "Local Roles"
+msgstr "Rôles locaux"
+
+msgid "MB"
+msgstr "Mo"
+
+msgid "make_private"
+msgstr "rendre privé"
+
+msgid "Manage Groups"
+msgstr "Gérer les groupes"
+
+msgid "Manage boxes"
+msgstr "Gérer les boîtes"
+
+msgid "Manage group's datas"
+msgstr "Données des groupes"
+
+msgid "Manage group's members"
+msgstr "Membres des groupes"
+
+msgid "Manage portal's groups"
+msgstr "Tous les groupes"
+
+msgid "Manage portal's members"
+msgstr "Membres du portail"
+
+msgid "Manager"
+msgstr "Administrateur"
+
+msgid "March"
+msgstr "Mars"
+
+msgid "March_abbr"
+msgstr "Mars"
+
+msgid "May"
+msgstr "Mai"
+
+msgid "May_abbr"
+msgstr "Mai"
+
+msgid "Meeting"
+msgstr "Réunion"
+
+msgid "Member"
+msgstr "Membre"
+
+msgid "Members"
+msgstr "Membres"
+
+msgid "Members folder id"
+msgstr "Id du dossier des membres"
+
+msgid "Member of groups"
+msgstr "Membre des groupes"
+
+msgid "Member properties"
+msgstr "Propriétés du membre"
+
+msgid "member_creation_area_explanations"
+msgstr ""
+"Cette fonction permet de définir si un dossier personnel sera créé lors de "
+"la première connexion d'un utilisateur."
+
+msgid "member_creation_area_title"
+msgstr "Création des espaces des membres"
+
+msgid "Membership role mappings"
+msgstr "Associations des rôles"
+
+msgid "membership_role_mapping_explanations"
+msgstr ""
+"Si vous utilisez un dossier d'utilisateur <em>(acl_users)</em> autre que "
+"celui d'origine, vous pouvez faire correspondre les rôles de l'acl_users "
+"avec ceux du portail CMF."
+
+msgid "Metadata"
+msgstr "Métadonnées"
+
+msgid "Sort Criterion"
+msgstr "Critère de tri"
+
+msgid "sort_by_index_modified"
+msgstr "Modification"
+
+msgid "Modify"
+msgstr "Modifier"
+
+msgid "Mon"
+msgstr "Lun"
+
+msgid "Monday"
+msgstr "Lundi"
+
+msgid "Move down"
+msgstr "Descendre"
+
+msgid "Move left"
+msgstr "Déplacer à gauche"
+
+msgid "Move right"
+msgstr "Déplacer à droite"
+
+msgid "Move up"
+msgstr "Monter"
+
+msgid "never"
+msgstr "jamais"
+
+msgid "New layer"
+msgstr "Nouveau calque"
+
+msgid "News Item"
+msgstr "Actualité"
+
+msgid "No document"
+msgstr "Pas de document"
+
+msgid "Node block"
+msgstr "Nœud"
+
+msgid "November"
+msgstr "Novembre"
+
+msgid "November_abbr"
+msgstr "Nov"
+
+msgid "Now"
+msgstr "Maintenant"
+
+msgid "Number of br:"
+msgstr "Nombre de sauts de ligne :"
+
+msgid "October"
+msgstr "Octobre"
+
+msgid "October_abbr"
+msgstr "Oct"
+
+msgid "Owner"
+msgstr "Propriétaire"
+
+msgid "person selected"
+msgstr "personne sélectionnée"
+
+msgid "persons selected"
+msgstr "personnes sélectionnées"
+
+msgid "Play"
+msgstr "Lecture"
+
+msgid "Portal manager registration"
+msgstr "Inscription par l'administrateur"
+
+msgid "Portal Role"
+msgstr "Rôle du portail"
+
+msgid "Portlets"
+msgstr "Boîtes"
+
+msgid "Preview..."
+msgstr "Prévisualiser..."
+
+msgid "private_submit"
+msgstr "soumettre"
+
+msgid "Properties of: ${memberFullName}"
+msgstr "Propriétés de : ${memberFullName}"
+
+msgid "publish"
+msgstr "publier"
+
+msgid "Reader"
+msgstr "Lecteur"
+
+msgid "Right boxes"
+msgstr "Boîtes de droite"
+
+msgid "Remove layer"
+msgstr "Supprimer le calque"
+
+msgid "Reply..."
+msgstr "Répondre..."
+
+msgid "Represent a simple field-match for a string value."
+msgstr "Recherche par chaîne de caractères"
+
+msgid "retract_to_private"
+msgstr "retirer"
+
+msgid "retract_to_shared"
+msgstr "retirer"
+
+msgid "Reviewed registration"
+msgstr "Inscription modérée"
+
+msgid "Reviewer"
+msgstr "Modérateur"
+
+msgid "Role(s)"
+msgstr "Rôle(s)"
+
+msgid "Role mapping mismatch : click Validate to solve this problem !"
+msgstr ""
+"Paramétrage des rôles non concordant, cliquer sur Valider pour résoudre le "
+"problème !"
+
+msgid "Roles to assign:"
+msgstr "Rôles à assigner"
+
+msgid "Root object expression:"
+msgstr "Objet racine (expression) :"
+
+msgid "Sat"
+msgstr "Sam"
+
+msgid "Saturday"
+msgstr "Samedi"
+
+msgid "Search"
+msgstr "Rechercher"
+
+msgid "Search by"
+msgstr "Rechercher par"
+
+msgid "Search Term"
+msgstr "Terme de recherche"
+
+msgid "Section block"
+msgstr "Titre de section"
+
+msgid "Select date indexes"
+msgstr "Sélectionner les index contenant des dates"
+
+msgid "Select default time range displayed in calendar week view"
+msgstr "Sélectionner la plage de temps affichée dans le calendrier semainier"
+
+msgid "Select member area folder type to construct:"
+msgstr "Sélectionner le type de dossier à construire :"
+
+msgid "Select Member(s) and a role(s) to assign:"
+msgstr "Sélectionner le(s) membre(s) et le(s) rôle(s) à assigner :"
+
+msgid "Select registration mode"
+msgstr "Sélectionner le mode d'inscription"
+
+msgid "September"
+msgstr "Septembre"
+
+msgid "September_abbr"
+msgstr "Sept"
+
+msgid "Set Roles"
+msgstr "Définir les rôles"
+
+msgid "share"
+msgstr "partager"
+
+msgid "Show layer"
+msgstr "Afficher le calque"
+
+msgid "Slide show"
+msgstr "Diaporama"
+
+msgid "Social Event"
+msgstr "Sortie"
+
+msgid "Sorry, no members matched your search."
+msgstr "Désolé, aucun membre ne correspond à votre recherche."
+
+msgid "Source file:"
+msgstr "Fichier source :"
+
+msgid "Spacer block"
+msgstr "Espaceur"
+
+msgid "(start and end time in hour)"
+msgstr "(début et fin en heure)"
+
+msgid "Status history"
+msgstr "Historique"
+
+msgid "Stop"
+msgstr "Arrêt"
+
+msgid "String Criterion"
+msgstr "Chaîne de caractères"
+
+msgid "Sun"
+msgstr "Dim"
+
+msgid "Sunday"
+msgstr "Dimanche"
+
+msgid "Text block"
+msgstr "Texte"
+
+msgid "These users currently have local roles assigned in this folder:"
+msgstr "Ces utilisateurs ont actuellement des rôles assignés sur ce dossier :"
+
+msgid "This folder has to be in the same container as the membership tool."
+msgstr ""
+"Ce dossier doit être placé au même niveau que l'outil <em>portal_membership</"
+"em>."
+
+msgid "Thu"
+msgstr "Jeu"
+
+msgid "Thursday"
+msgstr "Jeudi"
+
+msgid "Title :"
+msgstr "Titre :"
+
+msgid "Tree Box Block"
+msgstr "Boîte arborescente"
+
+msgid "Tree box settings"
+msgstr "Paramètres de la boîte arborescente"
+
+msgid "Tree viewed by: ${memberFullName}"
+msgstr "Arborescence vue par : ${memberFullName}"
+
+msgid "Tue"
+msgstr "Mar"
+
+msgid "Tuesday"
+msgstr "Mardi"
+
+msgid "Turn folder creation off"
+msgstr "Désactiver la création"
+
+msgid "Turn folder creation on"
+msgstr "Activer la création"
+
+msgid "Two images block"
+msgstr "Deux images"
+
+msgid "Upload"
+msgstr "Envoyer"
+
+msgid "User"
+msgstr "Utilisateur"
+
+msgid "User Folder-defined Role"
+msgstr "Rôle défini dans le dossier d'utilisateurs"
+
+msgid "UserManager"
+msgstr "Adm. annuaire"
+
+msgid "Untitled-"
+msgstr "Sans-titre-"
+
+msgid "Validate pending documents"
+msgstr "Voir les documents en attente"
+
+msgid "Visitor"
+msgstr "Visiteur"
+
+msgid "View"
+msgstr "Voir"
+
+msgid "View history"
+msgstr "Voir l'historique"
+
+msgid "View local roles"
+msgstr "Partages"
+
+msgid "Wed"
+msgstr "Mer"
+
+msgid "Wednesday"
+msgstr "Mercredi"
+
+msgid "Width:"
+msgstr "Largeur :"
+
+msgid "width / height:"
+msgstr "larg. / haut. :"
+
+msgid "Work"
+msgstr "Travail"
+
+msgid "Workflow chain"
+msgstr "Séquence de workflow"
+
+msgid "You are not allowed to delete: "
+msgstr "Vous n'êtes pas autorisé à supprimer : "
+
+msgid "collaborator"
+msgstr "Collaborateur"
+
+msgid "collapse"
+msgstr "condenser"
+
+msgid "expand"
+msgstr "développer"
+
+msgid "file type:"
+msgstr "Fichier de type :"
+
+msgid "Hide layer"
+msgstr "Masquer le calque"
+
+msgid "Home"
+msgstr "Accueil"
+
+msgid "name"
+msgstr "Nom"
+
+msgid "No Folders are created."
+msgstr "Aucun dossier n'est créé."
+
+msgid ""
+"Put a friendly interface on date range searches, like 'where effective date "
+"is less than 5 days old'."
+msgstr ""
+"Interface de recherche d'intervalle de date, permettant d'effectuer des "
+"recherches du type : « rechercher les éléments pour lesquels la date de "
+"mise en ligne n'excède pas 5 jours. »"
+
+msgid "Represent a criterion which is a list of values (for an 'OR' search)."
+msgstr "Recherche par liste de valeurs (pour une recherche booléenne)."
+
+msgid ""
+"Represent a simple field-match for an integer value, including catalog range "
+"searches."
+msgstr "Recherche par nombre entier, incluant les intervalles."
+
+msgid ""
+"Represent a mock criterion, to allow spelling the sort order and reversal "
+"items in a catalog query."
+msgstr ""
+"Critère de tri des résultats de la requête, par ordre croissant ou "
+"décroissant"
+
+msgid ""
+"WARNING: The current portal type is unknown. You must change the value to "
+"enable the member area creation."
+msgstr ""
+"ATTENTION : Le type (portal_type) actuel est inconnu. Vous devez changer sa "
+"valeur pour activer la création des dossiers."
+
+msgid "Approve"
+msgstr "Approuver"
+
+msgid "approved"
+msgstr "approuvé"
+
+msgid "Disapprove"
+msgstr "Désapprouver"
+
+msgid "pending"
+msgstr "en attente"
+
+msgid "private"
+msgstr "privé"
+
+msgid "items matching"
+msgstr "éléments correspondent à"
+
+msgid "item matching"
+msgstr "élément correspond à"
+
+msgid "mail_to"
+msgstr "À"
+
+msgid "mail_cc"
+msgstr "Cc"
+
+msgid "mail_bcc"
+msgstr "Cci"
+
+#~ msgid ""
+#~ "You have been registered as a member of \"%(portal_title)s\", which\n"
+#~ "allows you to personalize your view of the website and participate in\n"
+#~ "the community."
+#~ msgstr ""
+#~ "Vous avez été enregistré en tant que membre de « %(portal_title)s », ce "
+#~ "qui vous permet de participer à la rédaction des contenus ainsi qu'à la "
+#~ "communauté de ce site."
diff --git a/locales/plinn-manual.pot b/locales/plinn-manual.pot
new file mode 100644
index 0000000..d3f8d68
--- /dev/null
+++ b/locales/plinn-manual.pot
@@ -0,0 +1,875 @@
+# from plinn-manual
+
+msgid "${month}/${day}/${year}&nbsp;&nbsp;${hour}:${minute}:${second}"
+msgstr ""
+
+msgid "1 Day"
+msgstr ""
+
+msgid "2 Days"
+msgstr ""
+
+msgid "5 Days"
+msgstr ""
+
+msgid "1 Week"
+msgstr ""
+
+msgid "2 Weeks"
+msgstr ""
+
+msgid "1 Month"
+msgstr ""
+
+msgid "3 Months"
+msgstr ""
+
+msgid "6 Months"
+msgstr ""
+
+msgid "1 Year"
+msgstr ""
+
+msgid "2 years"
+msgstr ""
+
+msgid "Action Box Block"
+msgstr ""
+
+msgid "Action box settings"
+msgstr ""
+
+msgid "Activity block"
+msgstr ""
+
+msgid "Add a document..."
+msgstr ""
+
+msgid "Add an activity"
+msgstr ""
+
+msgid "Add node"
+msgstr ""
+
+msgid "Advanced search"
+msgstr ""
+
+msgid "Anonymous registration"
+msgstr ""
+
+msgid "Appointment"
+msgstr ""
+
+msgid "Append Roles"
+msgstr ""
+
+msgid "Append or remove groups"
+msgstr ""
+
+msgid "Append or remove members"
+msgstr ""
+
+msgid "April"
+msgstr ""
+
+msgid "April_abbr"
+msgstr ""
+
+msgid "Assign local roles: Search Members"
+msgstr ""
+
+msgid "Assign local roles: Search Results"
+msgstr ""
+
+msgid "August"
+msgstr ""
+
+msgid "August_abbr"
+msgstr ""
+
+msgid "B"
+msgstr ""
+
+msgid "Backlinks"
+msgstr ""
+
+msgid "Base folder of members' folders"
+msgstr ""
+
+msgid "Box title:"
+msgstr ""
+
+msgid "catalog_index_allowedRolesAndUsers"
+msgstr ""
+
+msgid "catalog_index_created"
+msgstr ""
+
+msgid "catalog_index_Creator"
+msgstr ""
+
+msgid "catalog_index_Date"
+msgstr ""
+
+msgid "catalog_index_DateTimeOriginal"
+msgstr ""
+
+msgid "catalog_index_Description"
+msgstr ""
+
+msgid "catalog_index_effective"
+msgstr ""
+
+msgid "catalog_index_expires"
+msgstr ""
+
+msgid "catalog_index_fTitle"
+msgstr ""
+
+msgid "catalog_index_getId"
+msgstr ""
+
+msgid "catalog_index_listCreators"
+msgstr ""
+
+msgid "catalog_index_modified"
+msgstr ""
+
+msgid "catalog_index_path"
+msgstr ""
+
+msgid "catalog_index_portal_type"
+msgstr ""
+
+msgid "catalog_index_review_state"
+msgstr ""
+
+msgid "catalog_index_SearchableText"
+msgstr ""
+
+msgid "catalog_index_Subject"
+msgstr ""
+
+msgid "catalog_index_Title"
+msgstr ""
+
+msgid "Categories:"
+msgstr ""
+
+msgid "Change"
+msgstr ""
+
+msgid "Change image:"
+msgstr ""
+
+msgid "Click here to modify roles..."
+msgstr ""
+
+msgid "Click to get raw image"
+msgstr ""
+
+msgid "Click to see image full-size"
+msgstr ""
+
+msgid "Close"
+msgstr ""
+
+msgid "Collapse"
+msgstr ""
+
+msgid "Comment"
+msgstr ""
+
+msgid "Configure ${portal_calendar} Tool"
+msgstr ""
+
+msgid "Container block"
+msgstr ""
+
+msgid "Contributor"
+msgstr ""
+
+msgid "Convention"
+msgstr ""
+
+msgid "Copy"
+msgstr ""
+
+msgid "Create a mosaic document"
+msgstr ""
+
+msgid "Saved changes."
+msgstr ""
+
+msgid "Import a photo zipped file"
+msgstr ""
+
+msgid "send_email"
+msgstr ""
+
+msgid "Set Mapping"
+msgstr ""
+
+msgid "shared_submit"
+msgstr ""
+
+msgid "sort_by_index_created"
+msgstr ""
+
+msgid "sort_by_index_DateTimeOriginal"
+msgstr ""
+
+msgid "Criteria"
+msgstr ""
+
+msgid "coordonateur"
+msgstr ""
+
+msgid "Currently assigned local roles"
+msgstr ""
+
+msgid "DateTimeOriginal"
+msgstr ""
+
+msgid "Day"
+msgstr ""
+
+msgid "December"
+msgstr ""
+
+msgid "December_abbr"
+msgstr ""
+
+msgid "Delete"
+msgstr ""
+
+msgid "depublish"
+msgstr ""
+
+msgid "depublish_to_private"
+msgstr ""
+
+msgid "depublish_to_shared"
+msgstr ""
+
+msgid "Direct_publish"
+msgstr ""
+
+msgid "Directories"
+msgstr ""
+
+msgid "Do you realy want to delete ?"
+msgstr ""
+
+msgid "confirm_layer_delete"
+msgstr ""
+
+msgid "eleve"
+msgstr ""
+
+msgid "Empty image: upload an image file in \"Edit\" tab."
+msgstr ""
+
+msgid "ExifImageWidth"
+msgstr ""
+
+msgid "ExifImageHeight"
+msgstr ""
+
+msgid "Expand"
+msgstr ""
+
+msgid "Export as zip"
+msgstr ""
+
+msgid "ExposureTime"
+msgstr ""
+
+msgid "February"
+msgstr ""
+
+msgid "February_abbr"
+msgstr ""
+
+msgid "File"
+msgstr ""
+
+msgid "File Block"
+msgstr ""
+
+msgid "Filter (meta_type list) :"
+msgstr ""
+
+msgid "FNumber"
+msgstr ""
+
+msgid "FocalLength"
+msgstr ""
+
+msgid "Folder contents"
+msgstr ""
+
+msgid "Folders are created upon first login."
+msgstr ""
+
+msgid "Fri"
+msgstr ""
+
+msgid "Friday"
+msgstr ""
+
+msgid "Friendly Date Criterion"
+msgstr ""
+
+msgid "Global actions"
+msgstr ""
+
+msgid "Group folder area"
+msgstr ""
+
+msgid "Group's roles settings"
+msgstr ""
+
+msgid "GroupManager"
+msgstr ""
+
+msgid "Height:"
+msgstr ""
+
+msgid "History"
+msgstr ""
+
+msgid "Image block"
+msgstr ""
+
+msgid "Implicitly member of groups"
+msgstr ""
+
+msgid "Import"
+msgstr ""
+
+msgid "Insert file"
+msgstr ""
+
+msgid "Insert image"
+msgstr ""
+
+msgid "Insert inside text"
+msgstr ""
+
+msgid "Insert new block:"
+msgstr ""
+
+msgid "Integer Criterion"
+msgstr ""
+
+msgid "ISOSpeedRatings"
+msgstr ""
+
+msgid "January"
+msgstr ""
+
+msgid "January_abbr"
+msgstr ""
+
+msgid "July"
+msgstr ""
+
+msgid "July_abbr"
+msgstr ""
+
+msgid "June"
+msgstr ""
+
+msgid "June_abbr"
+msgstr ""
+
+msgid "immediately"
+msgstr ""
+
+msgid "KB"
+msgstr ""
+
+msgid "lang_iso"
+msgstr ""
+
+msgid "Layer"
+msgstr ""
+
+msgid "Left boxes"
+msgstr ""
+
+msgid "List Criterion"
+msgstr ""
+
+msgid "List Folder"
+msgstr ""
+
+msgid "List parent folder"
+msgstr ""
+
+msgid "Listen"
+msgstr ""
+
+msgid "Loading progress..."
+msgstr ""
+
+msgid "Local Roles"
+msgstr ""
+
+msgid "MB"
+msgstr ""
+
+msgid "make_private"
+msgstr ""
+
+msgid "Manage Groups"
+msgstr ""
+
+msgid "Manage boxes"
+msgstr ""
+
+msgid "Manage group's datas"
+msgstr ""
+
+msgid "Manage group's members"
+msgstr ""
+
+msgid "Manage portal's groups"
+msgstr ""
+
+msgid "Manage portal's members"
+msgstr ""
+
+msgid "Manager"
+msgstr ""
+
+msgid "March"
+msgstr ""
+
+msgid "March_abbr"
+msgstr ""
+
+msgid "May"
+msgstr ""
+
+msgid "May_abbr"
+msgstr ""
+
+msgid "Meeting"
+msgstr ""
+
+msgid "Member"
+msgstr ""
+
+msgid "Members"
+msgstr ""
+
+msgid "Members folder id"
+msgstr ""
+
+msgid "Member of groups"
+msgstr ""
+
+msgid "Member properties"
+msgstr ""
+
+msgid "member_creation_area_explanations"
+msgstr ""
+
+msgid "member_creation_area_title"
+msgstr ""
+
+msgid "Membership role mappings"
+msgstr ""
+
+msgid "membership_role_mapping_explanations"
+msgstr ""
+
+msgid "Metadata"
+msgstr ""
+
+msgid "Sort Criterion"
+msgstr ""
+
+msgid "sort_by_index_modified"
+msgstr ""
+
+msgid "Modify"
+msgstr ""
+
+msgid "Mon"
+msgstr ""
+
+msgid "Monday"
+msgstr ""
+
+msgid "Move down"
+msgstr ""
+
+msgid "Move left"
+msgstr ""
+
+msgid "Move right"
+msgstr ""
+
+msgid "Move up"
+msgstr ""
+
+msgid "never"
+msgstr ""
+
+msgid "New layer"
+msgstr ""
+
+msgid "News Item"
+msgstr ""
+
+msgid "No document"
+msgstr ""
+
+msgid "Node block"
+msgstr ""
+
+msgid "November"
+msgstr ""
+
+msgid "November_abbr"
+msgstr ""
+
+msgid "Now"
+msgstr ""
+
+msgid "Number of br:"
+msgstr ""
+
+msgid "October"
+msgstr ""
+
+msgid "October_abbr"
+msgstr ""
+
+msgid "Owner"
+msgstr ""
+
+msgid "person selected"
+msgstr ""
+
+msgid "persons selected"
+msgstr ""
+
+msgid "Play"
+msgstr ""
+
+msgid "Portal manager registration"
+msgstr ""
+
+msgid "Portal Role"
+msgstr ""
+
+msgid "Portlets"
+msgstr ""
+
+msgid "Preview..."
+msgstr ""
+
+msgid "private_submit"
+msgstr ""
+
+msgid "Properties of: ${memberFullName}"
+msgstr ""
+
+msgid "publish"
+msgstr ""
+
+msgid "Reader"
+msgstr ""
+
+msgid "Right boxes"
+msgstr ""
+
+msgid "Remove layer"
+msgstr ""
+
+msgid "Reply..."
+msgstr ""
+
+msgid "Represent a simple field-match for a string value."
+msgstr ""
+
+msgid "retract_to_private"
+msgstr ""
+
+msgid "retract_to_shared"
+msgstr ""
+
+msgid "Reviewed registration"
+msgstr ""
+
+msgid "Reviewer"
+msgstr ""
+
+msgid "Role(s)"
+msgstr ""
+
+msgid "Role mapping mismatch : click Validate to solve this problem !"
+msgstr ""
+
+msgid "Roles to assign:"
+msgstr ""
+
+msgid "Root object expression:"
+msgstr ""
+
+msgid "Sat"
+msgstr ""
+
+msgid "Saturday"
+msgstr ""
+
+msgid "Search"
+msgstr ""
+
+msgid "Search by"
+msgstr ""
+
+msgid "Search Term"
+msgstr ""
+
+msgid "Section block"
+msgstr ""
+
+msgid "Select date indexes"
+msgstr ""
+
+msgid "Select default time range displayed in calendar week view"
+msgstr ""
+
+msgid "Select member area folder type to construct:"
+msgstr ""
+
+msgid "Select Member(s) and a role(s) to assign:"
+msgstr ""
+
+msgid "Select registration mode"
+msgstr ""
+
+msgid "September"
+msgstr ""
+
+msgid "September_abbr"
+msgstr ""
+
+msgid "Set Roles"
+msgstr ""
+
+msgid "share"
+msgstr ""
+
+msgid "Show layer"
+msgstr ""
+
+msgid "Slide show"
+msgstr ""
+
+msgid "Social Event"
+msgstr ""
+
+msgid "Sorry, no members matched your search."
+msgstr ""
+
+msgid "Source file:"
+msgstr ""
+
+msgid "Spacer block"
+msgstr ""
+
+msgid "(start and end time in hour)"
+msgstr ""
+
+msgid "Status history"
+msgstr ""
+
+msgid "Stop"
+msgstr ""
+
+msgid "String Criterion"
+msgstr ""
+
+msgid "Sun"
+msgstr ""
+
+msgid "Sunday"
+msgstr ""
+
+msgid "Text block"
+msgstr ""
+
+msgid "These users currently have local roles assigned in this folder:"
+msgstr ""
+
+
+msgid "This folder has to be in the same container as the membership tool."
+msgstr ""
+
+msgid "Thu"
+msgstr ""
+
+msgid "Thursday"
+msgstr ""
+
+msgid "Title :"
+msgstr ""
+
+msgid "Tree Box Block"
+msgstr ""
+
+msgid "Tree box settings"
+msgstr ""
+
+msgid "Tree viewed by: ${memberFullName}"
+msgstr ""
+
+msgid "Tue"
+msgstr ""
+
+msgid "Tuesday"
+msgstr ""
+
+msgid "Turn folder creation off"
+msgstr ""
+
+msgid "Turn folder creation on"
+msgstr ""
+
+msgid "Two images block"
+msgstr ""
+
+msgid "Upload"
+msgstr ""
+
+msgid "User"
+msgstr ""
+
+msgid "User Folder-defined Role"
+msgstr ""
+
+msgid "UserManager"
+msgstr ""
+
+msgid "Untitled-"
+msgstr ""
+
+msgid "Validate pending documents"
+msgstr ""
+
+msgid "Visitor"
+msgstr ""
+
+msgid "View"
+msgstr ""
+
+msgid "View history"
+msgstr ""
+
+msgid "View local roles"
+msgstr ""
+
+msgid "Wed"
+msgstr ""
+
+msgid "Wednesday"
+msgstr ""
+
+msgid "Width:"
+msgstr ""
+
+msgid "width / height:"
+msgstr ""
+
+msgid "Work"
+msgstr ""
+
+msgid "Workflow chain"
+msgstr ""
+
+msgid "You are not allowed to delete: "
+msgstr ""
+
+msgid "collaborator"
+msgstr ""
+
+msgid "collapse"
+msgstr ""
+
+msgid "expand"
+msgstr ""
+
+msgid "file type:"
+msgstr ""
+
+msgid "Hide layer"
+msgstr ""
+
+msgid "Home"
+msgstr ""
+
+msgid "name"
+msgstr ""
+
+msgid "No Folders are created."
+msgstr ""
+
+msgid ""
+"Put a friendly interface on date range searches, like 'where effective "
+"date is less than 5 days old'."
+msgstr ""
+
+msgid ""
+"Represent a criterion which is a list of values (for an 'OR' search)."
+msgstr ""
+
+msgid ""
+"Represent a simple field-match for an integer value, including catalog "
+"range searches."
+msgstr ""
+
+msgid ""
+"Represent a mock criterion, to allow spelling the sort order and reversal "
+"items in a catalog query."
+msgstr ""
+
+msgid ""
+"WARNING: The current portal type is unknown. You must change the value to "
+"enable the member area creation."
+msgstr ""
+
+msgid "Approve"
+msgstr ""
+
+msgid "approved"
+msgstr ""
+
+msgid "Disapprove"
+msgstr ""
+
+msgid "pending"
+msgstr ""
+
+msgid "private"
+msgstr ""
+
+msgid "items matching"
+msgstr ""
+
+msgid "item matching"
+msgstr ""
+
+msgid "mail_to"
+msgstr ""
+
+msgid "mail_cc"
+msgstr ""
+
+msgid "mail_bcc"
+msgstr ""
diff --git a/locales/plinn.pot b/locales/plinn.pot
new file mode 100644
index 0000000..75ab20f
--- /dev/null
+++ b/locales/plinn.pot
@@ -0,0 +1,2086 @@
+############################################################
+# Copyright © 2005-2009  Benoît Pin <benoit.pin@ensmp.fr>  #
+# Plinn - http://plinn.org                                 #
+#                                                          #
+# This program is free software; you can redistribute it   #
+# and/or modify it under the terms of the Creative Commons #
+# "Attribution-Noncommercial 2.0 Generic"                  #
+# http://creativecommons.org/licenses/by-nc/2.0/           #
+############################################################
+msgid ""
+msgstr ""
+"Project-Id-Version: Plinn 2\n"
+"POT-Creation-Date: $Date: Mon Jun 29 11:38:05 2009 $\n"
+"Language-Team: Benoît Pin <benoit.pin@ensmp.fr>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: EmailNotification.py:38
+msgid "Object deleted"
+msgstr ""
+
+#: MembershipTool.py:401
+#. Default: ""
+msgid "%s's Home"
+msgstr ""
+
+#: MembershipTool.py:402
+#. Default: ""
+msgid "%s's front page"
+msgstr ""
+
+#: profiles/default/actions.xml:107
+msgid "List"
+msgstr ""
+
+#: profiles/default/actions.xml:122
+msgid "Manage Boxes"
+msgstr ""
+
+#: profiles/default/actions.xml:134
+#: skins/generic/send_email_form.pt:25
+msgid "Send an email"
+msgstr ""
+
+#: profiles/default/actions.xml:156
+msgid "Configure Portal"
+msgstr ""
+
+#: profiles/default/actions.xml:167
+msgid "Directory"
+msgstr ""
+
+#: profiles/default/actions.xml:181
+msgid "Add comment..."
+msgstr ""
+
+#: profiles/default/actions.xml:209
+msgid "Calendar View"
+msgstr ""
+
+#: profiles/default/workflows/default_workflow/scripts/sendNotificationEmail.py:52
+#: profiles/default/workflows/folder_workflow/scripts/sendNotificationEmail.py:52
+#: profiles/default/workflows/portfolio_workflow/scripts/sendNotificationEmail.py:52
+msgid "Document state change notificaction"
+msgstr ""
+
+#: profiles/default/workflows/member_workflow/scripts/sendNotificationEmail.py:35
+msgid ""
+"\n"
+"You have been registered as a member of \"%(portal_title)s\", which\n"
+"allows you to personalize your view of the website and participate in\n"
+"the community.\n"
+msgstr ""
+
+#: profiles/default/workflows/member_workflow/scripts/sendNotificationEmail.py:43
+msgid ""
+"You will receive an other mail with your randomly-generated\n"
+"password. Once you have logged in with this password, you\n"
+"may change it to anything you like."
+msgstr ""
+
+#: profiles/default/workflows/member_workflow/scripts/sendNotificationEmail.py:55
+msgid "your registration has been accepted"
+msgstr ""
+
+#: skins/content/cal_calendar_view.pt:30
+#: skins/content/cal_calendar_view.pt:30
+msgid "Add a new event..."
+msgstr ""
+
+#: skins/content/cal_calendar_view.pt:37
+#: skins/content/cal_calendar_view.pt:40
+msgid "Remove event..."
+msgstr ""
+
+#: skins/content/cal_calendar_view.pt:50
+msgid "The next click over an event will remove it!"
+msgstr ""
+
+#: skins/content/cal_calendar_view.pt:51
+msgid "Cancel delete mode"
+msgstr ""
+
+#: skins/content/changes_history_template.pt:24
+msgid "\302\253 later revisions"
+msgstr ""
+
+#: skins/content/changes_history_template.pt:28
+msgid "earlier revisions \302\273"
+msgstr ""
+
+#: skins/content/changes_history_template.pt:36
+#: skins/content/list_pending_contents.pt:42
+#: skins/generic/wf_macros.pt:16
+msgid "Date"
+msgstr ""
+
+#: skins/content/changes_history_template.pt:37
+msgid "user"
+msgstr ""
+
+#: skins/content/changes_history_template.pt:70
+msgid "Compare"
+msgstr ""
+
+#: skins/content/changes_history_template.pt:72
+msgid "Please select one revision per column to compare."
+msgstr ""
+
+#: skins/content/content_info.pt:16
+#: skins/content/file_info.pt:12
+#: skins/content/list_pending_contents.pt:31
+#: skins/custom_generic/talkback_tree.pt:68
+#: skins/generic/gruf_macros.pt:51
+#: skins/generic/gruf_macros.pt:307
+#: skins/generic/header_widgets.pt:18
+#: skins/generic/header_widgets.pt:75
+#: skins/generic/search_results_template.pt:37
+msgid "Title"
+msgstr ""
+
+#: skins/content/content_info.pt:20
+#: skins/content/file_info.pt:20
+msgid "Created"
+msgstr ""
+
+#: skins/content/content_info.pt:24
+#: skins/content/file_info.pt:24
+msgid "Modified"
+msgstr ""
+
+#: skins/content/content_info.pt:9
+#: skins/content/file_info.pt:5
+msgid "Preview:"
+msgstr ""
+
+#: skins/content/dateCriterionResolvedDescription.py:17
+msgid "search from the beginning of the world until %s"
+msgstr ""
+
+#: skins/content/dateCriterionResolvedDescription.py:19
+msgid "search from %s and the end of the world"
+msgstr ""
+
+#: skins/content/dateCriterionResolvedDescription.py:21
+msgid "search between %s and %s"
+msgstr ""
+
+#: skins/content/file_info.pt:16
+msgid "Type"
+msgstr ""
+
+#: skins/content/folder_notifications_template.pt:23
+#: skins/content/topic_edit_template.pt:26
+#: skins/custom_content/event_edit_template.pt:135
+#: skins/generic/search_results_template.pt:86
+msgid "Save"
+msgstr ""
+
+#: skins/content/list_pending_contents.pt:23
+msgid "Pending documents"
+msgstr ""
+
+#: skins/content/list_pending_contents.pt:37
+msgid "Submit by:"
+msgstr ""
+
+#: skins/content/no_preview.pt:11
+msgid "No preview available for this file"
+msgstr ""
+
+#: skins/content/topic_edit_template.pt:16
+msgid "Reuse criteria from parent:"
+msgstr ""
+
+#: skins/content/topic_edit_template.pt:17
+msgid "yes"
+msgstr ""
+
+#: skins/content/topic_edit_template.pt:18
+msgid "no"
+msgstr ""
+
+#: skins/content/topic_edit_template.pt:27
+#: skins/generic/gruf_macros.pt:211
+#: skins/generic/gruf_macros.pt:235
+msgid "Remove selected"
+msgstr ""
+
+#: skins/content/topic_edit_template.pt:30
+msgid "New criterion:"
+msgstr ""
+
+#: skins/content/topic_edit_template.pt:33
+msgid "Name:"
+msgstr ""
+
+#: skins/content/topic_edit_template.pt:41
+msgid "Type:"
+msgstr ""
+
+#: skins/content/topic_edit_template.pt:51
+#: skins/generic/gruf_macros.pt:288
+#: skins/generic/gruf_macros.pt:327
+msgid "Add"
+msgstr ""
+
+#: skins/control/restore_revision.py:9
+msgid "%(type)s restored."
+msgstr ""
+
+#: skins/control/save_search_as_topic.py:17
+msgid "Topic added."
+msgstr ""
+
+#: skins/custom_content/content_status_history.pt:12
+#: skins/custom_content/transition_form.pt:25
+msgid "Current state:"
+msgstr ""
+
+#: skins/custom_content/content_status_history.pt:9
+#: skins/custom_content/transition_form.pt:46
+msgid "Reviewing history"
+msgstr ""
+
+#: skins/custom_content/discussionitem_view.pt:24
+msgid "Above in thread:"
+msgstr ""
+
+#: skins/custom_content/event_edit_template.pt:115
+#: skins/custom_content/event_view.pt:57
+#: skins/generic/gruf_macros.pt:57
+#: skins/generic/gruf_macros.pt:313
+#: skins/generic/header_widgets.pt:24
+#: skins/generic/header_widgets.pt:85
+msgid "Description"
+msgstr ""
+
+#: skins/custom_content/event_edit_template.pt:121
+#: skins/custom_content/event_view.pt:33
+msgid "Event URL"
+msgstr ""
+
+#: skins/custom_content/event_edit_template.pt:20
+#: skins/custom_content/event_view.pt:11
+msgid "Event Name"
+msgstr ""
+
+#: skins/custom_content/event_edit_template.pt:24
+#: skins/custom_content/event_view.pt:27
+msgid "Event type"
+msgstr ""
+
+#: skins/custom_content/event_edit_template.pt:27
+#: skins/custom_content/event_view.pt:17
+msgid "Location"
+msgstr ""
+
+#: skins/custom_content/event_edit_template.pt:38
+#: skins/custom_content/event_view.pt:13
+msgid "Contact Name"
+msgstr ""
+
+#: skins/custom_content/event_edit_template.pt:44
+#: skins/custom_content/event_view.pt:19
+msgid "Contact Email"
+msgstr ""
+
+#: skins/custom_content/event_edit_template.pt:50
+#: skins/custom_content/event_view.pt:29
+msgid "Contact Phone"
+msgstr ""
+
+#: skins/custom_content/event_edit_template.pt:67
+msgid "Beginning"
+msgstr ""
+
+#: skins/custom_content/event_edit_template.pt:78
+#: skins/custom_content/event_edit_template.pt:103
+#: skins/generic/widgets.pt:94
+msgid "${month}&nbsp;/&nbsp;${day}&nbsp;/&nbsp;${year}&nbsp;&nbsp;${hour}&nbsp;:&nbsp;${minute}"
+msgstr ""
+
+#: skins/custom_content/event_edit_template.pt:92
+msgid "End"
+msgstr ""
+
+#: skins/custom_content/event_view.pt:44
+msgid "Start Date"
+msgstr ""
+
+#: skins/custom_content/event_view.pt:49
+msgid "Stop Date"
+msgstr ""
+
+#: skins/custom_content/friendlydatec_editform.pt:14
+msgid "At the least:"
+msgstr ""
+
+#: skins/custom_content/friendlydatec_editform.pt:17
+msgid "At the most:"
+msgstr ""
+
+#: skins/custom_content/friendlydatec_editform.pt:20
+msgid "Within the day:"
+msgstr ""
+
+#: skins/custom_content/friendlydatec_editform.pt:37
+#. Default: "old"
+msgid "daterange_old"
+msgstr ""
+
+#: skins/custom_content/friendlydatec_editform.pt:40
+#. Default: "ahead"
+msgid "daterange_ahead"
+msgstr ""
+
+#: skins/custom_content/listc_edit.pt:16
+msgid "Operator:"
+msgstr ""
+
+#: skins/custom_content/listc_edit.pt:18
+msgid "or"
+msgstr ""
+
+#: skins/custom_content/listc_edit.pt:21
+#: skins/custom_generic/talkback_tree.pt:32
+msgid "and"
+msgstr ""
+
+#: skins/custom_content/sic_edit.pt:15
+msgid "Minimum"
+msgstr ""
+
+#: skins/custom_content/sic_edit.pt:18
+msgid "Maximum"
+msgstr ""
+
+#: skins/custom_content/sic_edit.pt:21
+msgid "Min/Max"
+msgstr ""
+
+#: skins/custom_content/sort_edit.pt:16
+msgid "Regular sort"
+msgstr ""
+
+#: skins/custom_content/sort_edit.pt:20
+msgid "Reversed sort"
+msgstr ""
+
+#: skins/custom_content/topic_view.pt:42
+msgid "No result"
+msgstr ""
+
+#: skins/custom_content/topic_view.pt:46
+msgid "Subtopics"
+msgstr ""
+
+#: skins/custom_content/topic_view.pt:49
+msgid "Topic"
+msgstr ""
+
+#: skins/custom_content/transition_form.pt:15
+msgid "Transition of ${objectid}."
+msgstr ""
+
+#: skins/custom_content/transition_form.pt:18
+msgid "Transition description."
+msgstr ""
+
+#: skins/custom_content/transition_form.pt:30
+#: skins/generic/wf_macros.pt:19
+msgid "Comments"
+msgstr ""
+
+#: skins/custom_content/transition_form.pt:40
+msgid "Transition"
+msgstr ""
+
+#: skins/custom_control/addtoFavorites.py:15
+msgid "Favorites"
+msgstr ""
+
+#: skins/custom_control/folder_bottom_control.py:17
+msgid "%d item moved to bottom.%d items moved to bottom."
+msgstr ""
+
+#: skins/custom_control/folder_down_control.py:18
+msgid "%d item moved down.%d items moved down."
+msgstr ""
+
+#: skins/custom_control/folder_top_control.py:17
+msgid "%d item moved to top.%d items moved to top."
+msgstr ""
+
+#: skins/custom_control/folder_up_control.py:17
+msgid "%d item moved up.%d items moved up."
+msgstr ""
+
+#: skins/custom_generic/folder_contents_template.pt:26
+msgid "Up"
+msgstr ""
+
+#: skins/custom_generic/folder_contents_template.pt:29
+msgid "Down"
+msgstr ""
+
+#: skins/custom_generic/folder_contents_template.pt:31
+#. Default: "by"
+msgid "move_by"
+msgstr ""
+
+#: skins/custom_generic/folder_contents_template.pt:39
+msgid "Top"
+msgstr ""
+
+#: skins/custom_generic/folder_contents_template.pt:41
+msgid "Bottom"
+msgstr ""
+
+#: skins/custom_generic/logged_in.py:28
+msgid "Login failure"
+msgstr ""
+
+#: skins/custom_generic/logged_in.py:50
+msgid "Login success"
+msgstr ""
+
+#: skins/custom_generic/mail_password_template.py:30
+msgid "${portal_title}: Membership reminder"
+msgstr ""
+
+#: skins/custom_generic/mail_password_template.py:35
+#: skins/custom_generic/registered_notify_template.py:46
+msgid "Your member id and password are: Member ID: ${member_id} Password: ${password}"
+msgstr ""
+
+#: skins/custom_generic/mail_password_template.py:37
+#: skins/custom_generic/registered_notify_template.py:48
+msgid "You can use this URL to log in:"
+msgstr ""
+
+#: skins/custom_generic/mail_password_template.py:45
+#: skins/custom_generic/registered_notify_template.py:56
+msgid "Be aware that this URL might wrap over two lines. If your browser shows an error message when you try to access the URL please make sure that you put in the complete string."
+msgstr ""
+
+#: skins/custom_generic/mail_password_template.py:48
+#: skins/generic/load_revision.py:31
+#: skins/generic/load_revision.py:38
+msgid "%Y/%m/%d at %I:%M:%S %p"
+msgstr ""
+
+#: skins/custom_generic/mail_password_template.py:50
+msgid "Request made by IP ${ip} at ${time}"
+msgstr ""
+
+#: skins/custom_generic/main_template_standard.pt:110
+#: skins/custom_generic/talkback_tree.pt:63
+#: skins/generic/main_template_ajax.pt:12
+msgid "Information"
+msgstr ""
+
+#: skins/custom_generic/main_template_standard.pt:111
+#: skins/custom_generic/talkback_tree.pt:64
+#: skins/generic/main_template_ajax.pt:13
+#: skins/generic/widgets.pt:17
+msgid "${DYNAMIC_CONTENT}"
+msgstr ""
+
+#: skins/custom_generic/main_template_standard.pt:95
+msgid "Skip to content"
+msgstr ""
+
+#: skins/custom_generic/reconfig_template.pt:124
+msgid "Default ajax options"
+msgstr ""
+
+#: skins/custom_generic/reconfig_template.pt:128
+msgid "Enable handling of all clicks over links"
+msgstr ""
+
+#: skins/custom_generic/reconfig_template.pt:133
+msgid "Enable handling of all forms submissions"
+msgstr ""
+
+#: skins/custom_generic/reconfig_template.pt:79
+msgid "Copyright notice"
+msgstr ""
+
+#: skins/custom_generic/reconfig_template.pt:83
+msgid "Copyright notice displayed on the portal footer."
+msgstr ""
+
+#: skins/custom_generic/registered_notify_template.py:30
+msgid "${portal_title}: Your Membership Information"
+msgstr ""
+
+#: skins/custom_generic/registered_notify_template.py:35
+msgid "You have been registered as a member of \"${portal_title}\", which allows you to personalize your view of the website and participate in the community."
+msgstr ""
+
+#: skins/custom_generic/registered_notify_template.py:39
+msgid "This describes the purpose of the website:"
+msgstr ""
+
+#: skins/custom_generic/registered_notify_template.py:44
+msgid "Visit us at ${portal_url}"
+msgstr ""
+
+#: skins/custom_generic/talkback_tree.pt:27
+msgid "by"
+msgstr ""
+
+#: skins/custom_generic/talkback_tree.pt:36
+msgid "unknown"
+msgstr ""
+
+#: skins/custom_generic/talkback_tree.pt:37
+#: skins/generic/recent_news.pt:43
+#. Default: "at"
+msgid "at_(date)"
+msgstr ""
+
+#: skins/custom_generic/talkback_tree.pt:74
+msgid "Body"
+msgstr ""
+
+#: skins/custom_generic/talkback_tree.pt:82
+#: skins/generic/gruf_macros.pt:77
+#: skins/generic/gruf_macros.pt:410
+#: skins/generic/header_widgets.pt:32
+#: skins/generic/header_widgets.pt:173
+#: skins/generic/send_email_form.pt:79
+msgid "Validate"
+msgstr ""
+
+#: skins/custom_generic/talkback_tree.pt:85
+msgid "Cancel"
+msgstr ""
+
+#: skins/custom_generic/viewThreadsAtBottom.pt:10
+msgid "Comments:"
+msgstr ""
+
+#: skins/generic/batch_macros.pt:26
+#. Default: "Previous${number}"
+msgid "batch_previous_x_items"
+msgstr ""
+
+#: skins/generic/batch_macros.pt:32
+#. Default: "Next${number}items"
+msgid "batch_next_x_items"
+msgstr ""
+
+#: skins/generic/calendar_macros.pt:159
+#: skins/generic/calendar_macros.pt:161
+msgid "Previous"
+msgstr ""
+
+#: skins/generic/calendar_macros.pt:164
+msgid "Week"
+msgstr ""
+
+#: skins/generic/calendar_macros.pt:166
+msgid "Month"
+msgstr ""
+
+#: skins/generic/calendar_macros.pt:171
+#: skins/generic/calendar_macros.pt:173
+msgid "Next"
+msgstr ""
+
+#: skins/generic/calendar_macros.pt:78
+#: skins/generic/calendar_macros.pt:81
+#: skins/generic/calendar_macros.pt:128
+#: skins/generic/calendar_macros.pt:130
+msgid "Click to see hidden items"
+msgstr ""
+
+#: skins/generic/calendar_macros.pt:88
+msgid "${dayName}&nbsp;${monthName}&nbsp;${dayNumber}"
+msgstr ""
+
+#: skins/generic/content_depublish_form.pt:10
+msgid "depublish_transition_explanations"
+msgstr ""
+
+#: skins/generic/content_depublish_form.pt:15
+msgid "Select the destination state"
+msgstr ""
+
+#: skins/generic/content_depublish_form.pt:18
+msgid "Private"
+msgstr ""
+
+#: skins/generic/content_depublish_form.pt:22
+msgid "Shared"
+msgstr ""
+
+#: skins/generic/content_depublish_form.pt:26
+msgid "Depublish"
+msgstr ""
+
+#: skins/generic/content_depublish_form.pt:8
+msgid "Depublish: \"${docTitle}\""
+msgstr ""
+
+#: skins/generic/content_make_private_form.pt:10
+msgid "Make private: \"${docTitle}\""
+msgstr ""
+
+#: skins/generic/content_make_private_form.pt:11
+#. Default: "share_transition_explanations"
+msgid "make_private_transition_explanations"
+msgstr ""
+
+#: skins/generic/content_make_private_form.pt:16
+msgid "Make private"
+msgstr ""
+
+#: skins/generic/content_publish_form.pt:10
+msgid "publish_transition_explanations"
+msgstr ""
+
+#: skins/generic/content_publish_form.pt:17
+#: skins/generic/content_reject_form.pt:16
+msgid "Notify by e-mail"
+msgstr ""
+
+#: skins/generic/content_publish_form.pt:26
+msgid "Publish"
+msgstr ""
+
+#: skins/generic/content_publish_form.pt:8
+msgid "Publish: \"${docTitle}\""
+msgstr ""
+
+#: skins/generic/content_reject_form.pt:25
+#: skins/generic/pending_members.pt:30
+msgid "Reject"
+msgstr ""
+
+#: skins/generic/content_reject_form.pt:8
+msgid "Reject: \"${objectid}\""
+msgstr ""
+
+#: skins/generic/content_reject_form.pt:9
+msgid "reject_transition_explanations"
+msgstr ""
+
+#: skins/generic/content_retract_form.pt:15
+msgid "Retract"
+msgstr ""
+
+#: skins/generic/content_retract_form.pt:8
+msgid "Retract: \"${objectid}\""
+msgstr ""
+
+#: skins/generic/content_retract_form.pt:9
+msgid "retract_transition_explanations"
+msgstr ""
+
+#: skins/generic/content_share_form.pt:10
+msgid "Share: \"${docTitle}\""
+msgstr ""
+
+#: skins/generic/content_share_form.pt:11
+msgid "share_transition_explanations"
+msgstr ""
+
+#: skins/generic/content_share_form.pt:16
+msgid "Share"
+msgstr ""
+
+#: skins/generic/content_submit_form.pt:15
+msgid "Submit"
+msgstr ""
+
+#: skins/generic/content_submit_form.pt:8
+msgid "Submit: \"${objectid}\" for Review."
+msgstr ""
+
+#: skins/generic/content_submit_form.pt:9
+msgid "submit_transition_explanations"
+msgstr ""
+
+#: skins/generic/default_home_page_content.pt:2
+msgid "Welcome to Plinn!"
+msgstr ""
+
+#: skins/generic/default_home_page_content.pt:3
+msgid "This is the default home page."
+msgstr ""
+
+#: skins/generic/default_home_page_content.pt:4
+#: skins/generic/default_member_content.pt:4
+msgid "To change the content just select \"Edit\" in the Tab bar on the top."
+msgstr ""
+
+#: skins/generic/default_member_content.pt:2
+msgid "Default page for ${memberFullName}"
+msgstr ""
+
+#: skins/generic/default_member_content.pt:3
+msgid "This is the default document created for you when you have been registered in this portal."
+msgstr ""
+
+#: skins/generic/groups_members.pt:35
+msgid "Members of \"${groupId}\""
+msgstr ""
+
+#: skins/generic/groups_members.pt:47
+msgid "Groups of \"${groupId}\""
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:105
+msgid "Remove"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:112
+msgid "Append"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:129
+#: skins/generic/gruf_macros.pt:164
+msgid "Outside group"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:131
+#: skins/generic/gruf_macros.pt:166
+msgid "Inside group"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:148
+#: skins/generic/gruf_macros.pt:183
+msgid "None"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:197
+msgid "All members"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:210
+msgid "Edit"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:224
+msgid "All groups"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:247
+msgid "Add new member"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:25
+msgid "Group Tree"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:250
+#: skins/generic/gruf_macros.pt:365
+msgid "Login"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:256
+#: skins/generic/gruf_macros.pt:378
+#: skins/generic/last_member_logs.pt:23
+#: skins/generic/pending_members.pt:13
+msgid "Name"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:262
+#: skins/generic/gruf_macros.pt:384
+msgid "Given Name"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:268
+#: skins/generic/gruf_macros.pt:390
+msgid "Password"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:274
+#: skins/generic/gruf_macros.pt:396
+msgid "Confirm"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:280
+#: skins/generic/gruf_macros.pt:402
+msgid "Email address"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:298
+msgid "Add new group"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:301
+msgid "Id"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:371
+msgid "Groups"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:373
+msgid "explicitly:"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:374
+msgid "implicitly:"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:415
+msgid "Tree view by this member"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:416
+msgid "Click here to see the tree viewed by this member &gt;&gt;"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:440
+#: skins/generic/gruf_macros.pt:440
+msgid "collapse all"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:45
+#: skins/generic/header_widgets.pt:70
+msgid "Identifier"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:471
+msgid "&lt;&lt; Back to member properties"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:63
+#: skins/generic/gruf_macros.pt:319
+msgid "Shared folder"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:66
+msgid "Open shared folder..."
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:69
+#: skins/generic/gruf_macros.pt:321
+msgid "Create"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:90
+msgid "Implicit roles"
+msgstr ""
+
+#: skins/generic/gruf_macros.pt:98
+msgid "Explicit roles"
+msgstr ""
+
+#: skins/generic/header_widgets.pt:108
+msgid "Contributors"
+msgstr ""
+
+#: skins/generic/header_widgets.pt:115
+msgid "Creation Date"
+msgstr ""
+
+#: skins/generic/header_widgets.pt:118
+msgid "Last Modified Date"
+msgstr ""
+
+#: skins/generic/header_widgets.pt:130
+msgid "Effective Date"
+msgstr ""
+
+#: skins/generic/header_widgets.pt:141
+msgid "Expiration Date"
+msgstr ""
+
+#: skins/generic/header_widgets.pt:147
+#: skins/generic/wysiwyg_support.pt:108
+msgid "Format"
+msgstr ""
+
+#: skins/generic/header_widgets.pt:155
+msgid "Language"
+msgstr ""
+
+#: skins/generic/header_widgets.pt:163
+msgid "Rights"
+msgstr ""
+
+#: skins/generic/header_widgets.pt:174
+msgid "Edit standard metadata"
+msgstr ""
+
+#: skins/generic/header_widgets.pt:33
+msgid "Edit all metadata"
+msgstr ""
+
+#: skins/generic/header_widgets.pt:54
+msgid "Enable Discussion?"
+msgstr ""
+
+#: skins/generic/header_widgets.pt:57
+msgid "Default"
+msgstr ""
+
+#: skins/generic/header_widgets.pt:60
+msgid "Off"
+msgstr ""
+
+#: skins/generic/header_widgets.pt:63
+msgid "On"
+msgstr ""
+
+#: skins/generic/header_widgets.pt:91
+msgid "Subject"
+msgstr ""
+
+#: skins/generic/last_member_logs.pt:19
+msgid "Last member login times"
+msgstr ""
+
+#: skins/generic/last_member_logs.pt:27
+msgid "Last login time"
+msgstr ""
+
+#: skins/generic/load_revision.py:29
+#: skins/content/changes_history_template.pt:63
+msgid "nobody"
+msgstr ""
+
+#: skins/generic/load_revision.py:38
+msgid "state of %s"
+msgstr ""
+
+#: skins/generic/local_roles_macros.pt:160
+msgid "No more group available for the ${role} role in this folder"
+msgstr ""
+
+#: skins/generic/local_roles_macros.pt:174
+msgid "No group have got the ${role} role in this folder"
+msgstr ""
+
+#: skins/generic/local_roles_macros.pt:39
+#: skins/generic/local_roles_macros.pt:122
+msgid "Current Role: \"${current_role}\""
+msgstr ""
+
+#: skins/generic/local_roles_macros.pt:45
+#: skins/generic/local_roles_macros.pt:127
+msgid "ok"
+msgstr ""
+
+#: skins/generic/local_roles_macros.pt:66
+#: skins/generic/local_roles_macros.pt:148
+msgid "Haven't role"
+msgstr ""
+
+#: skins/generic/local_roles_macros.pt:72
+#: skins/generic/local_roles_macros.pt:150
+msgid "Have role"
+msgstr ""
+
+#: skins/generic/local_roles_macros.pt:84
+msgid "No more member available for the ${role} role in this folder"
+msgstr ""
+
+#: skins/generic/local_roles_macros.pt:99
+msgid "Nobody have got the ${role} role in this folder"
+msgstr ""
+
+#: skins/generic/locale_date_fmt.pt:1
+#. Default: "%m/%d/%Y %Hh%M"
+msgid "locale_date_fmt"
+msgstr ""
+
+#: skins/generic/main_template_macros.pt:109
+msgid "Exit boxes editing"
+msgstr ""
+
+#: skins/generic/main_template_macros.pt:78
+msgid "You are here:"
+msgstr ""
+
+#: skins/generic/main_template_macros.pt:91
+#: skins/generic/main_template_macros.pt:94
+#: skins/generic/main_template_macros.pt:112
+#: skins/generic/main_template_macros.pt:113
+msgid "Paste"
+msgstr ""
+
+#: skins/generic/pending_members.pt:14
+msgid "Email"
+msgstr ""
+
+#: skins/generic/pending_members.pt:35
+msgid "Register"
+msgstr ""
+
+#: skins/generic/pending_members.pt:9
+msgid "Review members registration"
+msgstr ""
+
+#: skins/generic/recent_news.pt:21
+msgid "News"
+msgstr ""
+
+#: skins/generic/recent_news.pt:36
+msgid "by:"
+msgstr ""
+
+#: skins/generic/recent_news.pt:49
+#. Default: "Read More"
+msgid "read_more"
+msgstr ""
+
+#: skins/generic/recent_news.pt:57
+msgid "No news is good news!"
+msgstr ""
+
+#: skins/generic/reject_member_form.pt:14
+msgid "From:"
+msgstr ""
+
+#: skins/generic/reject_member_form.pt:20
+msgid "To:"
+msgstr ""
+
+#: skins/generic/reject_member_form.pt:27
+#: skins/generic/send_email_form.pt:96
+msgid "Subject:"
+msgstr ""
+
+#: skins/generic/reject_member_form.pt:31
+msgid "Membership request denied"
+msgstr ""
+
+#: skins/generic/reject_member_form.pt:35
+#: skins/generic/send_email_form.pt:101
+msgid "Message body:"
+msgstr ""
+
+#: skins/generic/reject_member_form.pt:39
+msgid "I'm sorry to have to inform you that your request has been denied. Please contact the site administrator."
+msgstr ""
+
+#: skins/generic/reject_member_form.pt:45
+msgid "Send"
+msgstr ""
+
+#: skins/generic/reject_member_form.pt:9
+msgid "Reject registration of ${fullname}"
+msgstr ""
+
+#: skins/generic/revision_context_header.pt:10
+msgid "This is an old revision of this content, as edited by ${user} at ${datetime}."
+msgstr ""
+
+#: skins/generic/revision_context_header.pt:16
+msgid "Restore this revision"
+msgstr ""
+
+#: skins/generic/revision_context_header.pt:22
+msgid "\342\206\220 previous revision"
+msgstr ""
+
+#: skins/generic/revision_context_header.pt:27
+msgid "current revision"
+msgstr ""
+
+#: skins/generic/revision_context_header.pt:29
+msgid "next revision \342\206\222"
+msgstr ""
+
+#: skins/generic/search.py:82
+#: skins/generic/search.py:86
+msgid "ascending sort"
+msgstr ""
+
+#: skins/generic/search_results_template.pt:16
+msgid "Search Results"
+msgstr ""
+
+#: skins/generic/search_results_template.pt:23
+msgid "Found ${count} ${item_s_match} '${text}'."
+msgstr ""
+
+#: skins/generic/search_results_template.pt:27
+msgid "Found 1 item."
+msgstr ""
+
+#: skins/generic/search_results_template.pt:28
+msgid "Found ${count} items."
+msgstr ""
+
+#: skins/generic/search_results_template.pt:41
+msgid "Creator"
+msgstr ""
+
+#: skins/generic/search_results_template.pt:45
+msgid "Last modified"
+msgstr ""
+
+#: skins/generic/search_results_template.pt:65
+msgid "(No title)"
+msgstr ""
+
+#: skins/generic/search_results_template.pt:82
+msgid "Save this search as topic"
+msgstr ""
+
+#: skins/generic/search_results_template.pt:83
+msgid "Title:"
+msgstr ""
+
+#: skins/generic/search_results_template.pt:88
+msgid "There are no items matching your specified criteria."
+msgstr ""
+
+#: skins/generic/send_email_form.pt:107
+msgid "Send email"
+msgstr ""
+
+#: skins/generic/send_email_form.pt:110
+msgid "Note: This message will be stored in content history."
+msgstr ""
+
+#: skins/generic/send_email_form.pt:29
+msgid "Recipients:"
+msgstr ""
+
+#: skins/generic/send_email_form.pt:47
+msgid "(as copy)"
+msgstr ""
+
+#: skins/generic/send_email_form.pt:62
+msgid "All (${nofpers} persons)"
+msgstr ""
+
+#: skins/generic/send_email_form.pt:69
+msgid "Show list"
+msgstr ""
+
+#: skins/generic/send_email_form.pt:79
+msgid "(not required)"
+msgstr ""
+
+#: skins/generic/send_email_form.pt:90
+msgid "Others (on address by line)"
+msgstr ""
+
+#: skins/generic/wf_macros.pt:17
+msgid "Actor"
+msgstr ""
+
+#: skins/generic/wf_macros.pt:18
+msgid "Action"
+msgstr ""
+
+#: skins/generic/wf_macros.pt:20
+msgid "Email sent to"
+msgstr ""
+
+#: skins/generic/wf_macros.pt:28
+msgid "(no comments)"
+msgstr ""
+
+#: skins/generic/wf_macros.pt:33
+msgid "(no email sent)"
+msgstr ""
+
+#: skins/generic/widgets.pt:32
+#: skins/generic/widgets.pt:33
+msgid "Edit metadata"
+msgstr ""
+
+#: skins/generic/widgets.pt:53
+msgid "Clipboard"
+msgstr ""
+
+#: skins/generic/wysiwyg_support.pt:112
+msgid "Structured text"
+msgstr ""
+
+#: skins/generic/wysiwyg_support.pt:118
+msgid "HTML"
+msgstr ""
+
+#: skins/generic/wysiwyg_support.pt:124
+msgid "Plain text"
+msgstr ""
+
+# from plinn-manual
+
+msgid "${month}/${day}/${year}&nbsp;&nbsp;${hour}:${minute}:${second}"
+msgstr ""
+
+msgid "1 Day"
+msgstr ""
+
+msgid "2 Days"
+msgstr ""
+
+msgid "5 Days"
+msgstr ""
+
+msgid "1 Week"
+msgstr ""
+
+msgid "2 Weeks"
+msgstr ""
+
+msgid "1 Month"
+msgstr ""
+
+msgid "3 Months"
+msgstr ""
+
+msgid "6 Months"
+msgstr ""
+
+msgid "1 Year"
+msgstr ""
+
+msgid "2 years"
+msgstr ""
+
+msgid "Action Box Block"
+msgstr ""
+
+msgid "Action box settings"
+msgstr ""
+
+msgid "Activity block"
+msgstr ""
+
+msgid "Add a document..."
+msgstr ""
+
+msgid "Add an activity"
+msgstr ""
+
+msgid "Add node"
+msgstr ""
+
+msgid "Advanced search"
+msgstr ""
+
+msgid "Anonymous registration"
+msgstr ""
+
+msgid "Appointment"
+msgstr ""
+
+msgid "Append Roles"
+msgstr ""
+
+msgid "Append or remove groups"
+msgstr ""
+
+msgid "Append or remove members"
+msgstr ""
+
+msgid "April"
+msgstr ""
+
+msgid "April_abbr"
+msgstr ""
+
+msgid "Assign local roles: Search Members"
+msgstr ""
+
+msgid "Assign local roles: Search Results"
+msgstr ""
+
+msgid "August"
+msgstr ""
+
+msgid "August_abbr"
+msgstr ""
+
+msgid "B"
+msgstr ""
+
+msgid "Backlinks"
+msgstr ""
+
+msgid "Base folder of members' folders"
+msgstr ""
+
+msgid "Box title:"
+msgstr ""
+
+msgid "catalog_index_allowedRolesAndUsers"
+msgstr ""
+
+msgid "catalog_index_created"
+msgstr ""
+
+msgid "catalog_index_Creator"
+msgstr ""
+
+msgid "catalog_index_Date"
+msgstr ""
+
+msgid "catalog_index_DateTimeOriginal"
+msgstr ""
+
+msgid "catalog_index_Description"
+msgstr ""
+
+msgid "catalog_index_effective"
+msgstr ""
+
+msgid "catalog_index_expires"
+msgstr ""
+
+msgid "catalog_index_fTitle"
+msgstr ""
+
+msgid "catalog_index_getId"
+msgstr ""
+
+msgid "catalog_index_listCreators"
+msgstr ""
+
+msgid "catalog_index_modified"
+msgstr ""
+
+msgid "catalog_index_path"
+msgstr ""
+
+msgid "catalog_index_portal_type"
+msgstr ""
+
+msgid "catalog_index_review_state"
+msgstr ""
+
+msgid "catalog_index_SearchableText"
+msgstr ""
+
+msgid "catalog_index_Subject"
+msgstr ""
+
+msgid "catalog_index_Title"
+msgstr ""
+
+msgid "Categories:"
+msgstr ""
+
+msgid "Change"
+msgstr ""
+
+msgid "Change image:"
+msgstr ""
+
+msgid "Click here to modify roles..."
+msgstr ""
+
+msgid "Click to get raw image"
+msgstr ""
+
+msgid "Click to see image full-size"
+msgstr ""
+
+msgid "Close"
+msgstr ""
+
+msgid "Collapse"
+msgstr ""
+
+msgid "Comment"
+msgstr ""
+
+msgid "Configure ${portal_calendar} Tool"
+msgstr ""
+
+msgid "Container block"
+msgstr ""
+
+msgid "Contributor"
+msgstr ""
+
+msgid "Convention"
+msgstr ""
+
+msgid "Copy"
+msgstr ""
+
+msgid "Create a mosaic document"
+msgstr ""
+
+msgid "Saved changes."
+msgstr ""
+
+msgid "Import a photo zipped file"
+msgstr ""
+
+msgid "send_email"
+msgstr ""
+
+msgid "Set Mapping"
+msgstr ""
+
+msgid "shared_submit"
+msgstr ""
+
+msgid "sort_by_index_created"
+msgstr ""
+
+msgid "sort_by_index_DateTimeOriginal"
+msgstr ""
+
+msgid "Criteria"
+msgstr ""
+
+msgid "coordonateur"
+msgstr ""
+
+msgid "Currently assigned local roles"
+msgstr ""
+
+msgid "DateTimeOriginal"
+msgstr ""
+
+msgid "Day"
+msgstr ""
+
+msgid "December"
+msgstr ""
+
+msgid "December_abbr"
+msgstr ""
+
+msgid "Delete"
+msgstr ""
+
+msgid "depublish"
+msgstr ""
+
+msgid "depublish_to_private"
+msgstr ""
+
+msgid "depublish_to_shared"
+msgstr ""
+
+msgid "Direct_publish"
+msgstr ""
+
+msgid "Directories"
+msgstr ""
+
+msgid "Do you realy want to delete ?"
+msgstr ""
+
+msgid "confirm_layer_delete"
+msgstr ""
+
+msgid "eleve"
+msgstr ""
+
+msgid "Empty image: upload an image file in \"Edit\" tab."
+msgstr ""
+
+msgid "ExifImageWidth"
+msgstr ""
+
+msgid "ExifImageHeight"
+msgstr ""
+
+msgid "Expand"
+msgstr ""
+
+msgid "Export as zip"
+msgstr ""
+
+msgid "ExposureTime"
+msgstr ""
+
+msgid "February"
+msgstr ""
+
+msgid "February_abbr"
+msgstr ""
+
+msgid "File"
+msgstr ""
+
+msgid "File Block"
+msgstr ""
+
+msgid "Filter (meta_type list) :"
+msgstr ""
+
+msgid "FNumber"
+msgstr ""
+
+msgid "FocalLength"
+msgstr ""
+
+msgid "Folder contents"
+msgstr ""
+
+msgid "Folders are created upon first login."
+msgstr ""
+
+msgid "Fri"
+msgstr ""
+
+msgid "Friday"
+msgstr ""
+
+msgid "Friendly Date Criterion"
+msgstr ""
+
+msgid "Global actions"
+msgstr ""
+
+msgid "Group folder area"
+msgstr ""
+
+msgid "Group's roles settings"
+msgstr ""
+
+msgid "GroupManager"
+msgstr ""
+
+msgid "Height:"
+msgstr ""
+
+msgid "History"
+msgstr ""
+
+msgid "Image block"
+msgstr ""
+
+msgid "Implicitly member of groups"
+msgstr ""
+
+msgid "Import"
+msgstr ""
+
+msgid "Insert file"
+msgstr ""
+
+msgid "Insert image"
+msgstr ""
+
+msgid "Insert inside text"
+msgstr ""
+
+msgid "Insert new block:"
+msgstr ""
+
+msgid "Integer Criterion"
+msgstr ""
+
+msgid "ISOSpeedRatings"
+msgstr ""
+
+msgid "January"
+msgstr ""
+
+msgid "January_abbr"
+msgstr ""
+
+msgid "July"
+msgstr ""
+
+msgid "July_abbr"
+msgstr ""
+
+msgid "June"
+msgstr ""
+
+msgid "June_abbr"
+msgstr ""
+
+msgid "immediately"
+msgstr ""
+
+msgid "KB"
+msgstr ""
+
+msgid "lang_iso"
+msgstr ""
+
+msgid "Layer"
+msgstr ""
+
+msgid "Left boxes"
+msgstr ""
+
+msgid "List Criterion"
+msgstr ""
+
+msgid "List Folder"
+msgstr ""
+
+msgid "List parent folder"
+msgstr ""
+
+msgid "Listen"
+msgstr ""
+
+msgid "Loading progress..."
+msgstr ""
+
+msgid "Local Roles"
+msgstr ""
+
+msgid "MB"
+msgstr ""
+
+msgid "make_private"
+msgstr ""
+
+msgid "Manage Groups"
+msgstr ""
+
+msgid "Manage boxes"
+msgstr ""
+
+msgid "Manage group's datas"
+msgstr ""
+
+msgid "Manage group's members"
+msgstr ""
+
+msgid "Manage portal's groups"
+msgstr ""
+
+msgid "Manage portal's members"
+msgstr ""
+
+msgid "Manager"
+msgstr ""
+
+msgid "March"
+msgstr ""
+
+msgid "March_abbr"
+msgstr ""
+
+msgid "May"
+msgstr ""
+
+msgid "May_abbr"
+msgstr ""
+
+msgid "Meeting"
+msgstr ""
+
+msgid "Member"
+msgstr ""
+
+msgid "Members"
+msgstr ""
+
+msgid "Members folder id"
+msgstr ""
+
+msgid "Member of groups"
+msgstr ""
+
+msgid "Member properties"
+msgstr ""
+
+msgid "member_creation_area_explanations"
+msgstr ""
+
+msgid "member_creation_area_title"
+msgstr ""
+
+msgid "Membership role mappings"
+msgstr ""
+
+msgid "membership_role_mapping_explanations"
+msgstr ""
+
+msgid "Metadata"
+msgstr ""
+
+msgid "Sort Criterion"
+msgstr ""
+
+msgid "sort_by_index_modified"
+msgstr ""
+
+msgid "Modify"
+msgstr ""
+
+msgid "Mon"
+msgstr ""
+
+msgid "Monday"
+msgstr ""
+
+msgid "Move down"
+msgstr ""
+
+msgid "Move left"
+msgstr ""
+
+msgid "Move right"
+msgstr ""
+
+msgid "Move up"
+msgstr ""
+
+msgid "never"
+msgstr ""
+
+msgid "New layer"
+msgstr ""
+
+msgid "News Item"
+msgstr ""
+
+msgid "No document"
+msgstr ""
+
+msgid "Node block"
+msgstr ""
+
+msgid "November"
+msgstr ""
+
+msgid "November_abbr"
+msgstr ""
+
+msgid "Now"
+msgstr ""
+
+msgid "Number of br:"
+msgstr ""
+
+msgid "October"
+msgstr ""
+
+msgid "October_abbr"
+msgstr ""
+
+msgid "Owner"
+msgstr ""
+
+msgid "person selected"
+msgstr ""
+
+msgid "persons selected"
+msgstr ""
+
+msgid "Play"
+msgstr ""
+
+msgid "Portal manager registration"
+msgstr ""
+
+msgid "Portal Role"
+msgstr ""
+
+msgid "Portlets"
+msgstr ""
+
+msgid "Preview..."
+msgstr ""
+
+msgid "private_submit"
+msgstr ""
+
+msgid "Properties of: ${memberFullName}"
+msgstr ""
+
+msgid "publish"
+msgstr ""
+
+msgid "Reader"
+msgstr ""
+
+msgid "Right boxes"
+msgstr ""
+
+msgid "Remove layer"
+msgstr ""
+
+msgid "Reply..."
+msgstr ""
+
+msgid "Represent a simple field-match for a string value."
+msgstr ""
+
+msgid "retract_to_private"
+msgstr ""
+
+msgid "retract_to_shared"
+msgstr ""
+
+msgid "Reviewed registration"
+msgstr ""
+
+msgid "Reviewer"
+msgstr ""
+
+msgid "Role(s)"
+msgstr ""
+
+msgid "Role mapping mismatch : click Validate to solve this problem !"
+msgstr ""
+
+msgid "Roles to assign:"
+msgstr ""
+
+msgid "Root object expression:"
+msgstr ""
+
+msgid "Sat"
+msgstr ""
+
+msgid "Saturday"
+msgstr ""
+
+msgid "Search"
+msgstr ""
+
+msgid "Search by"
+msgstr ""
+
+msgid "Search Term"
+msgstr ""
+
+msgid "Section block"
+msgstr ""
+
+msgid "Select date indexes"
+msgstr ""
+
+msgid "Select default time range displayed in calendar week view"
+msgstr ""
+
+msgid "Select member area folder type to construct:"
+msgstr ""
+
+msgid "Select Member(s) and a role(s) to assign:"
+msgstr ""
+
+msgid "Select registration mode"
+msgstr ""
+
+msgid "September"
+msgstr ""
+
+msgid "September_abbr"
+msgstr ""
+
+msgid "Set Roles"
+msgstr ""
+
+msgid "share"
+msgstr ""
+
+msgid "Show layer"
+msgstr ""
+
+msgid "Slide show"
+msgstr ""
+
+msgid "Social Event"
+msgstr ""
+
+msgid "Sorry, no members matched your search."
+msgstr ""
+
+msgid "Source file:"
+msgstr ""
+
+msgid "Spacer block"
+msgstr ""
+
+msgid "(start and end time in hour)"
+msgstr ""
+
+msgid "Status history"
+msgstr ""
+
+msgid "Stop"
+msgstr ""
+
+msgid "String Criterion"
+msgstr ""
+
+msgid "Sun"
+msgstr ""
+
+msgid "Sunday"
+msgstr ""
+
+msgid "Text block"
+msgstr ""
+
+msgid "These users currently have local roles assigned in this folder:"
+msgstr ""
+
+
+msgid "This folder has to be in the same container as the membership tool."
+msgstr ""
+
+msgid "Thu"
+msgstr ""
+
+msgid "Thursday"
+msgstr ""
+
+msgid "Title :"
+msgstr ""
+
+msgid "Tree Box Block"
+msgstr ""
+
+msgid "Tree box settings"
+msgstr ""
+
+msgid "Tree viewed by: ${memberFullName}"
+msgstr ""
+
+msgid "Tue"
+msgstr ""
+
+msgid "Tuesday"
+msgstr ""
+
+msgid "Turn folder creation off"
+msgstr ""
+
+msgid "Turn folder creation on"
+msgstr ""
+
+msgid "Two images block"
+msgstr ""
+
+msgid "Upload"
+msgstr ""
+
+msgid "User"
+msgstr ""
+
+msgid "User Folder-defined Role"
+msgstr ""
+
+msgid "UserManager"
+msgstr ""
+
+msgid "Untitled-"
+msgstr ""
+
+msgid "Validate pending documents"
+msgstr ""
+
+msgid "Visitor"
+msgstr ""
+
+msgid "View"
+msgstr ""
+
+msgid "View history"
+msgstr ""
+
+msgid "View local roles"
+msgstr ""
+
+msgid "Wed"
+msgstr ""
+
+msgid "Wednesday"
+msgstr ""
+
+msgid "Width:"
+msgstr ""
+
+msgid "width / height:"
+msgstr ""
+
+msgid "Work"
+msgstr ""
+
+msgid "Workflow chain"
+msgstr ""
+
+msgid "You are not allowed to delete: "
+msgstr ""
+
+msgid "collaborator"
+msgstr ""
+
+msgid "collapse"
+msgstr ""
+
+msgid "expand"
+msgstr ""
+
+msgid "file type:"
+msgstr ""
+
+msgid "Hide layer"
+msgstr ""
+
+msgid "Home"
+msgstr ""
+
+msgid "name"
+msgstr ""
+
+msgid "No Folders are created."
+msgstr ""
+
+msgid ""
+"Put a friendly interface on date range searches, like 'where effective "
+"date is less than 5 days old'."
+msgstr ""
+
+msgid ""
+"Represent a criterion which is a list of values (for an 'OR' search)."
+msgstr ""
+
+msgid ""
+"Represent a simple field-match for an integer value, including catalog "
+"range searches."
+msgstr ""
+
+msgid ""
+"Represent a mock criterion, to allow spelling the sort order and reversal "
+"items in a catalog query."
+msgstr ""
+
+msgid ""
+"WARNING: The current portal type is unknown. You must change the value to "
+"enable the member area creation."
+msgstr ""
+
+msgid "Approve"
+msgstr ""
+
+msgid "approved"
+msgstr ""
+
+msgid "Disapprove"
+msgstr ""
+
+msgid "pending"
+msgstr ""
+
+msgid "private"
+msgstr ""
+
+msgid "items matching"
+msgstr ""
+
+msgid "item matching"
+msgstr ""
+
+msgid "mail_to"
+msgstr ""
+
+msgid "mail_cc"
+msgstr ""
+
+msgid "mail_bcc"
+msgstr ""
diff --git a/overrides.zcml b/overrides.zcml
new file mode 100644
index 0000000..29b6177
--- /dev/null
+++ b/overrides.zcml
@@ -0,0 +1,7 @@
+<configure
+    xmlns="http://namespaces.zope.org/zope">
+    <utility
+        provides="Products.PageTemplates.interfaces.IUnicodeEncodingConflictResolver"
+        component="Products.PageTemplates.unicodeconflictresolver.ReplacingUnicodeEncodingConflictResolver"
+        />
+</configure>
diff --git a/patch.py b/patch.py
new file mode 100644
index 0000000..badf42a
--- /dev/null
+++ b/patch.py
@@ -0,0 +1,11 @@
+""" Plinn monkey patch
+
+$Id: patch.py 1458 2009-01-30 18:11:21Z pin $
+$URL: http://svn.cri.ensmp.fr/svn/Plinn/branches/CMF-2.1/patch.py $
+"""
+from Products.CMFCore.PortalFolder import PortalFolder as CMFPortalFolder
+from Folder import PlinnFolder
+
+CMFPortalFolder.listFolderContents = PlinnFolder.listFolderContents.im_func
+CMFPortalFolder.listNearestFolderContents = PlinnFolder.listNearestFolderContents.im_func
+CMFPortalFolder.listCatalogedContents = PlinnFolder.listCatalogedContents.im_func
diff --git a/permissions.py b/permissions.py
new file mode 100755
index 0000000..e6e0577
--- /dev/null
+++ b/permissions.py
@@ -0,0 +1,72 @@
+""" Plinn permissions
+
+$Id: permissions.py 1514 2009-06-26 02:03:59Z pin $
+$URL: http://svn.cri.ensmp.fr/svn/Plinn/branches/CMF-2.1/permissions.py $
+"""
+from AccessControl import Permissions
+from AccessControl import ModuleSecurityInfo
+from Products.CMFCore.permissions import setDefaultRoles
+
+security = ModuleSecurityInfo('Products.Plinn.permissions')
+
+DeleteObjects = Permissions.delete_objects
+security.declarePublic('DeleteObjects')
+
+ViewHistory = Permissions.view_history
+security.declarePublic('ViewHistory')
+
+#
+# Plinn Base Permissions
+#
+
+
+RemoveMember = 'Remove member'
+security.declarePublic('RemoveMember')
+setDefaultRoles( RemoveMember, ( 'Manager', ) )
+
+SetLocalRoles = 'Set Local Roles'
+security.declarePublic('SetLocalRoles')
+setDefaultRoles( SetLocalRoles, ( 'Manager', 'Owner' ) )
+
+DeleteOwnedObjects = 'Delete Owned Objects'
+security.declarePublic('DeleteOwnedObjects')
+setDefaultRoles( DeleteOwnedObjects, ('Owner', ) )
+
+DeletePortalContents = 'Delete Portal Contents'
+security.declarePublic('DeletePortalContents')
+setDefaultRoles( DeletePortalContents, ('Manager', 'Owner') ) # + Member
+
+SetMemberProperties = 'Set Member Properties'
+security.declarePublic('SetMemberProperties')
+setDefaultRoles( SetMemberProperties, ( 'Manager', ) )
+
+SetMemberPassword = 'Set Member Password'
+security.declarePublic('SetMemberPassword')
+setDefaultRoles( SetMemberPassword, ( 'Manager', ) )
+
+CheckMemberPermission = 'Check Member Permission'
+security.declarePublic('CheckMemberPermission')
+setDefaultRoles( CheckMemberPermission, ( 'Manager', ) )
+
+ListNotificationSettings = 'List Notification Settings'
+security.declarePublic('ListNotificationSettings')
+setDefaultRoles( ListNotificationSettings, ( 'Manager', ) )
+
+SubscribeNotification = 'Subscribe Notification'
+security.declarePublic('SubscribeNotification')
+setDefaultRoles( SubscribeNotification, ( 'Manager', 'Owmer') ) # + Reader
+
+#
+# Make public GRUF permissions
+#
+from Products.GroupUserFolder.GroupsToolPermissions import AddGroups, \
+														   ManageGroups, \
+														   ViewGroups, \
+														   DeleteGroups, \
+														   SetGroupOwnership
+
+security.declarePublic('AddGroups')
+security.declarePublic('ManageGroups')
+security.declarePublic('ViewGroups')
+security.declarePublic('DeleteGroups')
+security.declarePublic('SetGroupOwnership')
diff --git a/photoshop/Plinn Images Wizard.jsx b/photoshop/Plinn Images Wizard.jsx
new file mode 100644
index 0000000..866c5e5
--- /dev/null
+++ b/photoshop/Plinn Images Wizard.jsx	
@@ -0,0 +1 @@
+#target photoshop
#include image_actions.jsxinc

app.bringToFront();
$.localize = true;

var messages = {
	"wizardTitle" : localize("$$$/JavaScripts/PlinnImageWizard/Title"),
	"srcPanelLabel" : localize("$$$/JavaScripts/PlinnImageWizard/SrcPanelLabel"),
	
	"helpPropsFile" : localize("$$$/JavaScripts/PlinnImageWizard/HelpPropsFile"),
	"buttonSelectPropsFile" : localize("$$$/JavaScripts/PlinnImageWizard/ButtonSelectPropsFile"),
	"noFileSelected" : localize("$$$/JavaScripts/PlinnImageWizard/NoFileSelected"),
	"promptSelectSrcPropsFile" : localize("$$$/JavaScripts/PlinnImageWizard/PromptSelectSrcPropsFile"),
	
	"helpSrcFolder" : localize("$$$/JavaScripts/PlinnImageWizard/HelpSrcFolder"),
	"selectSrcFolder" : localize("$$$/JavaScripts/PlinnImageWizard/ButtonSelectSrcFolder"),
	"promptSelectSrcFolder" : localize("$$$/JavaScripts/PlinnImageWizard/PromptSelectSrcFolder"),

	"destPanelLabel" : localize("$$$/JavaScripts/PlinnImageWizard/DestPanelLabel"),
	"helpDestFolder" : localize("$$$/JavaScripts/PlinnImageWizard/HelpDestFolder"),
	"selectDestFolder" : localize("$$$/JavaScripts/PlinnImageWizard/ButtonSelectDestFolder"),
	"promptSelectDestFolder" : localize("$$$/JavaScripts/PlinnImageWizard/PromptSelectDestFolder"),

	"noFolderSelected" : localize("$$$/JavaScripts/PlinnImageWizard/NoFolderSelected"),
	"okBtnLabel" : localize("$$$/JavaScripts/PlinnImageWizard/OkBtnLabel"),
	"cancelBtnLabel" : localize("$$$/JavaScripts/PlinnImageWizard/CancelBtnLabel")
}

function init() {
	dlg = null;
	propsFile = null;
	selectedPropsFile = null;
	srcFolder = null;
	selectedFolderPath = null;
	destFolder = null
	selectedDestFolderPath = null;
	gShortFileNameLength = 22;
	plinnFileProcess = {'loading_progress.psd':true,
						'plinn.psd':true};
	plinnFiles = null;
	colorRegistry = new Array();
}


var colorRegistry = new Array();
colorRegistry['menuBAr']

var PlinnProcess = new Array();

PlinnProcess['loading_progress.psd'] = function(file) {
    var doc = app.open(file)
    app.activeDocument = doc;
	var fsPath = destFolder.fsName + '/loading_progress.gif';
	_loadingProgress(fsPath, colorRegistry['memberActionsBoxBackground'], colorRegistry['bulletColor'])
    doc.close(SaveOptions.DONOTSAVECHANGES);
};

PlinnProcess['plinn.psd'] = function(file) {
    var doc = app.open(file)
    app.activeDocument = doc;
	var fsPath = destFolder.fsName + '/logo.gif';
	_plinnLogo(fsPath, colorRegistry['topbarBackgroundColor'], colorRegistry['bulletColor'])
    doc.close(SaveOptions.DONOTSAVECHANGES);
};

function inputFileFilter(ob) {
    return (plinnFileProcess[ob.name]) ? true : false;
}

function setPropsFile() {
	propsFile = File.openDialog(messages['promptSelectSrcPropsFile']);
	if (!propsFile)
	    return;
	selectedPropsFile.text = shortFileName(propsFile.fsName);
	parsePropsFile();
	checkVarsInitialization();
}

function setSrcFolder() {
	srcFolder = Folder.selectDialog(messages['promptSelectSrcFolder']);
	if (!srcFolder)
	    return;
	selectedSrcFolderPath.text = shortFileName(srcFolder.fsName);
	plinnFiles = srcFolder.getFiles(inputFileFilter);
	checkVarsInitialization();
}

function setDestFolder() {
	destFolder = Folder.selectDialog(messages['promptSelectDestFolder']);
	if (!destFolder)
	    return;
	selectedDestFolderPath.text = shortFileName(destFolder.fsName);
	checkVarsInitialization();
}

function checkVarsInitialization() {
    if (propsFile && srcFolder && destFolder)
        dlg.defaultElement.enabled = true;
}

function parsePropsFile() {
	propsFile.open('r');
	var line, nameTypeValue, name, typeValue, type, value;
	while (!propsFile.eof) {
		line = propsFile.readln();
		line = line.replace(/^\s*(.*?)\s*$/, "$1");
		if (!line || line[0] == '#') continue;
		
		/* découpage */
        nameTypeValue = line.split(':',2)
		name = nameTypeValue[0];
		typeValue = nameTypeValue[1].split('=', 2);
		type = typeValue[0];
		value = typeValue[1];
		/* strip */
		name = name.replace(/^\s*(.*?)\s*$/, "$1");
		type = type.replace(/^\s*(.*?)\s*$/, "$1");
		value = value.replace(/^\s*(.*?)\s*$/, "$1");
		if (type != 'string' || value[0] != '#')
			continue;
		
		colorRegistry[name] = splitRGB(value);
	}
}

var hexToDec = {'0':0, '1':1, '2':2,  '3':3,  '4':4,  '5':5,  '6':6,  '7':7,
                '8':8, '9':9, 'a':10, 'b':11, 'c':12, 'd':13, 'e':14, 'f':15};
function splitRGB(value) {
    value = value.slice(1)
    value = value.toLowerCase();
    if (value.length == 3)
        value = value[0] + value[0] + value[1] + value[1] + value[2] + value[2]
    var r = value.slice(0,2);
    var g = value.slice(2, 4);
    var b = value.slice(4, 6);
    
    r = 16 * hexToDec[r[0]] + hexToDec[r[1]];
    g = 16 * hexToDec[g[0]] + hexToDec[g[1]];
    b = 16 * hexToDec[b[0]] + hexToDec[b[1]];
    return [r, g, b];
}

function processImages() {
    for (var i = 0 ; i < plinnFiles.length ; i++)
        PlinnProcess[plinnFiles[i].name](plinnFiles[i]);
    dlg.close();
}

function drawDialog() {
	dlg = new Window('dialog', messages['wizardTitle']);
	
	/* Panneau de sélection des données source */
	var panelSrc = dlg.add('panel', undefined, messages['srcPanelLabel']);
	
	/* Fichier de propriétés */
	panelSrc.add('statictext', undefined, messages['helpPropsFile']);
	var propsFileGrp = panelSrc.add('group');
	var btnChoosePropsFile = propsFileGrp.add('button', undefined, messages['buttonSelectPropsFile']);
	btnChoosePropsFile.onClick = setPropsFile;
	selectedPropsFile = propsFileGrp.add('statictext');
	selectedPropsFile.text = messages['noFileSelected'];
	
	/* Sélection du dossier source */
	panelSrc.add('statictext', undefined, messages['helpSrcFolder']);
	panelSrc.alignChildren = "left";
	var folderSrcGroup = panelSrc.add('group');
	var btnChooseSrcFolder = folderSrcGroup.add('button', undefined, messages['selectSrcFolder']);
	btnChooseSrcFolder.onClick = setSrcFolder;
	
	selectedSrcFolderPath = folderSrcGroup.add('statictext');
	selectedSrcFolderPath.text = messages['noFolderSelected'];
	
	/* Panneau de sélection du dossier de destination */
	var panelDest = dlg.add('panel', undefined, messages['destPanelLabel']);
	panelDest.add('statictext', undefined, messages['helpDestFolder']);
	panelDest.alignChildren = "left";
	var folderDestGroup = panelDest.add('group');
	var btnChooseDestFolder = folderDestGroup.add('button', undefined, messages['selectDestFolder']);
	btnChooseDestFolder.onClick = setDestFolder;
	
	selectedDestFolderPath = folderDestGroup.add('statictext');
	selectedDestFolderPath.text = messages['noFolderSelected'];

	
	
	/* Boutons de contrôle */
	var ctrlGrp = dlg.add('group');
	ctrlGrp.alignement= 'right';
	ctrlGrp.alignChildren = "right";
	var okBtn = ctrlGrp.add('button', undefined, messages["okBtnLabel"]);
	okBtn.enabled = false;
	okBtn.onClick = processImages;
	dlg.defaultElement = okBtn;
	var cancelBtn = ctrlGrp.add('button', undefined, messages["cancelBtnLabel"]);
	dlg.cancelElement = cancelBtn;
	
		
	dlg.center();
	dlg.show();
}


function shortFileName( inFileName ) {
	if ( inFileName.length > gShortFileNameLength ) {
		return "..." + inFileName.substr( inFileName.length - gShortFileNameLength + 3, gShortFileNameLength - 3 );
	}
	return inFileName;
}

function setSolidFillColor(color) {
    var r = color[0];
    var g = color[1];
    var b = color[2];
	var id9 = charIDToTypeID( "setd" );
	    var desc4 = new ActionDescriptor();
	    var id10 = charIDToTypeID( "null" );
	        var ref1 = new ActionReference();
	        var id11 = stringIDToTypeID( "contentLayer" );
	        var id12 = charIDToTypeID( "Ordn" );
	        var id13 = charIDToTypeID( "Trgt" );
	        ref1.putEnumerated( id11, id12, id13 );
	    desc4.putReference( id10, ref1 );
	    var id14 = charIDToTypeID( "T   " );
	        var desc5 = new ActionDescriptor();
	        var id15 = charIDToTypeID( "Clr " );
	            var desc6 = new ActionDescriptor();
	            var id16 = charIDToTypeID( "Rd  " );
	            desc6.putDouble( id16, r );
	            var id17 = charIDToTypeID( "Grn " );
	            desc6.putDouble( id17, g );
	            var id18 = charIDToTypeID( "Bl  " );
	            desc6.putDouble( id18, b );
	        var id19 = charIDToTypeID( "RGBC" );
	        desc5.putObject( id15, id19, desc6 );
	    var id20 = stringIDToTypeID( "solidColorLayer" );
	    desc4.putObject( id14, id20, desc5 );
	executeAction( id9, desc4, DialogModes.NO );	
}

function main() {
	init();
	drawDialog();
}

try {
    main();
}
catch(e) {
    alert(e);
}
\ No newline at end of file
diff --git a/photoshop/Plinn Images Wizard/Plinn Images Wizard_fr_FR.dat b/photoshop/Plinn Images Wizard/Plinn Images Wizard_fr_FR.dat
new file mode 100644
index 0000000..da23e5c
--- /dev/null
+++ b/photoshop/Plinn Images Wizard/Plinn Images Wizard_fr_FR.dat	
@@ -0,0 +1 @@
+"$$$/JavaScripts/PlinnImageWizard/Title=Assistant de mise à jour des images Plinn"

"$$$/JavaScripts/PlinnImageWizard/SrcPanelLabel=Données source"

"$$$/JavaScripts/PlinnImageWizard/HelpPropsFile=Sélectionner le fichier de propriétés de Plinn (*.props)."
"$$$/JavaScripts/PlinnImageWizard/ButtonSelectPropsFile=Choisir le fichier"
"$$$/JavaScripts/PlinnImageWizard/NoFileSelected=Aucun fichier sélectionné"
"$$$/JavaScripts/PlinnImageWizard/PromptSelectSrcPropsFile=Sélectionner le fichier de propriétés de Plinn."

"$$$/JavaScripts/PlinnImageWizard/HelpSrcFolder=Sélectionner le dossier des images sources de Plinn."
"$$$/JavaScripts/PlinnImageWizard/ButtonSelectSrcFolder=Choisir le dossier"
"$$$/JavaScripts/PlinnImageWizard/PromptSelectSrcFolder=Sélectionner le dossier des images sources de Plinn."

"$$$/JavaScripts/PlinnImageWizard/DestPanelLabel=Dossier cible"

"$$$/JavaScripts/PlinnImageWizard/HelpDestFolder=Sélectionner le dossier où placer les images résultantes."
"$$$/JavaScripts/PlinnImageWizard/ButtonSelectDestFolder=Choisir le dossier"
"$$$/JavaScripts/PlinnImageWizard/PromptSelectDestFolder=Sélectionner le dossier où placer les images résultantes."
"$$$/JavaScripts/PlinnImageWizard/NoFolderSelected=Aucun dossier sélectionné"

"$$$/JavaScripts/PlinnImageWizard/OkBtnLabel=Ok"
"$$$/JavaScripts/PlinnImageWizard/CancelBtnLabel=Annuler"
\ No newline at end of file
diff --git a/photoshop/image_actions.jsxinc b/photoshop/image_actions.jsxinc
new file mode 100644
index 0000000..74042d4
--- /dev/null
+++ b/photoshop/image_actions.jsxinc
@@ -0,0 +1,337 @@
+
+
+function _loadingProgress(fsPath, background, bullet) {
+	
+	// Sélection du calque de fond ===========================
+	var id3 = charIDToTypeID( "slct" );
+	    var desc2 = new ActionDescriptor();
+	    var id4 = charIDToTypeID( "null" );
+	        var ref1 = new ActionReference();
+	        var id5 = charIDToTypeID( "Lyr " );
+	        ref1.putName( id5, "Fond" );
+	    desc2.putReference( id4, ref1 );
+	    var id6 = charIDToTypeID( "MkVs" );
+	    desc2.putBoolean( id6, false );
+	executeAction( id3, desc2, DialogModes.NO );
+
+	// Changement de la couleur de fond ======================
+	var id7 = charIDToTypeID( "setd" );
+	    var desc3 = new ActionDescriptor();
+	    var id8 = charIDToTypeID( "null" );
+	        var ref2 = new ActionReference();
+	        var id9 = stringIDToTypeID( "contentLayer" );
+	        var id10 = charIDToTypeID( "Ordn" );
+	        var id11 = charIDToTypeID( "Trgt" );
+	        ref2.putEnumerated( id9, id10, id11 );
+	    desc3.putReference( id8, ref2 );
+	    var id12 = charIDToTypeID( "T   " );
+	        var desc4 = new ActionDescriptor();
+	        var id13 = charIDToTypeID( "Clr " );
+	            var desc5 = new ActionDescriptor();
+	            var id14 = charIDToTypeID( "Rd  " );
+	            desc5.putDouble( id14, background[0] );
+	            var id15 = charIDToTypeID( "Grn " );
+	            desc5.putDouble( id15, background[1] );
+	            var id16 = charIDToTypeID( "Bl  " );
+	            desc5.putDouble( id16, background[2] );
+	        var id17 = charIDToTypeID( "RGBC" );
+	        desc4.putObject( id13, id17, desc5 );
+	    var id18 = stringIDToTypeID( "solidColorLayer" );
+	    desc3.putObject( id12, id18, desc4 );
+	executeAction( id7, desc3, DialogModes.NO );
+	
+	// Sélection du calque 'bullet' ==========================
+	var id19 = charIDToTypeID( "slct" );
+	    var desc6 = new ActionDescriptor();
+	    var id20 = charIDToTypeID( "null" );
+	        var ref3 = new ActionReference();
+	        var id21 = charIDToTypeID( "Lyr " );
+	        ref3.putName( id21, "bullet" );
+	    desc6.putReference( id20, ref3 );
+	    var id22 = charIDToTypeID( "MkVs" );
+	    desc6.putBoolean( id22, false );
+	executeAction( id19, desc6, DialogModes.NO );
+
+	// Définition de la couleur de la bullet =================
+	var id23 = charIDToTypeID( "setd" );
+	    var desc7 = new ActionDescriptor();
+	    var id24 = charIDToTypeID( "null" );
+	        var ref4 = new ActionReference();
+	        var id25 = stringIDToTypeID( "contentLayer" );
+	        var id26 = charIDToTypeID( "Ordn" );
+	        var id27 = charIDToTypeID( "Trgt" );
+	        ref4.putEnumerated( id25, id26, id27 );
+	    desc7.putReference( id24, ref4 );
+	    var id28 = charIDToTypeID( "T   " );
+	        var desc8 = new ActionDescriptor();
+	        var id29 = charIDToTypeID( "Clr " );
+	            var desc9 = new ActionDescriptor();
+	            var id30 = charIDToTypeID( "Rd  " );
+	            desc9.putDouble( id30, bullet[0] );
+	            var id31 = charIDToTypeID( "Grn " );
+	            desc9.putDouble( id31, bullet[1] );
+	            var id32 = charIDToTypeID( "Bl  " );
+	            desc9.putDouble( id32, bullet[2] );
+	        var id33 = charIDToTypeID( "RGBC" );
+	        desc8.putObject( id29, id33, desc9 );
+	    var id34 = stringIDToTypeID( "solidColorLayer" );
+	    desc7.putObject( id28, id34, desc8 );
+	executeAction( id23, desc7, DialogModes.NO );
+	
+	// Enregistrement de l'image gif =========================
+	var id87 = charIDToTypeID( "Expr" );
+	    var desc14 = new ActionDescriptor();
+	    var id88 = charIDToTypeID( "Usng" );
+	        var desc15 = new ActionDescriptor();
+	        var id89 = charIDToTypeID( "Op  " );
+	        var id90 = charIDToTypeID( "SWOp" );
+	        var id91 = charIDToTypeID( "OpSa" );
+	        desc15.putEnumerated( id89, id90, id91 );
+	        var id92 = charIDToTypeID( "Fmt " );
+	        var id93 = charIDToTypeID( "IRFm" );
+	        var id94 = charIDToTypeID( "GIFf" );
+	        desc15.putEnumerated( id92, id93, id94 );
+	        var id95 = charIDToTypeID( "Intr" );
+	        desc15.putBoolean( id95, false );
+	        var id96 = charIDToTypeID( "RedA" );
+	        var id97 = charIDToTypeID( "IRRd" );
+	        var id98 = charIDToTypeID( "Sltv" );
+	        desc15.putEnumerated( id96, id97, id98 );
+	        var id99 = charIDToTypeID( "RChT" );
+	        desc15.putBoolean( id99, false );
+	        var id100 = charIDToTypeID( "RChV" );
+	        desc15.putBoolean( id100, false );
+	        var id101 = charIDToTypeID( "AuRd" );
+	        desc15.putBoolean( id101, false );
+	        var id102 = charIDToTypeID( "NCol" );
+	        desc15.putInteger( id102, 256 );
+	        var id103 = charIDToTypeID( "Dthr" );
+	        var id104 = charIDToTypeID( "IRDt" );
+	        var id105 = charIDToTypeID( "Dfsn" );
+	        desc15.putEnumerated( id103, id104, id105 );
+	        var id106 = charIDToTypeID( "DthA" );
+	        desc15.putInteger( id106, 100 );
+	        var id107 = charIDToTypeID( "DChS" );
+	        desc15.putInteger( id107, 0 );
+	        var id108 = charIDToTypeID( "DCUI" );
+	        desc15.putInteger( id108, 0 );
+	        var id109 = charIDToTypeID( "DChT" );
+	        desc15.putBoolean( id109, false );
+	        var id110 = charIDToTypeID( "DChV" );
+	        desc15.putBoolean( id110, false );
+	        var id111 = charIDToTypeID( "WebS" );
+	        desc15.putInteger( id111, 0 );
+	        var id112 = charIDToTypeID( "TDth" );
+	        var id113 = charIDToTypeID( "IRDt" );
+	        var id114 = charIDToTypeID( "None" );
+	        desc15.putEnumerated( id112, id113, id114 );
+	        var id115 = charIDToTypeID( "TDtA" );
+	        desc15.putInteger( id115, 100 );
+	        var id116 = charIDToTypeID( "Loss" );
+	        desc15.putInteger( id116, 0 );
+	        var id117 = charIDToTypeID( "LChS" );
+	        desc15.putInteger( id117, 0 );
+	        var id118 = charIDToTypeID( "LCUI" );
+	        desc15.putInteger( id118, 100 );
+	        var id119 = charIDToTypeID( "LChT" );
+	        desc15.putBoolean( id119, false );
+	        var id120 = charIDToTypeID( "LChV" );
+	        desc15.putBoolean( id120, false );
+	        var id121 = charIDToTypeID( "Trns" );
+	        desc15.putBoolean( id121, false );
+	        var id122 = charIDToTypeID( "Mtt " );
+	        desc15.putBoolean( id122, true );
+	        var id123 = charIDToTypeID( "MttR" );
+	        desc15.putInteger( id123, 255 );
+	        var id124 = charIDToTypeID( "MttG" );
+	        desc15.putInteger( id124, 255 );
+	        var id125 = charIDToTypeID( "MttB" );
+	        desc15.putInteger( id125, 255 );
+	        var id126 = charIDToTypeID( "SHTM" );
+	        desc15.putBoolean( id126, false );
+	        var id127 = charIDToTypeID( "SImg" );
+	        desc15.putBoolean( id127, true );
+	        var id128 = charIDToTypeID( "SSSO" );
+	        desc15.putBoolean( id128, false );
+	        var id129 = charIDToTypeID( "SSLt" );
+	            var list2 = new ActionList();
+	        desc15.putList( id129, list2 );
+	        var id130 = charIDToTypeID( "DIDr" );
+	        desc15.putBoolean( id130, false );
+	        var id131 = charIDToTypeID( "In  " );
+	        desc15.putPath( id131, new File( fsPath ) );
+	    var id132 = stringIDToTypeID( "SaveForWeb" );
+	    desc14.putObject( id88, id132, desc15 );
+	executeAction( id87, desc14, DialogModes.NO );
+}
+
+function _plinnLogo(fsPath, background, bullet) {
+	// Sélection du calque de fond ===========================
+	var id7 = charIDToTypeID( "slct" );
+	    var desc3 = new ActionDescriptor();
+	    var id8 = charIDToTypeID( "null" );
+	        var ref2 = new ActionReference();
+	        var id9 = charIDToTypeID( "Lyr " );
+	        ref2.putName( id9, "Fond" );
+	    desc3.putReference( id8, ref2 );
+	    var id10 = charIDToTypeID( "MkVs" );
+	    desc3.putBoolean( id10, false );
+	executeAction( id7, desc3, DialogModes.NO );
+
+	// Définition de la couleur de fond ======================
+	var id11 = charIDToTypeID( "setd" );
+	    var desc4 = new ActionDescriptor();
+	    var id12 = charIDToTypeID( "null" );
+	        var ref3 = new ActionReference();
+	        var id13 = stringIDToTypeID( "contentLayer" );
+	        var id14 = charIDToTypeID( "Ordn" );
+	        var id15 = charIDToTypeID( "Trgt" );
+	        ref3.putEnumerated( id13, id14, id15 );
+	    desc4.putReference( id12, ref3 );
+	    var id16 = charIDToTypeID( "T   " );
+	        var desc5 = new ActionDescriptor();
+	        var id17 = charIDToTypeID( "Clr " );
+	            var desc6 = new ActionDescriptor();
+	            var id18 = charIDToTypeID( "Rd  " );
+	            desc6.putDouble( id18, background[0] );
+	            var id19 = charIDToTypeID( "Grn " );
+	            desc6.putDouble( id19, background[1] );
+	            var id20 = charIDToTypeID( "Bl  " );
+	            desc6.putDouble( id20, background[2] );
+	        var id21 = charIDToTypeID( "RGBC" );
+	        desc5.putObject( id17, id21, desc6 );
+	    var id22 = stringIDToTypeID( "solidColorLayer" );
+	    desc4.putObject( id16, id22, desc5 );
+	executeAction( id11, desc4, DialogModes.NO );
+
+	// Sélection du calque avec la bullet ====================
+	var id23 = charIDToTypeID( "slct" );
+	    var desc7 = new ActionDescriptor();
+	    var id24 = charIDToTypeID( "null" );
+	        var ref4 = new ActionReference();
+	        var id25 = charIDToTypeID( "Lyr " );
+	        ref4.putName( id25, "Fond 2" );
+	    desc7.putReference( id24, ref4 );
+	    var id26 = charIDToTypeID( "MkVs" );
+	    desc7.putBoolean( id26, false );
+	executeAction( id23, desc7, DialogModes.NO );
+
+	// Définition de la couleur de la bullet =================
+	var id27 = charIDToTypeID( "setd" );
+	    var desc8 = new ActionDescriptor();
+	    var id28 = charIDToTypeID( "null" );
+	        var ref5 = new ActionReference();
+	        var id29 = stringIDToTypeID( "contentLayer" );
+	        var id30 = charIDToTypeID( "Ordn" );
+	        var id31 = charIDToTypeID( "Trgt" );
+	        ref5.putEnumerated( id29, id30, id31 );
+	    desc8.putReference( id28, ref5 );
+	    var id32 = charIDToTypeID( "T   " );
+	        var desc9 = new ActionDescriptor();
+	        var id33 = charIDToTypeID( "Clr " );
+	            var desc10 = new ActionDescriptor();
+	            var id34 = charIDToTypeID( "Rd  " );
+	            desc10.putDouble( id34, bullet[0] );
+	            var id35 = charIDToTypeID( "Grn " );
+	            desc10.putDouble( id35, bullet[1] );
+	            var id36 = charIDToTypeID( "Bl  " );
+	            desc10.putDouble( id36, bullet[2] );
+	        var id37 = charIDToTypeID( "RGBC" );
+	        desc9.putObject( id33, id37, desc10 );
+	    var id38 = stringIDToTypeID( "solidColorLayer" );
+	    desc8.putObject( id32, id38, desc9 );
+	executeAction( id27, desc8, DialogModes.NO );
+
+	// Ajustement hauteur à 64px et exportation gif ==========
+	var id39 = charIDToTypeID( "Expr" );
+	    var desc11 = new ActionDescriptor();
+	    var id40 = charIDToTypeID( "Usng" );
+	        var desc12 = new ActionDescriptor();
+	        var id41 = charIDToTypeID( "Op  " );
+	        var id42 = charIDToTypeID( "SWOp" );
+	        var id43 = charIDToTypeID( "OpSa" );
+	        desc12.putEnumerated( id41, id42, id43 );
+	        var id44 = charIDToTypeID( "Fmt " );
+	        var id45 = charIDToTypeID( "IRFm" );
+	        var id46 = charIDToTypeID( "GIFf" );
+	        desc12.putEnumerated( id44, id45, id46 );
+	        var id47 = charIDToTypeID( "Intr" );
+	        desc12.putBoolean( id47, false );
+	        var id48 = charIDToTypeID( "RedA" );
+	        var id49 = charIDToTypeID( "IRRd" );
+	        var id50 = charIDToTypeID( "Sltv" );
+	        desc12.putEnumerated( id48, id49, id50 );
+	        var id51 = charIDToTypeID( "RChT" );
+	        desc12.putBoolean( id51, false );
+	        var id52 = charIDToTypeID( "RChV" );
+	        desc12.putBoolean( id52, false );
+	        var id53 = charIDToTypeID( "AuRd" );
+	        desc12.putBoolean( id53, false );
+	        var id54 = charIDToTypeID( "NCol" );
+	        desc12.putInteger( id54, 256 );
+	        var id55 = charIDToTypeID( "Dthr" );
+	        var id56 = charIDToTypeID( "IRDt" );
+	        var id57 = charIDToTypeID( "Dfsn" );
+	        desc12.putEnumerated( id55, id56, id57 );
+	        var id58 = charIDToTypeID( "DthA" );
+	        desc12.putInteger( id58, 100 );
+	        var id59 = charIDToTypeID( "DChS" );
+	        desc12.putInteger( id59, 0 );
+	        var id60 = charIDToTypeID( "DCUI" );
+	        desc12.putInteger( id60, 0 );
+	        var id61 = charIDToTypeID( "DChT" );
+	        desc12.putBoolean( id61, false );
+	        var id62 = charIDToTypeID( "DChV" );
+	        desc12.putBoolean( id62, false );
+	        var id63 = charIDToTypeID( "WebS" );
+	        desc12.putInteger( id63, 0 );
+	        var id64 = charIDToTypeID( "TDth" );
+	        var id65 = charIDToTypeID( "IRDt" );
+	        var id66 = charIDToTypeID( "None" );
+	        desc12.putEnumerated( id64, id65, id66 );
+	        var id67 = charIDToTypeID( "TDtA" );
+	        desc12.putInteger( id67, 100 );
+	        var id68 = charIDToTypeID( "Loss" );
+	        desc12.putInteger( id68, 0 );
+	        var id69 = charIDToTypeID( "LChS" );
+	        desc12.putInteger( id69, 0 );
+	        var id70 = charIDToTypeID( "LCUI" );
+	        desc12.putInteger( id70, 100 );
+	        var id71 = charIDToTypeID( "LChT" );
+	        desc12.putBoolean( id71, false );
+	        var id72 = charIDToTypeID( "LChV" );
+	        desc12.putBoolean( id72, false );
+	        var id73 = charIDToTypeID( "Trns" );
+	        desc12.putBoolean( id73, false );
+	        var id74 = charIDToTypeID( "Mtt " );
+	        desc12.putBoolean( id74, true );
+	        var id75 = charIDToTypeID( "MttR" );
+	        desc12.putInteger( id75, 255 );
+	        var id76 = charIDToTypeID( "MttG" );
+	        desc12.putInteger( id76, 255 );
+	        var id77 = charIDToTypeID( "MttB" );
+	        desc12.putInteger( id77, 255 );
+	        var id78 = charIDToTypeID( "HScl" );
+	        var id79 = charIDToTypeID( "#Prc" );
+	        desc12.putUnitDouble( id78, id79, 25.000000 );
+	        var id80 = charIDToTypeID( "VScl" );
+	        var id81 = charIDToTypeID( "#Prc" );
+	        desc12.putUnitDouble( id80, id81, 24.902724 );
+	        var id82 = charIDToTypeID( "SHTM" );
+	        desc12.putBoolean( id82, false );
+	        var id83 = charIDToTypeID( "SImg" );
+	        desc12.putBoolean( id83, true );
+	        var id84 = charIDToTypeID( "SSSO" );
+	        desc12.putBoolean( id84, false );
+	        var id85 = charIDToTypeID( "SSLt" );
+	            var list1 = new ActionList();
+	        desc12.putList( id85, list1 );
+	        var id86 = charIDToTypeID( "DIDr" );
+	        desc12.putBoolean( id86, false );
+	        var id87 = charIDToTypeID( "In  " );
+	        desc12.putPath( id87, new File( fsPath ) );
+	    var id88 = stringIDToTypeID( "SaveForWeb" );
+	    desc11.putObject( id40, id88, desc12 );
+	executeAction( id39, desc11, DialogModes.NO );
+	
+}
\ No newline at end of file
diff --git a/profiles.zcml b/profiles.zcml
new file mode 100644
index 0000000..3c6d24c
--- /dev/null
+++ b/profiles.zcml
@@ -0,0 +1,13 @@
+<configure
+    xmlns="http://namespaces.zope.org/zope"
+    xmlns:genericsetup="http://namespaces.zope.org/genericsetup"
+    i18n_domain="plinn">
+
+  <genericsetup:registerProfile
+      name="default"
+      title="Plinn default site"
+      description="Profile for a default Plinn site."
+      for="Products.CMFCore.interfaces.ISiteRoot"
+      />
+
+</configure>
diff --git a/profiles/default/actions.xml b/profiles/default/actions.xml
new file mode 100644
index 0000000..dd9f41b
--- /dev/null
+++ b/profiles/default/actions.xml
@@ -0,0 +1,221 @@
+<?xml version="1.0"?>
+<object name="portal_actions" meta_type="CMF Actions Tool"
+   xmlns:i18n="http://xml.zope.org/namespaces/i18n">
+ <action-provider name="portal_types"/>
+ <action-provider name="portal_workflow"/>
+ <action-provider name="portal_actions"/>
+ <action-provider name="portal_calendar"/>
+ <object name="user" meta_type="CMF Action Category">
+  <property name="title"></property>
+  <object name="login" meta_type="CMF Action" i18n:domain="cmf_default">
+   <property name="title" i18n:translate="">Login</property>
+   <property name="description" i18n:translate=""></property>
+   <property name="url_expr">string:${portal_url}/login_form</property>
+   <property name="icon_expr"></property>
+   <property name="available_expr">not: member</property>
+   <property name="permissions">
+    <element value="View"/>
+   </property>
+   <property name="visible">True</property>
+  </object>
+  <object name="mystuff" meta_type="CMF Action" i18n:domain="cmf_default">
+   <property name="title" i18n:translate="">My stuff</property>
+   <property name="description" i18n:translate=""></property>
+   <property
+      name="url_expr">string:${portal/portal_membership/getHomeUrl}/folder_contents</property>
+   <property name="icon_expr"></property>
+   <property
+      name="available_expr">python: member and portal.portal_membership.getHomeFolder()</property>
+   <property name="permissions">
+    <element value="View"/>
+   </property>
+   <property name="visible">True</property>
+  </object>
+  <object name="addFavorite" meta_type="CMF Action" i18n:domain="cmf_default">
+   <property name="title" i18n:translate="">Add to favorites</property>
+   <property name="description" i18n:translate=""></property>
+   <property name="url_expr">string:${object_url}/addtoFavorites</property>
+   <property name="icon_expr"></property>
+   <property
+      name="available_expr">portal/portal_membership/getHomeFolder</property>
+   <property name="permissions">
+    <element value="View"/>
+   </property>
+   <property name="visible">False</property>
+  </object>
+  <object name="favorites" meta_type="CMF Action" i18n:domain="cmf_default">
+   <property name="title" i18n:translate="">My favorites</property>
+   <property name="description" i18n:translate=""></property>
+   <property
+      name="url_expr">string:${portal/portal_membership/getHomeUrl}/Favorites/folder_contents</property>
+   <property name="icon_expr"></property>
+   <property
+      name="available_expr">python: member and hasattr(portal.portal_membership.getHomeFolder(), "Favorites")</property>
+   <property name="permissions">
+    <element value="View"/>
+   </property>
+   <property name="visible">False</property>
+  </object>
+  <object name="preferences" meta_type="CMF Action" i18n:domain="cmf_default">
+   <property name="title" i18n:translate="">Preferences</property>
+   <property name="description" i18n:translate=""></property>
+   <property name="url_expr">string:${portal_url}/personalize_form</property>
+   <property name="icon_expr"></property>
+   <property name="available_expr">member</property>
+   <property name="permissions">
+    <element value="View"/>
+   </property>
+   <property name="visible">True</property>
+  </object>
+  <object name="logout" meta_type="CMF Action" i18n:domain="cmf_default">
+   <property name="title" i18n:translate="">Log out</property>
+   <property name="description" i18n:translate=""></property>
+   <property name="url_expr">string:${portal_url}/logout?noajax=1</property>
+   <property name="icon_expr"></property>
+   <property name="available_expr">member</property>
+   <property name="permissions">
+    <element value="View"/>
+   </property>
+   <property name="visible">True</property>
+  </object>
+  <object name="logged_in" meta_type="CMF Action" i18n:domain="cmf_default">
+   <property name="title" i18n:translate="">Logged in</property>
+   <property name="description" i18n:translate=""></property>
+   <property name="url_expr">string:${portal_url}/index_html</property>
+   <property name="icon_expr"></property>
+   <property name="available_expr"></property>
+   <property name="permissions">
+    <element value="View"/>
+   </property>
+   <property name="visible">False</property>
+  </object>
+  <object name="join" meta_type="CMF Action" i18n:domain="cmf_default">
+   <property name="title" i18n:translate="">Join</property>
+   <property name="description" i18n:translate=""></property>
+   <property name="url_expr">string:${portal_url}/join_form</property>
+   <property name="icon_expr"></property>
+   <property name="available_expr">not: member</property>
+   <property name="permissions">
+    <element value="Add portal member"/>
+   </property>
+   <property name="visible">True</property>
+  </object>
+ </object>
+ <object name="folder" meta_type="CMF Action Category">
+  <property name="title"></property>
+  <object name="folderContents" meta_type="CMF Action" i18n:domain="plinn">
+   <property name="title" i18n:translate="">List</property>
+   <property name="description" i18n:translate=""></property>
+   <property name="url_expr">string:${folder_url}/folder_contents</property>
+   <property name="icon_expr"></property>
+   <property
+      name="available_expr">python:member and folder is not object and object.portal_type !='Event'</property>
+   <property name="permissions">
+    <element value="List folder contents"/>
+   </property>
+   <property name="visible">True</property>
+  </object>
+ </object>
+ <object name="global" meta_type="CMF Action Category">
+  <property name="title"></property>
+  <object name="manage_boxes" meta_type="CMF Action" i18n:domain="plinn">
+   <property name="title" i18n:translate="">Manage Boxes</property>
+   <property name="description" i18n:translate=""></property>
+   <property
+      name="url_expr">string:${portal_url}/manage_boxes?noajax=1</property>
+   <property name="icon_expr"></property>
+   <property name="available_expr"></property>
+   <property name="permissions">
+    <element value="Manage portal"/>
+   </property>
+   <property name="visible">True</property>
+  </object>
+  <object name="send_email" meta_type="CMF Action" i18n:domain="plinn">
+   <property name="title" i18n:translate="">Send an email</property>
+   <property name="description" i18n:translate=""></property>
+   <property name="url_expr">string:${object_url}/send_email_form</property>
+   <property name="icon_expr"></property>
+   <property name="available_expr">member</property>
+   <property name="permissions">
+    <element value="View"/>
+   </property>
+   <property name="visible">True</property>
+  </object>
+  <object name="undo" meta_type="CMF Action" i18n:domain="cmf_default">
+   <property name="title" i18n:translate="">Undo</property>
+   <property name="description" i18n:translate=""></property>
+   <property name="url_expr">string:${portal_url}/undo_form</property>
+   <property name="icon_expr"></property>
+   <property name="available_expr">member</property>
+   <property name="permissions">
+    <element value="List undoable changes"/>
+   </property>
+   <property name="visible">True</property>
+  </object>
+  <object name="configPortal" meta_type="CMF Action" i18n:domain="plinn">
+   <property name="title" i18n:translate="">Configure Portal</property>
+   <property name="description" i18n:translate=""></property>
+   <property name="url_expr">string:${portal_url}/reconfig_form</property>
+   <property name="icon_expr"></property>
+   <property name="available_expr"></property>
+   <property name="permissions">
+    <element value="Manage portal"/>
+   </property>
+   <property name="visible">True</property>
+  </object>
+  <object name="manage_direcories" meta_type="CMF Action" i18n:domain="plinn">
+   <property name="title" i18n:translate="">Directory</property>
+   <property name="description" i18n:translate=""></property>
+   <property name="url_expr">string:${portal_url}/groups_members</property>
+   <property name="icon_expr"></property>
+   <property name="available_expr"></property>
+   <property name="permissions">
+    <element value="Manage Groups"/>
+   </property>
+   <property name="visible">True</property>
+  </object>
+ </object>
+ <object name="discussion" meta_type="CMF Action Category">
+  <property name="title"></property>
+  <object name="reply" meta_type="CMF Action" i18n:domain="plinn">
+   <property name="title" i18n:translate="">Add comment...</property>
+   <property name="description" i18n:translate=""></property>
+   <property
+      name="url_expr">string:${object_url}/discussion_reply_form</property>
+   <property name="icon_expr"></property>
+   <property
+      name="available_expr">python: object is not None and object.meta_type != 'Discussion Item' and portal.portal_discussion.isDiscussionAllowedFor(object)</property>
+   <property name="permissions">
+    <element value="Reply to item"/>
+   </property>
+   <property name="visible">True</property>
+  </object>
+ </object>
+ <object name="object" meta_type="CMF Action Category">
+  <property name="title"></property>
+  <object name="noajax" meta_type="CMF Action" i18n:domain="cmf_default">
+   <property name="title" i18n:translate="">Syndicate</property>
+   <property name="description" i18n:translate=""></property>
+   <property name="url_expr">string:${folder_url}/synPropertiesForm</property>
+   <property name="icon_expr"></property>
+   <property
+      name="available_expr">python: folder is object and portal.portal_syndication.isSiteSyndicationAllowed()</property>
+   <property name="permissions">
+    <element value="Manage properties"/>
+   </property>
+   <property name="visible">True</property>
+  </object>
+  <object name="calendar_view" meta_type="CMF Action" i18n:domain="plinn">
+   <property name="title" i18n:translate="">Calendar View</property>
+   <property name="description" i18n:translate=""></property>
+   <property name="url_expr">string:${folder_url}/calendar_view</property>
+   <property name="icon_expr"></property>
+   <property
+      name="available_expr">python:member and folder is object and object.portal_type in ['Plinn Folder', 'Portfolio']</property>
+   <property name="permissions">
+    <element value="List folder contents"/>
+   </property>
+   <property name="visible">True</property>
+  </object>
+ </object>
+</object>
diff --git a/profiles/default/cachingpolicymgr.xml b/profiles/default/cachingpolicymgr.xml
new file mode 100644
index 0000000..098e911
--- /dev/null
+++ b/profiles/default/cachingpolicymgr.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0"?>
+<object name="caching_policy_manager" meta_type="CMF Caching Policy Manager">
+ <caching-policy name="ie_ajax" enable_304s="False" etag_func=""
+    last_modified="True" max_age_secs="0" mtime_func="object/modified"
+    must_revalidate="True" no_cache="True" no_store="True"
+    no_transform="False"
+    predicate="python:request['HTTP_USER_AGENT'].lower().find('msie') != -1 and request.get('ajax')"
+    private="False" proxy_revalidate="False" public="False" vary=""/>
+ <caching-policy name="ie_use_macro" enable_304s="False" etag_func=""
+    last_modified="True" max_age_secs="0" mtime_func="object/modified"
+    must_revalidate="True" no_cache="True" no_store="True"
+    no_transform="False"
+    predicate="python:request['HTTP_USER_AGENT'].lower().find('msie') != -1 and view == 'use_macro'"
+    private="False" proxy_revalidate="False" public="False" vary=""/>
+ <caching-policy name="ie_plinnDocumentXMLBody" enable_304s="False"
+    etag_func="" last_modified="True" max_age_secs="0"
+    mtime_func="object/modified" must_revalidate="True" no_cache="True"
+    no_store="True" no_transform="False"
+    predicate="python:request['HTTP_USER_AGENT'].lower().find('msie') != -1 and view == 'XMLBody'"
+    private="False" proxy_revalidate="False" public="False" vary=""/>
+</object>
diff --git a/profiles/default/catalog.xml b/profiles/default/catalog.xml
new file mode 100644
index 0000000..2ce7d81
--- /dev/null
+++ b/profiles/default/catalog.xml
@@ -0,0 +1,113 @@
+<?xml version="1.0"?>
+<object name="portal_catalog" meta_type="CMF Catalog">
+ <property name="title"></property>
+ <object name="htmltext_lexicon" meta_type="ZCTextIndex Lexicon">
+  <element name="UTF-8 HTML Aware splitter with accents removal"
+     group="Word Splitter"/>
+  <element name="Case Normalizer" group="Case Normalizer"/>
+ </object>
+ <object name="plaintext_lexicon" meta_type="ZCTextIndex Lexicon">
+  <element name="UTF-8 Whitespace splitter with accents removal"
+     group="Word Splitter"/>
+  <element name="Case Normalizer" group="Case Normalizer"/>
+ </object>
+ <index name="Creator" meta_type="FieldIndex">
+  <indexed_attr value="Creator"/>
+ </index>
+ <index name="Date" meta_type="DateIndex">
+  <property name="index_naive_time_as_local">True</property>
+ </index>
+ <index name="DateTimeOriginal" meta_type="DateIndex">
+  <property name="index_naive_time_as_local">False</property>
+ </index>
+ <index name="Description" meta_type="ZCTextIndex">
+  <indexed_attr value="Description"/>
+  <extra name="index_type" value="Okapi BM25 Rank"/>
+  <extra name="lexicon_id" value="plaintext_lexicon"/>
+ </index>
+ <index name="SearchableText" meta_type="ZCTextIndex">
+  <indexed_attr value="SearchableText"/>
+  <extra name="index_type" value="Okapi BM25 Rank"/>
+  <extra name="lexicon_id" value="htmltext_lexicon"/>
+ </index>
+ <index name="Subject" meta_type="KeywordIndex">
+  <indexed_attr value="Subject"/>
+ </index>
+ <index name="Title" meta_type="ZCTextIndex">
+  <indexed_attr value="Title"/>
+  <extra name="index_type" value="Okapi BM25 Rank"/>
+  <extra name="lexicon_id" value="plaintext_lexicon"/>
+ </index>
+ <index name="Type" meta_type="FieldIndex">
+  <indexed_attr value="Type"/>
+ </index>
+ <index name="allowedRolesAndUsers" meta_type="KeywordIndex">
+  <indexed_attr value="allowedRolesAndUsers"/>
+ </index>
+ <index name="created" meta_type="DateIndex">
+  <property name="index_naive_time_as_local">True</property>
+ </index>
+ <index name="effective" meta_type="DateIndex">
+  <property name="index_naive_time_as_local">True</property>
+ </index>
+ <index name="end" meta_type="DateIndex">
+  <property name="index_naive_time_as_local">True</property>
+ </index>
+ <index name="expires" meta_type="DateIndex">
+  <property name="index_naive_time_as_local">True</property>
+ </index>
+ <index name="fTitle" meta_type="FieldIndex">
+  <indexed_attr value="Title"/>
+ </index>
+ <index name="getId" meta_type="FieldIndex">
+  <indexed_attr value="getId"/>
+ </index>
+ <index name="getMemberFullName" meta_type="FieldIndex">
+  <indexed_attr value="getMemberFullName"/>
+ </index>
+ <index name="getMemberSortableFormat" meta_type="FieldIndex">
+  <indexed_attr value="getMemberSortableFormat"/>
+ </index>
+ <index name="in_reply_to" meta_type="FieldIndex">
+  <indexed_attr value="in_reply_to"/>
+ </index>
+ <index name="listCreators" meta_type="KeywordIndex">
+  <indexed_attr value="listCreators"/>
+ </index>
+ <index name="modified" meta_type="DateIndex">
+  <property name="index_naive_time_as_local">True</property>
+ </index>
+ <index name="path" meta_type="PathIndex"/>
+ <index name="portal_type" meta_type="FieldIndex">
+  <indexed_attr value="portal_type"/>
+ </index>
+ <index name="review_state" meta_type="FieldIndex">
+  <indexed_attr value="review_state"/>
+ </index>
+ <index name="start" meta_type="DateIndex">
+  <property name="index_naive_time_as_local">True</property>
+ </index>
+ <column value="CreationDate"/>
+ <column value="Date"/>
+ <column value="DateTimeOriginal"/>
+ <column value="Description"/>
+ <column value="EffectiveDate"/>
+ <column value="ExpirationDate"/>
+ <column value="ModificationDate"/>
+ <column value="Subject"/>
+ <column value="Title"/>
+ <column value="Type"/>
+ <column value="created"/>
+ <column value="effective"/>
+ <column value="end"/>
+ <column value="expires"/>
+ <column value="getIcon"/>
+ <column value="getId"/>
+ <column value="getMemberFullName"/>
+ <column value="getMemberSortableFormat"/>
+ <column value="listCreators"/>
+ <column value="modified"/>
+ <column value="portal_type"/>
+ <column value="review_state"/>
+ <column value="start"/>
+</object>
diff --git a/profiles/default/componentregistry.xml b/profiles/default/componentregistry.xml
new file mode 100644
index 0000000..3aa9107
--- /dev/null
+++ b/profiles/default/componentregistry.xml
@@ -0,0 +1,29 @@
+<?xml version="1.0"?>
+<componentregistry>
+ <adapters/>
+ <utilities>
+  <utility interface="Products.CMFCore.interfaces.IDiscussionTool"
+     object="portal_discussion"/>
+  <utility interface="Products.CMFCore.interfaces.IMetadataTool"
+     object="portal_metadata"/>
+  <utility interface="Products.CMFCore.interfaces.IPropertiesTool"
+     object="portal_properties"/>
+  <utility interface="Products.CMFCore.interfaces.ISiteRoot" object=""/>
+  <utility interface="Products.CMFCore.interfaces.ISyndicationTool"
+     object="portal_syndication"/>
+  <utility interface="Products.CMFCore.interfaces.IUndoTool"
+     object="portal_undo"/>
+  <utility interface="Products.GenericSetup.interfaces.ISetupTool"
+     object="portal_setup"/>
+  <utility interface="Products.MailHost.interfaces.IMailHost"
+     object="MailHost"/>
+  <utility
+     interface="Products.CMFUid.interfaces.IUniqueIdGenerator"
+     object="portal_uidgenerator"/>
+  <utility
+     interface="Products.CMFUid.interfaces.IUniqueIdAnnotationManagement"
+     object="portal_uidannotation"/>
+  <utility interface="Products.CMFCore.interfaces.ICatalogTool"
+     object="portal_catalog"/>
+ </utilities>
+</componentregistry>
diff --git a/profiles/default/contenttyperegistry.xml b/profiles/default/contenttyperegistry.xml
new file mode 100644
index 0000000..5306349
--- /dev/null
+++ b/profiles/default/contenttyperegistry.xml
@@ -0,0 +1,24 @@
+<?xml version="1.0"?>
+<object name="content_type_registry" meta_type="Content Type Registry">
+ <predicate name="link" content_type_name="Link" predicate_type="extension">
+  <argument value="url,link"/>
+ </predicate>
+ <predicate name="news" content_type_name="News Item"
+    predicate_type="extension">
+  <argument value="news"/>
+ </predicate>
+ <predicate name="document" content_type_name="Document"
+    predicate_type="major_minor">
+  <argument value="text"/>
+  <argument value=""/>
+ </predicate>
+ <predicate name="photo" content_type_name="Photo"
+    predicate_type="major_minor">
+  <argument value="image"/>
+  <argument value=""/>
+ </predicate>
+ <predicate name="file" content_type_name="File" predicate_type="major_minor">
+  <argument value="application"/>
+  <argument value=""/>
+ </predicate>
+</object>
diff --git a/profiles/default/cookieauth.xml b/profiles/default/cookieauth.xml
new file mode 100644
index 0000000..6c64558
--- /dev/null
+++ b/profiles/default/cookieauth.xml
@@ -0,0 +1,13 @@
+<?xml version="1.0"?>
+<object name="cookie_authentication" meta_type="Cookie Crumbler">
+ <property name="auth_cookie">__ac</property>
+ <property name="name_cookie">__ac_name</property>
+ <property name="pw_cookie">__ac_password</property>
+ <property name="persist_cookie">__ac_persistent</property>
+ <property name="auto_login_page">login_form</property>
+ <property name="logout_page">logged_out</property>
+ <property name="unauth_page"></property>
+ <property name="local_cookie_path">False</property>
+ <property name="cache_header_value">private</property>
+ <property name="log_username">True</property>
+</object>
diff --git a/profiles/default/export_steps.xml b/profiles/default/export_steps.xml
new file mode 100644
index 0000000..98969f3
--- /dev/null
+++ b/profiles/default/export_steps.xml
@@ -0,0 +1,138 @@
+<?xml version="1.0"?>
+<export-steps>
+ <export-step id="actions"
+              handler="Products.CMFCore.exportimport.actions.exportActionProviders"
+              title="Action Providers">
+  
+  
+  Export actions tool's action providers and their actions.
+ 
+ 
+ </export-step>
+ <export-step id="caching_policy_mgr"
+              handler="Products.CMFCore.exportimport.cachingpolicymgr.exportCachingPolicyManager"
+              title="Caching Policies">
+  
+  
+  Export caching policy manager's policies.
+ 
+ 
+ </export-step>
+ <export-step id="catalog"
+              handler="Products.CMFCore.exportimport.catalog.exportCatalogTool"
+              title="Catalog Tool">
+  
+  
+  Export catalog tool's sub-objects, indexes and columns.
+ 
+ 
+ </export-step>
+ <export-step id="componentregistry"
+              handler="Products.GenericSetup.components.exportComponentRegistry"
+              title="Local Component Registry">
+  
+  
+    Export local component registry configuration.
+ 
+ 
+ </export-step>
+ <export-step id="content_type_registry"
+              handler="Products.CMFCore.exportimport.contenttyperegistry.exportContentTypeRegistry"
+              title="Content Type Registry">
+  
+  
+  Export content type registry's predicates / bindings.
+ 
+ 
+ </export-step>
+ <export-step id="cookieauth"
+              handler="Products.CMFCore.exportimport.cookieauth.exportCookieCrumbler"
+              title="Cookie Authentication">
+  
+  
+  Export cookie crumbler settings
+ 
+ 
+ </export-step>
+ <export-step id="mailhost"
+              handler="Products.CMFCore.exportimport.mailhost.exportMailHost"
+              title="MailHost">
+  
+  
+  Export the mailhost's settings and properties
+ 
+ 
+ </export-step>
+ <export-step id="properties"
+              handler="Products.CMFCore.exportimport.properties.exportSiteProperties"
+              title="Site Properties">
+  
+  
+  Export site properties.
+ 
+ 
+ </export-step>
+ <export-step id="rolemap"
+              handler="Products.GenericSetup.rolemap.exportRolemap"
+              title="Role / Permission Map">
+  
+  
+  Export custom roles and non-default role-permission mappings.
+ 
+ 
+ </export-step>
+ <export-step id="skins"
+              handler="Products.CMFCore.exportimport.skins.exportSkinsTool"
+              title="Skins Tool">
+  
+  
+  Export skins tool's filesystem directory views and skin path definitions.
+ 
+ 
+ </export-step>
+ <export-step id="step_registries"
+              handler="Products.GenericSetup.tool.exportStepRegistries"
+              title="Step Registries">
+  
+  
+  Export current contents of import step registry and export step registry.
+ 
+ 
+ </export-step>
+ <export-step id="toolset"
+              handler="Products.GenericSetup.tool.exportToolset"
+              title="Required Tools">
+  
+  
+  Export required / forbidden tools.
+ 
+ 
+ </export-step>
+ <export-step id="typeinfo"
+              handler="Products.CMFCore.exportimport.typeinfo.exportTypesTool"
+              title="Types Tool">
+  
+  
+  Export types tool's type information objects.
+ 
+ 
+ </export-step>
+ <export-step id="various-plinn-settings"
+              handler="Products.Plinn.setuphandlers.exportVarious"
+              title="Various Plinn settings">
+  
+  
+  Export various plinn settings as python script.
+ 
+ 
+ </export-step>
+ <export-step id="workflows"
+              handler="Products.CMFCore.exportimport.workflow.exportWorkflowTool"
+              title="Workflow Tool">
+  
+  
+  Export workflow tool's workflow definitions and supporting scripts.
+ 
+ 
+ </export-step>
+</export-steps>
diff --git a/profiles/default/import_steps.xml b/profiles/default/import_steps.xml
new file mode 100644
index 0000000..98d585a
--- /dev/null
+++ b/profiles/default/import_steps.xml
@@ -0,0 +1,186 @@
+<?xml version="1.0"?>
+<import-steps>
+ <import-step id="actions" version="20071112-01"
+              handler="Products.CMFCore.exportimport.actions.importActionProviders"
+              title="Action Providers">
+  <dependency step="componentregistry"/>
+  
+  
+  
+  
+  Import actions tool's action providers and their actions.
+ 
+ 
+ </import-step>
+ <import-step id="caching_policy_mgr" version="20051011-01"
+              handler="Products.CMFCore.exportimport.cachingpolicymgr.importCachingPolicyManager"
+              title="Caching Policies">
+  <dependency step="toolset"/>
+  
+  
+  
+  
+  Import caching policy manager's policies.
+ 
+ 
+ </import-step>
+ <import-step id="catalog" version="20071112-01"
+              handler="Products.CMFCore.exportimport.catalog.importCatalogTool"
+              title="Catalog Tool">
+  <dependency step="toolset"/>
+  
+  
+  
+  
+  Import catalog tool's sub-objects, indexes and columns.
+ 
+ 
+ </import-step>
+ <import-step id="componentregistry" version="20061025-01"
+              handler="Products.GenericSetup.components.importComponentRegistry"
+              title="Local Component Registry">
+  
+  
+  
+  Import local component registry configuration.
+ 
+ 
+ </import-step>
+ <import-step id="content_type_registry"
+              version="20071112-01"
+              handler="Products.CMFCore.exportimport.contenttyperegistry.importContentTypeRegistry"
+              title="Content Type Registry">
+  <dependency step="componentregistry"/>
+  
+  
+  
+  
+  Import content type registry's predicates and bindings.
+ 
+ 
+ </import-step>
+ <import-step id="cookie_authentication"
+              version="20071112-01"
+              handler="Products.CMFCore.exportimport.cookieauth.importCookieCrumbler"
+              title="Cookie Authentication">
+  <dependency step="toolset"/>
+  
+  
+  
+  
+  Import cookie crumbler settings
+ 
+ 
+ </import-step>
+ <import-step id="mailhost" version="20071112-01"
+              handler="Products.CMFCore.exportimport.mailhost.importMailHost"
+              title="MailHost">
+  <dependency step="componentregistry"/>
+  <dependency step="toolset"/>
+  
+  
+  
+  
+  
+  
+  Import mailhost settings
+ 
+ 
+ </import-step>
+ <import-step id="properties" version="20071112-01"
+              handler="Products.CMFCore.exportimport.properties.importSiteProperties"
+              title="Site Properties">
+  
+  
+  Import site properties.
+ 
+ 
+ </import-step>
+ <import-step id="rolemap" version="20071112-01"
+              handler="Products.GenericSetup.rolemap.importRolemap"
+              title="Role / Permission Map">
+  
+  
+  Import custom roles and non-default role-permission mappings.
+ 
+ 
+ </import-step>
+ <import-step id="skins" version="20071112-01"
+              handler="Products.CMFCore.exportimport.skins.importSkinsTool"
+              title="Skins Tool">
+  <dependency step="componentregistry"/>
+  
+  
+  
+  
+  Import skins tool's filesystem directory views and skin path definitions.
+ 
+ 
+ </import-step>
+ <import-step id="toolset" version="20071112-01"
+              handler="Products.GenericSetup.tool.importToolset"
+              title="Required tools">
+  
+  
+  Create required tools, replacing any of the wrong class, and remove
+  forbidden ones.
+ 
+ 
+ </import-step>
+ <import-step id="typeinfo" version="20071112-01"
+              handler="Products.CMFCore.exportimport.typeinfo.importTypesTool"
+              title="Types Tool">
+  <dependency step="toolset"/>
+  
+  
+  
+  
+  Import types tool's type information objects.
+ 
+ 
+ </import-step>
+ <import-step id="various-calendar" version="20050316-01"
+              handler="Products.CMFCalendar.setuphandlers.importVarious"
+              title="Various Calendar Settings">
+  <dependency step="componentregistry"/>
+  <dependency step="toolset"/>
+  
+  
+  
+  
+  
+  Import various settings for CMF Calendar.
+  
+ 
+ </import-step>
+ <import-step id="various-plinn-settings"
+              version="20060112-01"
+              handler="Products.Plinn.setuphandlers.importVarious"
+              title="Various Plinn settings">
+  <dependency step="skins"/>
+  <dependency step="toolset"/>
+  <dependency step="typeinfo"/>
+  <dependency step="workflow"/>
+  
+  
+  
+  
+  
+  
+  Import various settings from Plinn products.
+  
+ 
+ </import-step>
+ <import-step id="workflow" version="20071112-01"
+              handler="Products.CMFCore.exportimport.workflow.importWorkflowTool"
+              title="Workflow Tool">
+  <dependency step="toolset"/>
+  
+  
+  
+  
+  Import workflow tool's workflow definitions and supporting scripts.
+ 
+ 
+ </import-step>
+</import-steps>
diff --git a/profiles/default/mailhost.xml b/profiles/default/mailhost.xml
new file mode 100644
index 0000000..b00cae5
--- /dev/null
+++ b/profiles/default/mailhost.xml
@@ -0,0 +1,3 @@
+<?xml version="1.0"?>
+<object name="MailHost" meta_type="Mail Host" smtp_host="localhost"
+   smtp_port="25" smtp_pwd="" smtp_uid=""/>
diff --git a/profiles/default/mosaic_tool/types.xml b/profiles/default/mosaic_tool/types.xml
new file mode 100644
index 0000000..9ae3830
--- /dev/null
+++ b/profiles/default/mosaic_tool/types.xml
@@ -0,0 +1,14 @@
+<?xml version="1.0"?>
+<object name="mosaic_tool" meta_type="Mosaic Tool">
+ <property name="title"></property>
+ <object name="Action Box Block" meta_type="Mosaic Block Information"/>
+ <object name="Container Block" meta_type="Mosaic Block Information"/>
+ <object name="File Block" meta_type="Mosaic Block Information"/>
+ <object name="Image Block" meta_type="Mosaic Block Information"/>
+ <object name="Mosaic Document" meta_type="Mosaic Block Information"/>
+ <object name="Section Block" meta_type="Mosaic Block Information"/>
+ <object name="Spacer Block" meta_type="Mosaic Block Information"/>
+ <object name="Text Block" meta_type="Mosaic Block Information"/>
+ <object name="Tree Box Block" meta_type="Mosaic Block Information"/>
+ <object name="Two Images Block" meta_type="Mosaic Block Information"/>
+</object>
diff --git a/profiles/default/mosaic_tool/types/Action_Box_Block.xml b/profiles/default/mosaic_tool/types/Action_Box_Block.xml
new file mode 100644
index 0000000..01dda2d
--- /dev/null
+++ b/profiles/default/mosaic_tool/types/Action_Box_Block.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0"?>
+<object name="Action Box Block" meta_type="Mosaic Block Information"
+   xmlns:i18n="http://xml.zope.org/namespaces/i18n">
+ <property name="title">Action Box Block</property>
+ <property name="description"></property>
+ <property name="content_icon">mosaic_tool/action_block_icon.gif</property>
+ <property name="content_meta_type">Action Box Block</property>
+ <property name="template">mosaic_tool/action_block_template</property>
+ <property name="notify_wf">False</property>
+ <property name="product">MosaicDocument</property>
+ <property name="factory">addMosaicBlock</property>
+ <property name="immediate_view">view</property>
+ <property name="global_allow">True</property>
+ <property name="filter_content_types">True</property>
+ <property name="allowed_content_types"/>
+ <property name="allow_discussion">False</property>
+ <action title="view" action_id="view" category="object" condition_expr=""
+    url_expr="string:${object_url}/view" visible="True">
+  <permission value="View"/>
+ </action>
+</object>
diff --git a/profiles/default/mosaic_tool/types/Container_Block.xml b/profiles/default/mosaic_tool/types/Container_Block.xml
new file mode 100644
index 0000000..45d87d3
--- /dev/null
+++ b/profiles/default/mosaic_tool/types/Container_Block.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0"?>
+<object name="Container Block" meta_type="Mosaic Block Information"
+   xmlns:i18n="http://xml.zope.org/namespaces/i18n">
+ <property name="title">Container block</property>
+ <property name="description"></property>
+ <property name="content_icon">mosaic_tool/image_block_icon.gif</property>
+ <property name="content_meta_type">Container Block</property>
+ <property name="template">mosaic_tool/block_container_template</property>
+ <property name="notify_wf">True</property>
+ <property name="product">MosaicDocument</property>
+ <property name="factory">addMosaicBlock</property>
+ <property name="immediate_view">view</property>
+ <property name="global_allow">True</property>
+ <property name="filter_content_types">True</property>
+ <property name="allowed_content_types"/>
+ <property name="allow_discussion">False</property>
+ <action title="view" action_id="view" category="object" condition_expr=""
+    url_expr="string:${object_url}/view" visible="True">
+  <permission value="View"/>
+ </action>
+</object>
diff --git a/profiles/default/mosaic_tool/types/File_Block.xml b/profiles/default/mosaic_tool/types/File_Block.xml
new file mode 100644
index 0000000..525734c
--- /dev/null
+++ b/profiles/default/mosaic_tool/types/File_Block.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0"?>
+<object name="File Block" meta_type="Mosaic Block Information"
+   xmlns:i18n="http://xml.zope.org/namespaces/i18n">
+ <property name="title">File Block</property>
+ <property name="description"></property>
+ <property name="content_icon">mosaic_tool/image_block_icon.gif</property>
+ <property name="content_meta_type">File Block</property>
+ <property name="template">mosaic_tool/block_file_template</property>
+ <property name="notify_wf">False</property>
+ <property name="product">MosaicDocument</property>
+ <property name="factory">addMosaicBlock</property>
+ <property name="immediate_view">view</property>
+ <property name="global_allow">True</property>
+ <property name="filter_content_types">True</property>
+ <property name="allowed_content_types"/>
+ <property name="allow_discussion">False</property>
+ <action title="view" action_id="view" category="object" condition_expr=""
+    url_expr="string:${object_url}/view" visible="True">
+  <permission value="View"/>
+ </action>
+</object>
diff --git a/profiles/default/mosaic_tool/types/Image_Block.xml b/profiles/default/mosaic_tool/types/Image_Block.xml
new file mode 100644
index 0000000..204db1d
--- /dev/null
+++ b/profiles/default/mosaic_tool/types/Image_Block.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0"?>
+<object name="Image Block" meta_type="Mosaic Block Information"
+   xmlns:i18n="http://xml.zope.org/namespaces/i18n">
+ <property name="title">Image block</property>
+ <property name="description"></property>
+ <property name="content_icon">mosaic_tool/image_block_icon.gif</property>
+ <property name="content_meta_type">Image Block</property>
+ <property name="template">mosaic_tool/block_image_template</property>
+ <property name="notify_wf">False</property>
+ <property name="product">MosaicDocument</property>
+ <property name="factory">addMosaicBlock</property>
+ <property name="immediate_view">view</property>
+ <property name="global_allow">True</property>
+ <property name="filter_content_types">True</property>
+ <property name="allowed_content_types"/>
+ <property name="allow_discussion">False</property>
+ <action title="view" action_id="view" category="object" condition_expr=""
+    url_expr="string:${object_url}/view" visible="True">
+  <permission value="View"/>
+ </action>
+</object>
diff --git a/profiles/default/mosaic_tool/types/Mosaic_Document.xml b/profiles/default/mosaic_tool/types/Mosaic_Document.xml
new file mode 100644
index 0000000..d855369
--- /dev/null
+++ b/profiles/default/mosaic_tool/types/Mosaic_Document.xml
@@ -0,0 +1,28 @@
+<?xml version="1.0"?>
+<object name="Mosaic Document" meta_type="Mosaic Block Information"
+   xmlns:i18n="http://xml.zope.org/namespaces/i18n">
+ <property name="title">Mosaic Document</property>
+ <property name="description"></property>
+ <property name="content_icon">mosaic_icon.png</property>
+ <property name="content_meta_type">Mosaic Document</property>
+ <property name="template"></property>
+ <property name="notify_wf">True</property>
+ <property name="product">MosaicDocument</property>
+ <property name="factory">addMosaicDocument</property>
+ <property name="immediate_view">metadata_edit_form</property>
+ <property name="global_allow">True</property>
+ <property name="filter_content_types">False</property>
+ <property name="allowed_content_types"/>
+ <property name="allow_discussion">True</property>
+ <action title="View" action_id="view" category="object" condition_expr=""
+    url_expr="string:${object_url}/mosaicdocument_view" visible="True">
+  <permission value="View"/>
+ </action>
+ <action title="Edit" action_id="edit" category="object" condition_expr=""
+    url_expr="string:${object_url}/mosaicdocument_edit_form" visible="True">
+  <permission value="Modify portal content"/>
+ </action>
+ <action title="Metadata" action_id="metadata" category="object"
+    condition_expr="" url_expr="string:${object_url}/metadata_edit_form"
+    visible="True"/>
+</object>
diff --git a/profiles/default/mosaic_tool/types/Section_Block.xml b/profiles/default/mosaic_tool/types/Section_Block.xml
new file mode 100644
index 0000000..64e49b4
--- /dev/null
+++ b/profiles/default/mosaic_tool/types/Section_Block.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0"?>
+<object name="Section Block" meta_type="Mosaic Block Information"
+   xmlns:i18n="http://xml.zope.org/namespaces/i18n">
+ <property name="title">Section block</property>
+ <property name="description"></property>
+ <property name="content_icon">mosaic_tool/image_block_icon.gif</property>
+ <property name="content_meta_type">Section Block</property>
+ <property name="template">mosaic_tool/block_section_template</property>
+ <property name="notify_wf">False</property>
+ <property name="product">MosaicDocument</property>
+ <property name="factory">addMosaicBlock</property>
+ <property name="immediate_view">view</property>
+ <property name="global_allow">True</property>
+ <property name="filter_content_types">True</property>
+ <property name="allowed_content_types"/>
+ <property name="allow_discussion">False</property>
+ <action title="view" action_id="view" category="object" condition_expr=""
+    url_expr="string:${object_url}/view" visible="True">
+  <permission value="View"/>
+ </action>
+</object>
diff --git a/profiles/default/mosaic_tool/types/Spacer_Block.xml b/profiles/default/mosaic_tool/types/Spacer_Block.xml
new file mode 100644
index 0000000..6610d7d
--- /dev/null
+++ b/profiles/default/mosaic_tool/types/Spacer_Block.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0"?>
+<object name="Spacer Block" meta_type="Mosaic Block Information"
+   xmlns:i18n="http://xml.zope.org/namespaces/i18n">
+ <property name="title">Spacer block</property>
+ <property name="description"></property>
+ <property name="content_icon">mosaic_tool/image_block_icon.gif</property>
+ <property name="content_meta_type">Spacer Block</property>
+ <property name="template">mosaic_tool/block_spacer_template</property>
+ <property name="notify_wf">False</property>
+ <property name="product">MosaicDocument</property>
+ <property name="factory">addMosaicBlock</property>
+ <property name="immediate_view">view</property>
+ <property name="global_allow">True</property>
+ <property name="filter_content_types">True</property>
+ <property name="allowed_content_types"/>
+ <property name="allow_discussion">False</property>
+ <action title="view" action_id="view" category="object" condition_expr=""
+    url_expr="string:${object_url}/view" visible="True">
+  <permission value="View"/>
+ </action>
+</object>
diff --git a/profiles/default/mosaic_tool/types/Text_Block.xml b/profiles/default/mosaic_tool/types/Text_Block.xml
new file mode 100644
index 0000000..3b11b85
--- /dev/null
+++ b/profiles/default/mosaic_tool/types/Text_Block.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0"?>
+<object name="Text Block" meta_type="Mosaic Block Information"
+   xmlns:i18n="http://xml.zope.org/namespaces/i18n">
+ <property name="title">Text block</property>
+ <property name="description"></property>
+ <property name="content_icon">mosaic_tool/image_block_icon.gif</property>
+ <property name="content_meta_type">Text Block</property>
+ <property name="template">mosaic_tool/block_text_template</property>
+ <property name="notify_wf">False</property>
+ <property name="product">MosaicDocument</property>
+ <property name="factory">addMosaicBlock</property>
+ <property name="immediate_view">view</property>
+ <property name="global_allow">True</property>
+ <property name="filter_content_types">True</property>
+ <property name="allowed_content_types"/>
+ <property name="allow_discussion">False</property>
+ <action title="view" action_id="view" category="object" condition_expr=""
+    url_expr="string:${object_url}/view" visible="True">
+  <permission value="View"/>
+ </action>
+</object>
diff --git a/profiles/default/mosaic_tool/types/Tree_Box_Block.xml b/profiles/default/mosaic_tool/types/Tree_Box_Block.xml
new file mode 100644
index 0000000..787cc87
--- /dev/null
+++ b/profiles/default/mosaic_tool/types/Tree_Box_Block.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0"?>
+<object name="Tree Box Block" meta_type="Mosaic Block Information"
+   xmlns:i18n="http://xml.zope.org/namespaces/i18n">
+ <property name="title">Tree Box Block</property>
+ <property name="description"></property>
+ <property name="content_icon">mosaic_tool/tree_block_icon.gif</property>
+ <property name="content_meta_type">Tree Box Block</property>
+ <property name="template">mosaic_tool/tree_block_template</property>
+ <property name="notify_wf">False</property>
+ <property name="product">MosaicDocument</property>
+ <property name="factory">addMosaicBlock</property>
+ <property name="immediate_view">view</property>
+ <property name="global_allow">True</property>
+ <property name="filter_content_types">True</property>
+ <property name="allowed_content_types"/>
+ <property name="allow_discussion">False</property>
+ <action title="view" action_id="view" category="object" condition_expr=""
+    url_expr="string:${object_url}/view" visible="True">
+  <permission value="View"/>
+ </action>
+</object>
diff --git a/profiles/default/mosaic_tool/types/Two_Images_Block.xml b/profiles/default/mosaic_tool/types/Two_Images_Block.xml
new file mode 100644
index 0000000..878da55
--- /dev/null
+++ b/profiles/default/mosaic_tool/types/Two_Images_Block.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0"?>
+<object name="Two Images Block" meta_type="Mosaic Block Information"
+   xmlns:i18n="http://xml.zope.org/namespaces/i18n">
+ <property name="title">Two images block</property>
+ <property name="description"></property>
+ <property name="content_icon">mosaic_tool/image_block_icon.gif</property>
+ <property name="content_meta_type">Two Images Block</property>
+ <property name="template">mosaic_tool/block_two_images_template</property>
+ <property name="notify_wf">False</property>
+ <property name="product">MosaicDocument</property>
+ <property name="factory">addMosaicBlock</property>
+ <property name="immediate_view">view</property>
+ <property name="global_allow">True</property>
+ <property name="filter_content_types">True</property>
+ <property name="allowed_content_types"/>
+ <property name="allow_discussion">False</property>
+ <action title="view" action_id="view" category="object" condition_expr=""
+    url_expr="string:${object_url}/view" visible="True">
+  <permission value="View"/>
+ </action>
+</object>
diff --git a/profiles/default/properties.xml b/profiles/default/properties.xml
new file mode 100644
index 0000000..97a20f5
--- /dev/null
+++ b/profiles/default/properties.xml
@@ -0,0 +1,37 @@
+<?xml version="1.0"?>
+<site>
+ <property name="title">Plinn</property>
+ <property name="description">Plinn default portal</property>
+ <property name="copyright_notice" type="string"></property>
+ <property name="email_from_address"
+    type="string">postmaster@localhost</property>
+ <property name="email_from_name" type="string"></property>
+ <property name="thumb_height" type="int">192</property>
+ <property name="thumb_width" type="int">192</property>
+ <property name="available_editors" type="lines">
+  <element value="None"/>
+  <element value="Epoz"/>
+  <element value="FCK"/>
+ </property>
+ <property name="enable_permalink" type="boolean">True</property>
+ <property name="default_language" type="string">fr</property>
+ <property name="validate_email" type="boolean">False</property>
+ <property name="slide_size" type="int">245</property>
+ <property name="untitled_content_name" type="string">Untitled-</property>
+ <property name="default_charset" type="string">utf-8</property>
+ <property name="management_page_charset" type="string">utf-8</property>
+ <property name="unused_topic_fields" type="lines">
+  <element value="getMemberFullName"/>
+  <element value="getMemberSortableFormat"/>
+  <element value="Type"/>
+  <element value="meta_type"/>
+  <element value="in_reply_to"/>
+  <element value="Date"/>
+  <element value="end"/>
+  <element value="start"/>
+ </property>
+ <property name="keywords" type="lines">
+  <element value=""/>
+ </property>
+ <property name="ajax_config" type="int">3</property>
+</site>
diff --git a/profiles/default/rolemap.xml b/profiles/default/rolemap.xml
new file mode 100644
index 0000000..b1dd68a
--- /dev/null
+++ b/profiles/default/rolemap.xml
@@ -0,0 +1,142 @@
+<?xml version="1.0"?>
+<rolemap>
+  <roles>
+    <role name="Anonymous"/>
+    <role name="Authenticated"/>
+    <role name="Contributor"/>
+    <role name="Manager"/>
+    <role name="Member"/>
+    <role name="Owner"/>
+    <role name="Reader"/>
+    <role name="Reviewer"/>
+    <role name="UserManager"/>
+  </roles>
+  <permissions>
+    <permission name="Add Groups" acquire="True">
+      <role name="UserManager"/>
+    </permission>
+    <permission name="Add portal content" acquire="True">
+      <role name="Contributor"/>
+      <role name="Manager"/>
+      <role name="Owner"/>
+    </permission>
+    <permission name="Add portal events" acquire="True">
+      <role name="Contributor"/>
+      <role name="Owner"/>
+    </permission>
+    <permission name="Add portal folders" acquire="True">
+      <role name="Contributor"/>
+      <role name="Manager"/>
+      <role name="Owner"/>
+    </permission>
+    <permission name="Add portal member" acquire="False">
+      <role name="Anonymous"/>
+      <role name="Manager"/>
+    </permission>
+    <permission name="Change Images and Files"
+                acquire="True">
+      <role name="Contributor"/>
+      <role name="Owner"/>
+    </permission>
+    <permission name="Check Member Permission"
+                acquire="True">
+      <role name="UserManager"/>
+    </permission>
+    <permission name="Delete Groups" acquire="True">
+      <role name="UserManager"/>
+    </permission>
+    <permission name="Delete Portal Contents" acquire="True">
+      <role name="Member"/>
+    </permission>
+    <permission name="Delete objects" acquire="True">
+      <role name="Manager"/>
+      <role name="Owner"/>
+    </permission>
+    <permission name="FTP access" acquire="True">
+      <role name="Manager"/>
+      <role name="Owner"/>
+    </permission>
+    <permission name="List folder contents" acquire="True">
+      <role name="Anonymous"/>
+      <role name="Contributor"/>
+      <role name="Reader"/>
+    </permission>
+    <permission name="List portal members" acquire="True">
+      <role name="Manager"/>
+      <role name="Member"/>
+    </permission>
+    <permission name="List undoable changes" acquire="True">
+      <role name="Manager"/>
+      <role name="Member"/>
+    </permission>
+    <permission name="Manage Groups" acquire="True">
+      <role name="UserManager"/>
+    </permission>
+    <permission name="Manage properties" acquire="True">
+      <role name="Manager"/>
+      <role name="Owner"/>
+    </permission>
+    <permission name="Modify portal content" acquire="True">
+      <role name="Contributor"/>
+      <role name="Owner"/>
+    </permission>
+    <permission name="Remove member" acquire="True">
+      <role name="UserManager"/>
+    </permission>
+    <permission name="Reply to item" acquire="True">
+      <role name="Manager"/>
+      <role name="Member"/>
+    </permission>
+    <permission name="Review portal content" acquire="True">
+      <role name="Manager"/>
+      <role name="Reviewer"/>
+    </permission>
+    <permission name="Set Local Roles" acquire="True">
+      <role name="Manager"/>
+    </permission>
+    <permission name="Set Member Password" acquire="True">
+      <role name="UserManager"/>
+    </permission>
+    <permission name="Set Member Properties" acquire="True">
+      <role name="UserManager"/>
+    </permission>
+    <permission name="Set own password" acquire="True">
+      <role name="Manager"/>
+      <role name="Member"/>
+    </permission>
+    <permission name="Set own properties" acquire="True">
+      <role name="Manager"/>
+      <role name="Member"/>
+    </permission>
+    <permission name="Subscribe Notification" acquire="True">
+      <role name="Member"/>
+    </permission>
+    <permission name="Undo changes" acquire="True">
+      <role name="Manager"/>
+      <role name="Owner"/>
+    </permission>
+    <permission name="Use Factories" acquire="True">
+      <role name="Manager"/>
+    </permission>
+    <permission name="Use mailhost services" acquire="True">
+      <role name="Manager"/>
+      <role name="Member"/>
+    </permission>
+    <permission name="View" acquire="True">
+      <role name="Contributor"/>
+      <role name="Owner"/>
+      <role name="Reader"/>
+    </permission>
+    <permission name="View Groups" acquire="True">
+      <role name="Member"/>
+    </permission>
+    <permission name="View History" acquire="True">
+      <role name="Member"/>
+    </permission>
+    <permission name="View management screens"
+                acquire="True">
+      <role name="Manager"/>
+      <role name="Owner"/>
+    </permission>
+  </permissions>
+</rolemap>
diff --git a/profiles/default/skins.xml b/profiles/default/skins.xml
new file mode 100644
index 0000000..758a88c
--- /dev/null
+++ b/profiles/default/skins.xml
@@ -0,0 +1,84 @@
+<?xml version="1.0"?>
+<object name="portal_skins" meta_type="CMF Skins Tool" allow_any="False"
+   cookie_persistence="False" default_skin="Plinn Basic"
+   request_varname="portal_skin">
+ <object name="Images" meta_type="Filesystem Directory View"
+    directory="Products.CMFDefault:skins/Images"/>
+ <object name="custom" meta_type="Folder"/>
+ <object name="custom_content" meta_type="Filesystem Directory View"
+    directory="Products.Plinn:skins/custom_content"/>
+ <object name="custom_control" meta_type="Filesystem Directory View"
+    directory="Products.Plinn:skins/custom_control"/>
+ <object name="custom_generic" meta_type="Filesystem Directory View"
+    directory="Products.Plinn:skins/custom_generic"/>
+ <object name="epoz_core" meta_type="Filesystem Directory View"
+    directory="Products.Epoz:epoz/epoz_core"/>
+ <object name="epoz_i18n" meta_type="Filesystem Directory View"
+    directory="Products.Epoz:epoz/epoz_i18n"/>
+ <object name="epoz_images" meta_type="Filesystem Directory View"
+    directory="Products.Epoz:epoz/epoz_images"/>
+ <object name="fckeditor" meta_type="Filesystem Directory View"
+    directory="Products.FCKEditor:skins"/>
+ <object name="jscalendar" meta_type="Filesystem Directory View"
+    directory="Products.Plinn:skins/jscalendar"/>
+ <object name="mimetypes_icons" meta_type="Filesystem Directory View"
+    directory="Products.MimetypesRegistry:skins/mimetypes_icons"/>
+ <object name="mosaic_blocks" meta_type="Filesystem Directory View"
+    directory="Products.MosaicDocument:default_blocks"/>
+ <object name="mosaic_document" meta_type="Filesystem Directory View"
+    directory="Products.MosaicDocument:skins"/>
+ <object name="mosaic_slots" meta_type="Filesystem Directory View"
+    directory="Products.MosaicDocument:default_slots"/>
+ <object name="plinn_ajax" meta_type="Filesystem Directory View"
+    directory="Products.Plinn:skins/ajax_scripts"/>
+ <object name="plinn_content" meta_type="Filesystem Directory View"
+    directory="Products.Plinn:skins/content"/>
+ <object name="plinn_control" meta_type="Filesystem Directory View"
+    directory="Products.Plinn:skins/control"/>
+ <object name="plinn_document" meta_type="Filesystem Directory View"
+    directory="Products.PlinnDocument:skins"/>
+ <object name="plinn_generic" meta_type="Filesystem Directory View"
+    directory="Products.Plinn:skins/generic"/>
+ <object name="plinn_images" meta_type="Filesystem Directory View"
+    directory="Products.Plinn:skins/images"/>
+ <object name="portfolio" meta_type="Filesystem Directory View"
+    directory="Products.Portfolio:skins"/>
+ <object name="zpt_content" meta_type="Filesystem Directory View"
+    directory="Products.CMFDefault:skins/zpt_content"/>
+ <object name="zpt_control" meta_type="Filesystem Directory View"
+    directory="Products.CMFDefault:skins/zpt_control"/>
+ <object name="zpt_generic" meta_type="Filesystem Directory View"
+    directory="Products.CMFDefault:skins/zpt_generic"/>
+ <object name="zpt_topic" meta_type="Filesystem Directory View"
+    directory="Products.CMFTopic:skins/zpt_topic"/>
+ <object name="zpt_calendar" meta_type="Filesystem Directory View"
+    directory="Products.CMFCalendar:skins/zpt_calendar"/>
+ <skin-path name="Plinn Basic">
+  <layer name="custom"/>
+  <layer name="plinn_content"/>
+  <layer name="plinn_control"/>
+  <layer name="plinn_generic"/>
+  <layer name="plinn_ajax"/>
+  <layer name="plinn_images"/>
+  <layer name="custom_content"/>
+  <layer name="custom_control"/>
+  <layer name="custom_generic"/>
+  <layer name="jscalendar"/>
+  <layer name="plinn_document"/>
+  <layer name="epoz_core"/>
+  <layer name="epoz_i18n"/>
+  <layer name="epoz_images"/>
+  <layer name="fckeditor"/>
+  <layer name="mosaic_document"/>
+  <layer name="mosaic_blocks"/>
+  <layer name="mosaic_slots"/>
+  <layer name="portfolio"/>
+  <layer name="mimetypes_icons"/>
+  <layer name="zpt_topic"/>
+  <layer name="zpt_calendar"/>
+  <layer name="zpt_content"/>
+  <layer name="zpt_generic"/>
+  <layer name="zpt_control"/>
+  <layer name="Images"/>
+ </skin-path>
+</object>
diff --git a/profiles/default/skins/custom.xml b/profiles/default/skins/custom.xml
new file mode 100644
index 0000000..07d15fd
--- /dev/null
+++ b/profiles/default/skins/custom.xml
@@ -0,0 +1,4 @@
+<?xml version="1.0"?>
+<object name="custom" meta_type="Folder">
+ <property name="title"></property>
+</object>
diff --git a/profiles/default/toolset.xml b/profiles/default/toolset.xml
new file mode 100644
index 0000000..6686275
--- /dev/null
+++ b/profiles/default/toolset.xml
@@ -0,0 +1,59 @@
+<?xml version="1.0"?>
+<tool-setup>
+ <required tool_id="MailHost"
+           class="Products.MailHost.MailHost.MailHost"/>
+ <required tool_id="caching_policy_manager"
+           class="Products.CMFCore.CachingPolicyManager.CachingPolicyManager"/>
+ <required tool_id="content_type_registry"
+           class="Products.CMFCore.ContentTypeRegistry.ContentTypeRegistry"/>
+ <required tool_id="cookie_authentication"
+           class="Products.CMFCore.CookieCrumbler.CookieCrumbler"/>
+ <required tool_id="mimetypes_registry"
+           class="Products.MimetypesRegistry.MimeTypesRegistry.MimeTypesRegistry"/>
+ <required tool_id="mosaic_tool"
+           class="Products.MosaicDocument.MosaicTool.MosaicTool"/>
+ <required tool_id="portal_actions"
+           class="Products.CMFCore.ActionsTool.ActionsTool"/>
+ <required tool_id="portal_attachment"
+           class="Products.Plinn.AttachmentTool.AttachmentTool"/>
+ <required tool_id="portal_calendar"
+           class="Products.Plinn.CalendarTool.CalendarTool"/>
+ <required tool_id="portal_catalog"
+           class="Products.CMFCore.CatalogTool.CatalogTool"/>
+ <required tool_id="portal_discussion"
+           class="Products.CMFDefault.DiscussionTool.DiscussionTool"/>
+ <required tool_id="portal_groupdata"
+           class="Products.Plinn.GroupDataTool.GroupDataTool"/>
+ <required tool_id="portal_groups"
+           class="Products.Plinn.GroupsTool.GroupsTool"/>
+ <required tool_id="portal_memberdata"
+           class="Products.Plinn.MemberDataTool.MemberDataTool"/>
+ <required tool_id="portal_membership"
+           class="Products.Plinn.MembershipTool.MembershipTool"/>
+ <required tool_id="portal_metadata"
+           class="Products.CMFDefault.MetadataTool.MetadataTool"/>
+ <required tool_id="portal_properties"
+           class="Products.CMFDefault.PropertiesTool.PropertiesTool"/>
+ <required tool_id="portal_registration"
+           class="Products.Plinn.RegistrationTool.RegistrationTool"/>
+ <required tool_id="portal_skins"
+           class="Products.CMFCore.SkinsTool.SkinsTool"/>
+ <required tool_id="portal_syndication"
+           class="Products.CMFDefault.SyndicationTool.SyndicationTool"/>
+ <required tool_id="portal_transforms"
+           class="Products.PortalTransforms.TransformEngine.TransformTool"/>
+ <required tool_id="portal_types"
+           class="Products.CMFCore.TypesTool.TypesTool"/>
+ <required tool_id="portal_uidannotation"
+           class="Products.CMFUid.UniqueIdAnnotationTool.UniqueIdAnnotationTool"/>
+ <required tool_id="portal_uidgenerator"
+           class="Products.CMFUid.UniqueIdGeneratorTool.UniqueIdGeneratorTool"/>
+ <required tool_id="portal_uidhandler"
+           class="Products.CMFUid.UniqueIdHandlerTool.UniqueIdHandlerTool"/>
+ <required tool_id="portal_undo"
+           class="Products.CMFCore.UndoTool.UndoTool"/>
+ <required tool_id="portal_url"
+           class="Products.CMFCore.URLTool.URLTool"/>
+ <required tool_id="portal_workflow"
+           class="Products.CMFCore.WorkflowTool.WorkflowTool"/>
+</tool-setup>
diff --git a/profiles/default/types.xml b/profiles/default/types.xml
new file mode 100755
index 0000000..f80c39b
--- /dev/null
+++ b/profiles/default/types.xml
@@ -0,0 +1,26 @@
+<?xml version="1.0"?>
+<object name="portal_types" meta_type="CMF Types Tool">
+ <property name="title"></property>
+ <object name="CMF Site" meta_type="Factory-based Type Information"/>
+ <object name="Calendar" meta_type="Factory-based Type Information"/>
+ <object name="Discussion Item" meta_type="Factory-based Type Information"/>
+ <object name="Document" meta_type="Factory-based Type Information"/>
+ <object name="Event" meta_type="Factory-based Type Information"/>
+ <object name="Favorite" meta_type="Factory-based Type Information"/>
+ <object name="File" meta_type="Factory-based Type Information"/>
+ <object name="File Slot" meta_type="Factory-based Type Information"/>
+ <object name="Huge Plinn Folder" meta_type="Factory-based Type Information"/>
+ <object name="Image Slot" meta_type="Factory-based Type Information"/>
+ <object name="Link" meta_type="Factory-based Type Information"/>
+ <object name="List Slot" meta_type="Factory-based Type Information"/>
+ <object name="Mosaic Document" meta_type="Factory-based Type Information"/>
+ <object name="News Item" meta_type="Factory-based Type Information"/>
+ <object name="Photo" meta_type="Factory-based Type Information"/>
+ <object name="Plinn Document" meta_type="Factory-based Type Information"/>
+ <object name="Plinn Folder" meta_type="Factory-based Type Information"/>
+ <object name="Portfolio" meta_type="Factory-based Type Information"/>
+ <object name="Spacer Slot" meta_type="Factory-based Type Information"/>
+ <object name="String Slot" meta_type="Factory-based Type Information"/>
+ <object name="Text Slot" meta_type="Factory-based Type Information"/>
+ <object name="Topic" meta_type="Factory-based Type Information"/>
+</object>
diff --git a/profiles/default/types/CMF_Site.xml b/profiles/default/types/CMF_Site.xml
new file mode 100755
index 0000000..443c84d
--- /dev/null
+++ b/profiles/default/types/CMF_Site.xml
@@ -0,0 +1,45 @@
+<?xml version="1.0"?>
+<object name="CMF Site" meta_type="Factory-based Type Information"
+   xmlns:i18n="http://xml.zope.org/namespaces/i18n">
+ <property name="title"></property>
+ <property name="description">Portal portal_type</property>
+ <property name="content_icon">plinn_icon.gif</property>
+ <property name="content_meta_type"></property>
+ <property name="product"></property>
+ <property name="factory"></property>
+ <property name="immediate_view"></property>
+ <property name="global_allow">False</property>
+ <property name="filter_content_types">True</property>
+ <property name="allowed_content_types">
+  <element value="Calendar"/>
+  <element value="Document"/>
+  <element value="File"/>
+  <element value="News Item"/>
+  <element value="Plinn Document"/>
+  <element value="Plinn Folder"/>
+  <element value="Portfolio"/>
+  <element value="Topic"/>
+ </property>
+ <property name="allow_discussion">False</property>
+ <alias from="(Default)" to="index_html"/>
+ <alias from="mkdir" to="createPlinnFolder"/>
+ <alias from="view" to="index_html"/>
+ <action title="View" action_id="view" category="object" condition_expr=""
+    url_expr="string:${object_url}/index_html" visible="True">
+  <permission value="View"/>
+ </action>
+ <action title="List" action_id="folderContents" category="object"
+    condition_expr="" url_expr="string:${object_url}/folder_contents"
+    visible="True">
+  <permission value="List folder contents"/>
+ </action>
+ <action title="New..." action_id="new" category="object" condition_expr=""
+    url_expr="string:${object_url}/folder_factories" visible="False">
+  <permission value="Add portal content"/>
+ </action>
+ <action title="Rename items" action_id="rename_items" category="object"
+    condition_expr="" url_expr="string:${object_url}/folder_rename_form"
+    visible="False">
+  <permission value="Add portal content"/>
+ </action>
+</object>
diff --git a/profiles/default/types/Calendar.xml b/profiles/default/types/Calendar.xml
new file mode 100755
index 0000000..1e70767
--- /dev/null
+++ b/profiles/default/types/Calendar.xml
@@ -0,0 +1,38 @@
+<?xml version="1.0"?>
+<object name="Calendar" meta_type="Factory-based Type Information"
+   xmlns:i18n="http://xml.zope.org/namespaces/i18n">
+ <property name="title">Agenda</property>
+ <property name="description">Calendar contains events.</property>
+ <property name="content_icon">calendar_icon.gif</property>
+ <property name="content_meta_type">Plinn Calendar</property>
+ <property name="product">Plinn</property>
+ <property name="factory">manage_addPlinnFolder</property>
+ <property name="immediate_view">object/view</property>
+ <property name="global_allow">True</property>
+ <property name="filter_content_types">True</property>
+ <property name="allowed_content_types">
+  <element value="Event"/>
+ </property>
+ <property name="allow_discussion">True</property>
+ <alias from="(Default)" to="cal_calendar_view"/>
+ <alias from="view" to="cal_calendar_view"/>
+ <action title="View" action_id="view" category="object" condition_expr=""
+    url_expr="string:${object_url}/cal_calendar_view" visible="True">
+  <permission value="View"/>
+ </action>
+ <action title="Edit" action_id="edit" category="object" condition_expr=""
+    url_expr="string:${object_url}/folder_edit_form" visible="False">
+  <permission value="Manage properties"/>
+ </action>
+ <action title="Share" action_id="localroles" category="object"
+    condition_expr="" url_expr="string:${object_url}/folder_localrole_form"
+    visible="True">
+  <permission value="Manage properties"/>
+ </action>
+ <action title="Status history" action_id="history" category="object"
+    condition_expr="" url_expr="string:${object_url}/content_status_history"
+    visible="True">
+  <permission value="Request review"/>
+  <permission value="Review portal content"/>
+ </action>
+</object>
diff --git a/profiles/default/types/Discussion_Item.xml b/profiles/default/types/Discussion_Item.xml
new file mode 100755
index 0000000..a15bd46
--- /dev/null
+++ b/profiles/default/types/Discussion_Item.xml
@@ -0,0 +1,33 @@
+<?xml version="1.0"?>
+<object name="Discussion Item" meta_type="Factory-based Type Information"
+   xmlns:i18n="http://xml.zope.org/namespaces/i18n">
+ <property name="title">Discussion Item</property>
+ <property
+    name="description">Discussion Items are documents which reply to other content.
+  They should *not* be addable through the standard 'folder_factories' interface.</property>
+ <property name="content_icon">discussionitem_icon.gif</property>
+ <property name="content_meta_type">Discussion Item</property>
+ <property name="product"></property>
+ <property name="factory"></property>
+ <property name="immediate_view"></property>
+ <property name="global_allow">True</property>
+ <property name="filter_content_types">True</property>
+ <property name="allowed_content_types"/>
+ <property name="allow_discussion">False</property>
+ <alias from="(Default)" to="discussionitem_view"/>
+ <alias from="view" to="discussionitem_view"/>
+ <action title="View" action_id="view" category="object" condition_expr=""
+    url_expr="string:${object_url}/discussionitem_view" visible="False">
+  <permission value="View"/>
+ </action>
+ <action title="Reply..." action_id="reply" category="discussion"
+    condition_expr="" url_expr="string:${object_url}/discussion_reply_form"
+    visible="True">
+  <permission value="Reply to item"/>
+ </action>
+ <action title="Delete" action_id="del" category="discussion"
+    condition_expr="" url_expr="string:${object_url}/discussionItemDelete"
+    visible="True">
+  <permission value="Manage portal"/>
+ </action>
+</object>
diff --git a/profiles/default/types/Document.xml b/profiles/default/types/Document.xml
new file mode 100755
index 0000000..7f9ead9
--- /dev/null
+++ b/profiles/default/types/Document.xml
@@ -0,0 +1,43 @@
+<?xml version="1.0"?>
+<object name="Document" meta_type="Factory-based Type Information"
+   xmlns:i18n="http://xml.zope.org/namespaces/i18n">
+ <property name="title">Document</property>
+ <property
+    name="description">Contain text that can be formatted using 'Structured Text.' It may also contain HTML, or "plain" text.</property>
+ <property name="content_icon">text.gif</property>
+ <property name="content_meta_type">Document</property>
+ <property name="product">CMFDefault</property>
+ <property name="factory">addDocument</property>
+ <property name="immediate_view">object/edit</property>
+ <property name="global_allow">True</property>
+ <property name="filter_content_types">True</property>
+ <property name="allowed_content_types"/>
+ <property name="allow_discussion">True</property>
+ <alias from="(Default)" to="document_view"/>
+ <alias from="gethtml" to="source_html"/>
+ <alias from="info" to="content_info"/>
+ <alias from="view" to="document_view"/>
+ <action title="View" action_id="view" category="object" condition_expr=""
+    url_expr="string:${object_url}/document_view" visible="True">
+  <permission value="View"/>
+ </action>
+ <action title="Edit" action_id="edit" category="object" condition_expr=""
+    url_expr="string:${object_url}/document_edit_form" visible="True">
+  <permission value="Modify portal content"/>
+ </action>
+ <action title="Share" action_id="localroles" category="object"
+    condition_expr="" url_expr="string:${object_url}/folder_localrole_form"
+    visible="True">
+  <permission value="Set Local Roles"/>
+ </action>
+ <action title="History" action_id="changes" category="object"
+    condition_expr="" url_expr="string:${object_url}/changes_history"
+    visible="True">
+  <permission value="View History"/>
+ </action>
+ <action title="Status history" action_id="history" category="workflow"
+    condition_expr="" url_expr="string:${object_url}/content_status_history"
+    visible="True">
+  <permission value="Request review"/>
+ </action>
+</object>
diff --git a/profiles/default/types/Event.xml b/profiles/default/types/Event.xml
new file mode 100755
index 0000000..61a7eeb
--- /dev/null
+++ b/profiles/default/types/Event.xml
@@ -0,0 +1,41 @@
+<?xml version="1.0"?>
+<object name="Event" meta_type="Factory-based Type Information"
+   xmlns:i18n="http://xml.zope.org/namespaces/i18n">
+ <property name="title">Event</property>
+ <property
+    name="description">Events are objects for use in Calendar topical queries on the catalog.</property>
+ <property name="content_icon">event_icon.gif</property>
+ <property name="content_meta_type">CMF Event</property>
+ <property name="product">CMFCalendar</property>
+ <property name="factory">addEvent</property>
+ <property name="immediate_view">object/edit</property>
+ <property name="global_allow">True</property>
+ <property name="filter_content_types">True</property>
+ <property name="allowed_content_types"/>
+ <property name="allow_discussion">True</property>
+ <alias from="(Default)" to="event_view"/>
+ <alias from="view" to="event_view"/>
+ <action title="Agenda" action_id="calendar_view" category="object"
+    condition_expr="" url_expr="string:${folder_url}" visible="True">
+  <permission value="View"/>
+ </action>
+ <action title="View" action_id="view" category="object" condition_expr=""
+    url_expr="string:${object_url}/event_view" visible="True">
+  <permission value="View"/>
+ </action>
+ <action title="Edit" action_id="edit" category="object" condition_expr=""
+    url_expr="string:${object_url}/event_edit_form" visible="True">
+  <permission value="Change portal events"/>
+ </action>
+ <action title="Share" action_id="localroles" category="object"
+    condition_expr="" url_expr="string:${object_url}/folder_localrole_form"
+    visible="True">
+  <permission value="Set Local Roles"/>
+ </action>
+ <action title="Status history" action_id="history" category="object"
+    condition_expr="" url_expr="string:${object_url}/content_status_history"
+    visible="True">
+  <permission value="Request review"/>
+  <permission value="Review portal content"/>
+ </action>
+</object>
diff --git a/profiles/default/types/Favorite.xml b/profiles/default/types/Favorite.xml
new file mode 100755
index 0000000..d64d98a
--- /dev/null
+++ b/profiles/default/types/Favorite.xml
@@ -0,0 +1,25 @@
+<?xml version="1.0"?>
+<object name="Favorite" meta_type="Factory-based Type Information"
+   xmlns:i18n="http://xml.zope.org/namespaces/i18n">
+ <property name="title">Favorite</property>
+ <property name="description">Link to an intra-portal resource.</property>
+ <property name="content_icon">link_icon.gif</property>
+ <property name="content_meta_type">Favorite</property>
+ <property name="product">CMFDefault</property>
+ <property name="factory">addFavorite</property>
+ <property name="immediate_view">object/edit</property>
+ <property name="global_allow">True</property>
+ <property name="filter_content_types">True</property>
+ <property name="allowed_content_types"/>
+ <property name="allow_discussion">False</property>
+ <alias from="(Default)" to="favorite_view"/>
+ <alias from="view" to="favorite_view"/>
+ <action title="View" action_id="view" category="object" condition_expr=""
+    url_expr="string:${object_url}/favorite_view" visible="True">
+  <permission value="View"/>
+ </action>
+ <action title="Edit" action_id="edit" category="object" condition_expr=""
+    url_expr="string:${object_url}/link_edit_form" visible="True">
+  <permission value="Modify portal content"/>
+ </action>
+</object>
diff --git a/profiles/default/types/File.xml b/profiles/default/types/File.xml
new file mode 100755
index 0000000..da76059
--- /dev/null
+++ b/profiles/default/types/File.xml
@@ -0,0 +1,45 @@
+<?xml version="1.0"?>
+<object name="File" meta_type="Factory-based Type Information"
+   xmlns:i18n="http://xml.zope.org/namespaces/i18n">
+ <property name="title">File</property>
+ <property name="description">Contain arbitrary downloadable files.</property>
+ <property name="content_icon">application.png</property>
+ <property name="content_meta_type">Plinn File</property>
+ <property name="product"></property>
+ <property name="factory">plinn.file</property>
+ <property name="immediate_view">object/edit</property>
+ <property name="global_allow">True</property>
+ <property name="filter_content_types">True</property>
+ <property name="allowed_content_types"/>
+ <property name="allow_discussion">True</property>
+ <alias from="(Default)" to="file_view"/>
+ <alias from="info" to="file_info"/>
+ <alias from="view" to="file_view"/>
+ <action title="View" action_id="view" category="object" condition_expr=""
+    url_expr="string:${object_url}/file_view" visible="True">
+  <permission value="View"/>
+ </action>
+ <action title="Web preview" action_id="preview" category="object"
+    condition_expr="" url_expr="string:${object_url}/preview" visible="False">
+  <permission value="View"/>
+ </action>
+ <action title="Download" action_id="download" category="object"
+    condition_expr="" url_expr="string:${object_url}" visible="False">
+  <permission value="View"/>
+ </action>
+ <action title="Edit" action_id="edit" category="object" condition_expr=""
+    url_expr="string:${object_url}/file_edit_form" visible="True">
+  <permission value="Modify portal content"/>
+ </action>
+ <action title="Share" action_id="localroles" category="object"
+    condition_expr="" url_expr="string:${object_url}/folder_localrole_form"
+    visible="True">
+  <permission value="Set Local Roles"/>
+ </action>
+ <action title="Status history" action_id="history" category="object"
+    condition_expr="" url_expr="string:${object_url}/content_status_history"
+    visible="True">
+  <permission value="Request review"/>
+  <permission value="Review portal content"/>
+ </action>
+</object>
diff --git a/profiles/default/types/File_Slot.xml b/profiles/default/types/File_Slot.xml
new file mode 100755
index 0000000..6c10a47
--- /dev/null
+++ b/profiles/default/types/File_Slot.xml
@@ -0,0 +1,25 @@
+<?xml version="1.0"?>
+<object name="File Slot" meta_type="Factory-based Type Information"
+   xmlns:i18n="http://xml.zope.org/namespaces/i18n">
+ <property name="title">File Slot</property>
+ <property name="description">File Slot for Mosaic Document</property>
+ <property name="content_icon">mosaic_tool/bin_icon.gif</property>
+ <property name="content_meta_type">File Slot</property>
+ <property name="product">MosaicDocument</property>
+ <property name="factory">addFileSlot</property>
+ <property name="immediate_view">view</property>
+ <property name="global_allow">True</property>
+ <property name="filter_content_types">True</property>
+ <property name="allowed_content_types"/>
+ <property name="allow_discussion">False</property>
+ <alias from="(Default)" to="slot_file_view"/>
+ <alias from="view" to="slot_file_view"/>
+ <action title="View" action_id="view" category="object" condition_expr=""
+    url_expr="string:slot_file_view" visible="True">
+  <permission value="View"/>
+ </action>
+ <action title="Edit" action_id="edit" category="object" condition_expr=""
+    url_expr="string:slot_file_form" visible="True">
+  <permission value="Modify portal content"/>
+ </action>
+</object>
diff --git a/profiles/default/types/Huge_Plinn_Folder.xml b/profiles/default/types/Huge_Plinn_Folder.xml
new file mode 100644
index 0000000..5abeaca
--- /dev/null
+++ b/profiles/default/types/Huge_Plinn_Folder.xml
@@ -0,0 +1,54 @@
+<?xml version="1.0"?>
+<object name="Huge Plinn Folder" meta_type="Factory-based Type Information"
+   xmlns:i18n="http://xml.zope.org/namespaces/i18n">
+ <property name="title">Huge Folder</property>
+ <property
+    name="description">Container to put content in categories.</property>
+ <property name="content_icon">folder_icon.gif</property>
+ <property name="content_meta_type">Huge Plinn Folder</property>
+ <property name="product"></property>
+ <property name="factory">plinn.folder.huge</property>
+ <property name="immediate_view">object/folderContents</property>
+ <property name="global_allow">True</property>
+ <property name="filter_content_types">True</property>
+ <property name="allowed_content_types">
+  <element value="Calendar"/>
+  <element value="Document"/>
+  <element value="File"/>
+  <element value="Link"/>
+  <element value="Mosaic Document"/>
+  <element value="News Item"/>
+  <element value="Plinn Document"/>
+  <element value="Plinn Folder"/>
+  <element value="Huge Plinn Folder"/>
+  <element value="Portfolio"/>
+  <element value="Topic"/>
+ </property>
+ <property name="allow_discussion">False</property>
+ <alias from="(Default)" to="folder_contents"/>
+ <alias from="mkdir" to="createHugePlinnFolder"/>
+ <alias from="view" to="folder_contents"/>
+ <action title="View" action_id="view" category="object" condition_expr=""
+    url_expr="string:${object_url}/folder_contents" visible="False">
+  <permission value="View"/>
+ </action>
+ <action title="List" action_id="folderContents" category="object"
+    condition_expr="" url_expr="string:${object_url}/folder_contents"
+    visible="True">
+  <permission value="List folder contents"/>
+ </action>
+ <action title="Share" action_id="localroles" category="object"
+    condition_expr="" url_expr="string:${object_url}/folder_localrole_form"
+    visible="True">
+  <permission value="Set Local Roles"/>
+ </action>
+ <action title="New..." action_id="new" category="object" condition_expr=""
+    url_expr="string:${object_url}/folder_factories" visible="False">
+  <permission value="Add portal content"/>
+ </action>
+ <action title="Rename items" action_id="rename_items" category="object"
+    condition_expr="" url_expr="string:${object_url}/folder_rename_form"
+    visible="False">
+  <permission value="Add portal content"/>
+ </action>
+</object>
diff --git a/profiles/default/types/Image_Slot.xml b/profiles/default/types/Image_Slot.xml
new file mode 100755
index 0000000..5b0111d
--- /dev/null
+++ b/profiles/default/types/Image_Slot.xml
@@ -0,0 +1,25 @@
+<?xml version="1.0"?>
+<object name="Image Slot" meta_type="Factory-based Type Information"
+   xmlns:i18n="http://xml.zope.org/namespaces/i18n">
+ <property name="title">Image Slot</property>
+ <property name="description">Image Slot for Mosaic Document</property>
+ <property name="content_icon">mosaic_tool/photo_icon.gif</property>
+ <property name="content_meta_type">Image Slot</property>
+ <property name="product">MosaicDocument</property>
+ <property name="factory">addImageSlot</property>
+ <property name="immediate_view">view</property>
+ <property name="global_allow">True</property>
+ <property name="filter_content_types">True</property>
+ <property name="allowed_content_types"/>
+ <property name="allow_discussion">False</property>
+ <alias from="(Default)" to="slot_image_view"/>
+ <alias from="view" to="slot_image_view"/>
+ <action title="View" action_id="view" category="object" condition_expr=""
+    url_expr="string:slot_image_view" visible="True">
+  <permission value="View"/>
+ </action>
+ <action title="Edit" action_id="edit" category="object" condition_expr=""
+    url_expr="string:slot_image_form" visible="True">
+  <permission value="Modify portal content"/>
+ </action>
+</object>
diff --git a/profiles/default/types/Link.xml b/profiles/default/types/Link.xml
new file mode 100755
index 0000000..be4a2c2
--- /dev/null
+++ b/profiles/default/types/Link.xml
@@ -0,0 +1,37 @@
+<?xml version="1.0"?>
+<object name="Link" meta_type="Factory-based Type Information"
+   xmlns:i18n="http://xml.zope.org/namespaces/i18n">
+ <property name="title">Link</property>
+ <property name="description">Annotated URL.</property>
+ <property name="content_icon">link_icon.gif</property>
+ <property name="content_meta_type">Link</property>
+ <property name="product">CMFDefault</property>
+ <property name="factory">addLink</property>
+ <property name="immediate_view">object/edit</property>
+ <property name="global_allow">True</property>
+ <property name="filter_content_types">True</property>
+ <property name="allowed_content_types"/>
+ <property name="allow_discussion">False</property>
+ <alias from="(Default)" to="link_view"/>
+ <alias from="info" to="content_info"/>
+ <alias from="view" to="link_view"/>
+ <action title="View" action_id="view" category="object" condition_expr=""
+    url_expr="string:${object_url}/link_view" visible="True">
+  <permission value="View"/>
+ </action>
+ <action title="Edit" action_id="edit" category="object" condition_expr=""
+    url_expr="string:${object_url}/link_edit_form" visible="True">
+  <permission value="Modify portal content"/>
+ </action>
+ <action title="Share" action_id="localroles" category="object"
+    condition_expr="" url_expr="string:${object_url}/folder_localrole_form"
+    visible="True">
+  <permission value="Set Local Roles"/>
+ </action>
+ <action title="Status history" action_id="history" category="object"
+    condition_expr="" url_expr="string:${object_url}/content_status_history"
+    visible="True">
+  <permission value="Request review"/>
+  <permission value="Review portal content"/>
+ </action>
+</object>
diff --git a/profiles/default/types/List_Slot.xml b/profiles/default/types/List_Slot.xml
new file mode 100755
index 0000000..64c4930
--- /dev/null
+++ b/profiles/default/types/List_Slot.xml
@@ -0,0 +1,25 @@
+<?xml version="1.0"?>
+<object name="List Slot" meta_type="Factory-based Type Information"
+   xmlns:i18n="http://xml.zope.org/namespaces/i18n">
+ <property name="title">List Slot</property>
+ <property name="description">List Slot for Mosaic Document</property>
+ <property name="content_icon">mosaic_tool/str_icon.gif</property>
+ <property name="content_meta_type">List Slot</property>
+ <property name="product">MosaicDocument</property>
+ <property name="factory">addStringSlot</property>
+ <property name="immediate_view">view</property>
+ <property name="global_allow">True</property>
+ <property name="filter_content_types">True</property>
+ <property name="allowed_content_types"/>
+ <property name="allow_discussion">False</property>
+ <alias from="(Default)" to="slot_list_view"/>
+ <alias from="view" to="slot_list_view"/>
+ <action title="View" action_id="view" category="object" condition_expr=""
+    url_expr="string:slot_list_view" visible="True">
+  <permission value="View"/>
+ </action>
+ <action title="Edit" action_id="edit" category="object" condition_expr=""
+    url_expr="string:slot_text_form" visible="True">
+  <permission value="Modify portal content"/>
+ </action>
+</object>
diff --git a/profiles/default/types/Mosaic_Document.xml b/profiles/default/types/Mosaic_Document.xml
new file mode 100755
index 0000000..1b7e308
--- /dev/null
+++ b/profiles/default/types/Mosaic_Document.xml
@@ -0,0 +1,37 @@
+<?xml version="1.0"?>
+<object name="Mosaic Document" meta_type="Factory-based Type Information"
+   xmlns:i18n="http://xml.zope.org/namespaces/i18n">
+ <property name="title">Mosaic Document</property>
+ <property name="description"></property>
+ <property name="content_icon">mosaic_icon.gif</property>
+ <property name="content_meta_type">Mosaic Document</property>
+ <property name="product">MosaicDocument</property>
+ <property name="factory">addMosaicDocument</property>
+ <property name="immediate_view">object/edit</property>
+ <property name="global_allow">True</property>
+ <property name="filter_content_types">False</property>
+ <property name="allowed_content_types"/>
+ <property name="allow_discussion">True</property>
+ <alias from="(Default)" to="mosaicdocument_view"/>
+ <alias from="info" to="content_info"/>
+ <alias from="view" to="mosaicdocument_view"/>
+ <action title="View" action_id="view" category="object" condition_expr=""
+    url_expr="string:${object_url}/mosaicdocument_view" visible="True">
+  <permission value="View"/>
+ </action>
+ <action title="Edit" action_id="edit" category="object" condition_expr=""
+    url_expr="string:${object_url}/mosaicdocument_edit_form" visible="True">
+  <permission value="Modify portal content"/>
+ </action>
+ <action title="Share" action_id="localroles" category="object"
+    condition_expr="" url_expr="string:${object_url}/folder_localrole_form"
+    visible="True">
+  <permission value="Set Local Roles"/>
+ </action>
+ <action title="Status history" action_id="history" category="object"
+    condition_expr="" url_expr="string:${object_url}/content_status_history"
+    visible="True">
+  <permission value="Request review"/>
+  <permission value="Review portal content"/>
+ </action>
+</object>
diff --git a/profiles/default/types/News_Item.xml b/profiles/default/types/News_Item.xml
new file mode 100755
index 0000000..3ab73b9
--- /dev/null
+++ b/profiles/default/types/News_Item.xml
@@ -0,0 +1,39 @@
+<?xml version="1.0"?>
+<object name="News Item" meta_type="Factory-based Type Information"
+   xmlns:i18n="http://xml.zope.org/namespaces/i18n">
+ <property name="title">News Item</property>
+ <property
+    name="description">Short text article with a title and an optional lead-in.</property>
+ <property name="content_icon">newsitem_icon.gif</property>
+ <property name="content_meta_type">News Item</property>
+ <property name="product">CMFDefault</property>
+ <property name="factory">addNewsItem</property>
+ <property name="immediate_view">object/edit</property>
+ <property name="global_allow">True</property>
+ <property name="filter_content_types">True</property>
+ <property name="allowed_content_types"/>
+ <property name="allow_discussion">True</property>
+ <alias from="(Default)" to="newsitem_view"/>
+ <alias from="gethtml" to="source_html"/>
+ <alias from="info" to="content_info"/>
+ <alias from="view" to="newsitem_view"/>
+ <action title="View" action_id="view" category="object" condition_expr=""
+    url_expr="string:${object_url}/newsitem_view" visible="True">
+  <permission value="View"/>
+ </action>
+ <action title="Edit" action_id="edit" category="object" condition_expr=""
+    url_expr="string:${object_url}/newsitem_edit_form" visible="True">
+  <permission value="Modify portal content"/>
+ </action>
+ <action title="Share" action_id="localroles" category="object"
+    condition_expr="" url_expr="string:${object_url}/folder_localrole_form"
+    visible="True">
+  <permission value="Set Local Roles"/>
+ </action>
+ <action title="Status history" action_id="history" category="object"
+    condition_expr="" url_expr="string:${object_url}/content_status_history"
+    visible="True">
+  <permission value="Request review"/>
+  <permission value="Review portal content"/>
+ </action>
+</object>
diff --git a/profiles/default/types/Photo.xml b/profiles/default/types/Photo.xml
new file mode 100755
index 0000000..2eb1e27
--- /dev/null
+++ b/profiles/default/types/Photo.xml
@@ -0,0 +1,31 @@
+<?xml version="1.0"?>
+<object name="Photo" meta_type="Factory-based Type Information"
+   xmlns:i18n="http://xml.zope.org/namespaces/i18n">
+ <property name="title">Photo</property>
+ <property name="description">Photo</property>
+ <property name="content_icon">photo_icon.gif</property>
+ <property name="content_meta_type">Photo</property>
+ <property name="product">Portfolio</property>
+ <property name="factory">addPhoto</property>
+ <property name="immediate_view">object/edit</property>
+ <property name="global_allow">True</property>
+ <property name="filter_content_types">True</property>
+ <property name="allowed_content_types"/>
+ <property name="allow_discussion">True</property>
+ <alias from="(Default)" to="photo_view"/>
+ <alias from="info" to="photo_info"/>
+ <alias from="view" to="photo_view"/>
+ <action title="View" action_id="view" category="object" condition_expr=""
+    url_expr="string:${object_url}/photo_view" visible="True">
+  <permission value="View"/>
+ </action>
+ <action title="Edit" action_id="edit" category="object" condition_expr=""
+    url_expr="string:${object_url}/photo_edit_form" visible="True">
+  <permission value="Manage properties"/>
+ </action>
+ <action title="Share" action_id="localroles" category="object"
+    condition_expr="" url_expr="string:${object_url}/folder_localrole_form"
+    visible="True">
+  <permission value="Set Local Roles"/>
+ </action>
+</object>
diff --git a/profiles/default/types/Plinn_Document.xml b/profiles/default/types/Plinn_Document.xml
new file mode 100644
index 0000000..8b11871
--- /dev/null
+++ b/profiles/default/types/Plinn_Document.xml
@@ -0,0 +1,43 @@
+<?xml version="1.0"?>
+<object name="Plinn Document" meta_type="Factory-based Type Information"
+   xmlns:i18n="http://xml.zope.org/namespaces/i18n">
+ <property name="title">Plinn Document</property>
+ <property
+    name="description">Plinn Documents contain text and images that can be layout with  WYSIWYG and drag&amp;drop editor.</property>
+ <property name="content_icon">plinn_doc.gif</property>
+ <property name="content_meta_type">Plinn Document</property>
+ <property name="product"></property>
+ <property name="factory">plinndocument</property>
+ <property name="immediate_view">object/edit</property>
+ <property name="global_allow">True</property>
+ <property name="filter_content_types">True</property>
+ <property name="allowed_content_types"/>
+ <property name="allow_discussion">True</property>
+ <alias from="(Default)" to="plinndocument_view"/>
+ <alias from="gethtml" to="source_html"/>
+ <alias from="info" to="content_info"/>
+ <alias from="view" to="plinndocument_view"/>
+ <action title="View" action_id="view" category="object" condition_expr=""
+    url_expr="string:${object_url}/plinndocument_view" visible="True">
+  <permission value="View"/>
+ </action>
+ <action title="Edit" action_id="edit" category="object" condition_expr=""
+    url_expr="string:${object_url}/plinndocument_edit_form" visible="True">
+  <permission value="Modify portal content"/>
+ </action>
+ <action title="Share" action_id="localroles" category="object"
+    condition_expr="" url_expr="string:${object_url}/folder_localrole_form"
+    visible="True">
+  <permission value="Set Local Roles"/>
+ </action>
+ <action title="History" action_id="changes" category="object"
+    condition_expr="" url_expr="string:${object_url}/changes_history"
+    visible="True">
+  <permission value="View History"/>
+ </action>
+ <action title="Status history" action_id="history" category="workflow"
+    condition_expr="" url_expr="string:${object_url}/content_status_history"
+    visible="True">
+  <permission value="Request review"/>
+ </action>
+</object>
diff --git a/profiles/default/types/Plinn_Folder.xml b/profiles/default/types/Plinn_Folder.xml
new file mode 100755
index 0000000..df009a9
--- /dev/null
+++ b/profiles/default/types/Plinn_Folder.xml
@@ -0,0 +1,69 @@
+<?xml version="1.0"?>
+<object name="Plinn Folder" meta_type="Factory-based Type Information"
+   xmlns:i18n="http://xml.zope.org/namespaces/i18n">
+ <property name="title">Folder</property>
+ <property
+    name="description">Container to put content in categories.</property>
+ <property name="content_icon">folder_icon.gif</property>
+ <property name="content_meta_type">Plinn Folder</property>
+ <property name="product"></property>
+ <property name="factory">plinn.folder.normal</property>
+ <property name="immediate_view">object/folderContents</property>
+ <property name="global_allow">True</property>
+ <property name="filter_content_types">True</property>
+ <property name="allowed_content_types">
+  <element value="Calendar"/>
+  <element value="Document"/>
+  <element value="File"/>
+  <element value="News Item"/>
+  <element value="Plinn Document"/>
+  <element value="Plinn Folder"/>
+  <element value="Portfolio"/>
+  <element value="Topic"/>
+ </property>
+ <property name="allow_discussion">False</property>
+ <alias from="(Default)" to="plinn_folder_view"/>
+ <alias from="mkdir" to="createPlinnFolder"/>
+ <alias from="view" to="folder_contents"/>
+ <action title="View" action_id="view" category="object" condition_expr=""
+    url_expr="string:${object_url}/folder_contents" visible="False">
+  <permission value="View"/>
+ </action>
+ <action title="List" action_id="folderContents" category="object"
+    condition_expr="" url_expr="string:${object_url}/folder_contents"
+    visible="True">
+  <permission value="List folder contents"/>
+ </action>
+ <action title="Edit" action_id="edit" category="object" condition_expr=""
+    url_expr="string:${object_url}/folder_contents" visible="False">
+  <permission value="Manage properties"/>
+ </action>
+ <action title="Import" action_id="import" category="object" condition_expr=""
+    url_expr="string:${object_url}/massupload" visible="True">
+  <permission value="Add portal content"/>
+ </action>
+ <action title="Share" action_id="localroles" category="object"
+    condition_expr="" url_expr="string:${object_url}/folder_localrole_form"
+    visible="True">
+  <permission value="Set Local Roles"/>
+ </action>
+ <action title="Notifications" action_id="folder_notifications"
+    category="object" condition_expr=""
+    url_expr="string:${object_url}/folder_notifications_form" visible="True">
+  <permission value="Subscribe Notification"/>
+ </action>
+ <action title="History" action_id="changes" category="object"
+    condition_expr="" url_expr="string:${object_url}/changes_history"
+    visible="True">
+  <permission value="View History"/>
+ </action>
+ <action title="New..." action_id="new" category="object" condition_expr=""
+    url_expr="string:${object_url}/folder_factories" visible="False">
+  <permission value="Add portal content"/>
+ </action>
+ <action title="Rename items" action_id="rename_items" category="object"
+    condition_expr="" url_expr="string:${object_url}/folder_rename_form"
+    visible="False">
+  <permission value="Add portal content"/>
+ </action>
+</object>
diff --git a/profiles/default/types/Portfolio.xml b/profiles/default/types/Portfolio.xml
new file mode 100755
index 0000000..1c1a5d8
--- /dev/null
+++ b/profiles/default/types/Portfolio.xml
@@ -0,0 +1,61 @@
+<?xml version="1.0"?>
+<object name="Portfolio" meta_type="Factory-based Type Information"
+   xmlns:i18n="http://xml.zope.org/namespaces/i18n">
+ <property name="title">Album photo</property>
+ <property name="description">Folder for photo storage</property>
+ <property name="content_icon">portfolio_icon.gif</property>
+ <property name="content_meta_type">Portfolio</property>
+ <property name="product">Portfolio</property>
+ <property name="factory">addPortfolio</property>
+ <property name="immediate_view">portfolio_view</property>
+ <property name="global_allow">True</property>
+ <property name="filter_content_types">True</property>
+ <property name="allowed_content_types">
+  <element value="Photo"/>
+  <element value="Portfolio"/>
+ </property>
+ <property name="allow_discussion">True</property>
+ <alias from="(Default)" to="portfolio_view"/>
+ <alias from="mkdir" to="createPortfolio"/>
+ <alias from="view" to="portfolio_view"/>
+ <action title="View" action_id="view" category="object" condition_expr=""
+    url_expr="string:${object_url}/portfolio_view" visible="True">
+  <permission value="View"/>
+ </action>
+ <action title="Export as zip" action_id="noajax" category="object"
+    condition_expr="python:object.listNearestFolderContents(contentFilter={'portal_type' : 'Photo'})"
+    url_expr="string:${object_url}/exportAsZipFile" visible="True">
+  <permission value="View"/>
+ </action>
+ <action title="List" action_id="folderContents" category="object"
+    condition_expr="" url_expr="string:${object_url}/folder_contents"
+    visible="True">
+  <permission value="Manage properties"/>
+ </action>
+ <action title="Import" action_id="import" category="object" condition_expr=""
+    url_expr="string:${object_url}/portfolio_edit_form" visible="True">
+  <permission value="Add portal content"/>
+ </action>
+ <action title="Share" action_id="localroles" category="object"
+    condition_expr="" url_expr="string:${object_url}/folder_localrole_form"
+    visible="True">
+  <permission value="Set Local Roles"/>
+ </action>
+ <action title="Edit" action_id="edit" category="object" condition_expr=""
+    url_expr="string:${object_url}/folder_contents" visible="False">
+  <permission value="Manage properties"/>
+ </action>
+ <action title="New..." action_id="new" category="object" condition_expr=""
+    url_expr="string:${object_url}/folder_factories" visible="False">
+  <permission value="Add portal content"/>
+ </action>
+ <action title="Rename items" action_id="rename_items" category="object"
+    condition_expr="" url_expr="string:${object_url}/folder_rename_form"
+    visible="False">
+  <permission value="Add portal content"/>
+ </action>
+ <action title="mkdir" action_id="mkdir" category="object" condition_expr=""
+    url_expr="string:createPortfolio" visible="False">
+  <permission value="Add portal content"/>
+ </action>
+</object>
diff --git a/profiles/default/types/Spacer_Slot.xml b/profiles/default/types/Spacer_Slot.xml
new file mode 100755
index 0000000..9f1a826
--- /dev/null
+++ b/profiles/default/types/Spacer_Slot.xml
@@ -0,0 +1,25 @@
+<?xml version="1.0"?>
+<object name="Spacer Slot" meta_type="Factory-based Type Information"
+   xmlns:i18n="http://xml.zope.org/namespaces/i18n">
+ <property name="title">Spacer Slot</property>
+ <property name="description">Spacer Slot for Mosaic Document</property>
+ <property name="content_icon">mosaic_tool/spacer_icon.gif</property>
+ <property name="content_meta_type">Spacer Slot</property>
+ <property name="product">MosaicDocument</property>
+ <property name="factory">addSpacerSlot</property>
+ <property name="immediate_view">view</property>
+ <property name="global_allow">True</property>
+ <property name="filter_content_types">True</property>
+ <property name="allowed_content_types"/>
+ <property name="allow_discussion">False</property>
+ <alias from="(Default)" to="slot_spacer_view"/>
+ <alias from="view" to="slot_spacer_view"/>
+ <action title="View" action_id="view" category="object" condition_expr=""
+    url_expr="string:slot_spacer_view" visible="True">
+  <permission value="View"/>
+ </action>
+ <action title="Edit" action_id="edit" category="object" condition_expr=""
+    url_expr="string:slot_spacer_form" visible="True">
+  <permission value="Modify portal content"/>
+ </action>
+</object>
diff --git a/profiles/default/types/String_Slot.xml b/profiles/default/types/String_Slot.xml
new file mode 100755
index 0000000..6142898
--- /dev/null
+++ b/profiles/default/types/String_Slot.xml
@@ -0,0 +1,25 @@
+<?xml version="1.0"?>
+<object name="String Slot" meta_type="Factory-based Type Information"
+   xmlns:i18n="http://xml.zope.org/namespaces/i18n">
+ <property name="title">String Slot</property>
+ <property name="description">String Slot for Mosaic Document</property>
+ <property name="content_icon">mosaic_tool/str_icon.gif</property>
+ <property name="content_meta_type">String Slot</property>
+ <property name="product">MosaicDocument</property>
+ <property name="factory">addStringSlot</property>
+ <property name="immediate_view">view</property>
+ <property name="global_allow">True</property>
+ <property name="filter_content_types">True</property>
+ <property name="allowed_content_types"/>
+ <property name="allow_discussion">False</property>
+ <alias from="(Default)" to="slot_string_view"/>
+ <alias from="view" to="slot_string_view"/>
+ <action title="View" action_id="view" category="object" condition_expr=""
+    url_expr="string:slot_string_view" visible="True">
+  <permission value="View"/>
+ </action>
+ <action title="Edit" action_id="edit" category="object" condition_expr=""
+    url_expr="string:slot_string_form" visible="True">
+  <permission value="Modify portal content"/>
+ </action>
+</object>
diff --git a/profiles/default/types/Text_Slot.xml b/profiles/default/types/Text_Slot.xml
new file mode 100755
index 0000000..c2c58ee
--- /dev/null
+++ b/profiles/default/types/Text_Slot.xml
@@ -0,0 +1,25 @@
+<?xml version="1.0"?>
+<object name="Text Slot" meta_type="Factory-based Type Information"
+   xmlns:i18n="http://xml.zope.org/namespaces/i18n">
+ <property name="title">Text Slot</property>
+ <property name="description">Text Slot for Mosaic Document</property>
+ <property name="content_icon">mosaic_tool/txt_icon.gif</property>
+ <property name="content_meta_type">Text Slot</property>
+ <property name="product">MosaicDocument</property>
+ <property name="factory">addStringSlot</property>
+ <property name="immediate_view">view</property>
+ <property name="global_allow">True</property>
+ <property name="filter_content_types">True</property>
+ <property name="allowed_content_types"/>
+ <property name="allow_discussion">False</property>
+ <alias from="(Default)" to="slot_text_view"/>
+ <alias from="view" to="slot_text_view"/>
+ <action title="View" action_id="view" category="object" condition_expr=""
+    url_expr="string:slot_text_view" visible="True">
+  <permission value="View"/>
+ </action>
+ <action title="Edit" action_id="edit" category="object" condition_expr=""
+    url_expr="string:slot_text_form" visible="True">
+  <permission value="Modify portal content"/>
+ </action>
+</object>
diff --git a/profiles/default/types/Topic.xml b/profiles/default/types/Topic.xml
new file mode 100755
index 0000000..3f45edf
--- /dev/null
+++ b/profiles/default/types/Topic.xml
@@ -0,0 +1,48 @@
+<?xml version="1.0"?>
+<object name="Topic" meta_type="Factory-based Type Information"
+   xmlns:i18n="http://xml.zope.org/namespaces/i18n">
+ <property name="title"></property>
+ <property
+    name="description">Topics are canned queries for organizing content with up to date queries into the catalog.</property>
+ <property name="content_icon">topic_icon.gif</property>
+ <property name="content_meta_type">Plinn Topic</property>
+ <property name="product"></property>
+ <property name="factory">plinn.topic</property>
+ <property name="immediate_view">object/edit</property>
+ <property name="global_allow">True</property>
+ <property name="filter_content_types">True</property>
+ <property name="allowed_content_types">
+  <element value="Topic"/>
+ </property>
+ <property name="allow_discussion">False</property>
+ <alias from="(Default)" to="topic_view"/>
+ <alias from="view" to="topic_view"/>
+ <action title="View" action_id="view" category="object" condition_expr=""
+    url_expr="string:${object_url}/topic_view" visible="True">
+  <permission value="View"/>
+ </action>
+ <action title="Edit" action_id="edit" category="object" condition_expr=""
+    url_expr="string:${object_url}/topic_edit_form" visible="True">
+  <permission value="Change portal topics"/>
+ </action>
+ <action title="Subtopics" action_id="folderContents" category="object"
+    condition_expr="" url_expr="string:${object_url}/folder_contents"
+    visible="True">
+  <permission value="View"/>
+ </action>
+ <action title="New..." action_id="new" category="object" condition_expr=""
+    url_expr="string:${object_url}/folder_factories" visible="False">
+  <permission value="Add portal topics"/>
+ </action>
+ <action title="Rename items" action_id="rename_items" category="object"
+    condition_expr="" url_expr="string:${object_url}/folder_rename_form"
+    visible="False">
+  <permission value="Add portal topics"/>
+ </action>
+ <action title="Status history" action_id="history" category="object"
+    condition_expr="" url_expr="string:${object_url}/content_status_history"
+    visible="True">
+  <permission value="Request review"/>
+  <permission value="Review portal content"/>
+ </action>
+</object>
diff --git a/profiles/default/various.py b/profiles/default/various.py
new file mode 100644
index 0000000..db55354
--- /dev/null
+++ b/profiles/default/various.py
@@ -0,0 +1,112 @@
+## Script (Python) "various.py"
+##bind container=container
+##bind context=context
+##bind namespace=
+##bind script=script
+##bind subpath=traverse_subpath
+##parameters=site
+##title=Import various Plinn setting
+##
+from Products.CMFCore.utils import getToolByName
+from Products.CMFCore.exceptions import BadRequest
+from Products.Plinn.exceptions import WorkflowException
+# TODO : CMF-2.1 compat
+#from Products.PlacelessTranslationService.MessageID import MessageIDFactory
+#_ = MessageIDFactory('plinn')
+translate = lambda msg : msg
+#---
+
+
+# constructs misc objects
+# (productName, factory, id)
+misc=(('StandardCacheManagers',	'manage_addAcceleratedHTTPCacheManager',	'HTTPCache'),
+	 ('StandardCacheManagers',	'manage_addRAMCacheManager', 				'rcm'),
+	 ('GroupUserFolder',		'manage_addGroupUserFolder',				'acl_users'))
+
+
+dispatcher = site.manage_addProduct
+for m in misc :
+	try : getattr(dispatcher[m[0]], m[1])(m[2])
+	except : pass
+
+if site.acl_users.Users.acl_users.encrypt_passwords :
+	site.acl_users.Users.acl_users.manage_setUserFolderProperties(encrypt_passwords=False)
+
+
+# configure mosaicTool
+blockTypes = ('Action Box Block', 'Container Block', 'File Block', 'Image Block', 'Mosaic Document',
+			  'Section Block', 'Spacer Block', 'Text Block', 'Tree Box Block')
+
+mostool = getToolByName(site, 'mosaic_tool')
+addBI = mostool.manage_addProduct['MosaicDocument'].addMosaicBlockInformation
+for bt in blockTypes :
+	try : addBI(blockType=bt)
+	except BadRequest : pass
+
+# contents
+ttool = getToolByName(site, 'portal_types')
+wtool = getToolByName(site, 'portal_workflow')
+
+def constructOrSkip(*args, **kw) :
+	try : ttool.constructContent(*args, **kw)
+	except BadRequest : pass
+
+def addBlockOrSkip(container, *args, **kw) :
+	try : container.addBlock(*args, **kw)
+	except BadRequest : pass
+
+def doActionForOrSkip(*args, **kw) :
+	try : wtool.doActionFor(*args, **kw)
+	except WorkflowException : pass
+	
+# home page
+constructOrSkip(  'Document', site, 'index_html'
+				, title =	translate('Home')
+				, text_format='html'
+				, text=site.default_home_page_content().encode('utf-8'))
+doActionForOrSkip(site.index_html, 'direct_publish')
+
+# default folders
+constructOrSkip('Plinn Folder', site, 'Members', title =	translate('Members'))
+#constructOrSkip('Plinn Folder', site, 'global_settings', title = translate('Portlets'))
+if not hasattr(site, 'global_settings') :
+	site.manage_addProduct['OFSP'].manage_addFolder('global_settings')
+if not site.global_settings.hasProperty('noIndex'):
+	site.global_settings.manage_addProperty('noIndex', True, 'boolean')
+
+# left boxes
+constructOrSkip('Mosaic Document', site.global_settings, 'left_boxes', title=translate('Left boxes'))
+lb = site.global_settings.left_boxes
+addBlockOrSkip(lb, 'Tree Box Block', 0, id='nav_tree')
+lb.nav_tree.saveBlock(filteredMetaTypes={'text' : ['Plinn Folder', 'Portfolio', 'Topic']})
+doActionForOrSkip(lb, 'direct_publish')
+
+# right boxes
+constructOrSkip('Mosaic Document', site.global_settings, 'right_boxes', title=translate('Right boxes'))
+rb = site.global_settings.right_boxes
+addBlockOrSkip(rb, 'Action Box Block', 0, id='global_actions')
+rb.global_actions.saveBlock(boxTitle={'text' : translate('Global actions')}, categories={'text' : ['global']})
+addBlockOrSkip(rb, 'Action Box Block', 0, id='workflow_actions')
+rb.workflow_actions.saveBlock(boxTitle={'text' : translate('Workflow')}, categories={'text' : ['workflow']})
+doActionForOrSkip(rb, 'direct_publish')
+
+# tools settings
+mtool = getToolByName(site, 'portal_membership')
+mtool.setMemberAreaPortalType('Plinn Folder')
+
+gtool = getToolByName(site, 'portal_groups')
+gtool.setGroupWorkspaceContainerType('Plinn Folder')
+gtool.setGroupWorkspaceType('Plinn Folder')
+
+caltool = getToolByName(site, 'portal_calendar')
+caltool.configureTool(['created', 'modified', 'DateTimeOriginal'], [9, 18])
+
+# Caches
+HTTPCache = site.HTTPCache
+HTTPCache.manage_editProps(title='Accelerated HTTP Cache',
+						   settings={'anonymous_only' : False, 'interval' : 3600,'notify_urls' : []})
+
+gtool = getToolByName(site, 'portal_groups')
+gtool.ZCacheable_setManagerId('rcm')
+
+return 'Various Plinn settings imported'
\ No newline at end of file
diff --git a/profiles/default/workflows.xml b/profiles/default/workflows.xml
new file mode 100644
index 0000000..20b0741
--- /dev/null
+++ b/profiles/default/workflows.xml
@@ -0,0 +1,31 @@
+<?xml version="1.0"?>
+<object name="portal_workflow" meta_type="CMF Workflow Tool">
+ <property name="title"></property>
+ <object name="default_workflow" meta_type="Workflow"/>
+ <object name="folder_workflow" meta_type="Workflow"/>
+ <object name="member_workflow" meta_type="Workflow"/>
+ <object name="portfolio_workflow" meta_type="Workflow"/>
+ <bindings>
+  <default>
+   <bound-workflow workflow_id="default_workflow"/>
+  </default>
+  <type type_id="CMF Site"/>
+  <type type_id="Calendar">
+   <bound-workflow workflow_id="folder_workflow"/>
+  </type>
+  <type type_id="Discussion Item"/>
+  <type type_id="File Slot"/>
+  <type type_id="Image Slot"/>
+  <type type_id="List Slot"/>
+  <type type_id="Photo"/>
+  <type type_id="Plinn Folder">
+   <bound-workflow workflow_id="folder_workflow"/>
+  </type>
+  <type type_id="Portfolio">
+   <bound-workflow workflow_id="portfolio_workflow"/>
+  </type>
+  <type type_id="Spacer Slot"/>
+  <type type_id="String Slot"/>
+  <type type_id="Text Slot"/>
+ </bindings>
+</object>
diff --git a/profiles/default/workflows/default_workflow/definition.xml b/profiles/default/workflows/default_workflow/definition.xml
new file mode 100644
index 0000000..4ece941
--- /dev/null
+++ b/profiles/default/workflows/default_workflow/definition.xml
@@ -0,0 +1,275 @@
+<?xml version="1.0"?>
+<dc-workflow workflow_id="default_workflow"
+             title="Plinn default workflow" description=""
+             state_variable="review_state"
+             initial_state="private" manager_bypass="False">
+ 
+ <permission>Access contents information</permission>
+ <permission>Change portal events</permission>
+ <permission>Change portal topics</permission>
+ <permission>Delete Owned Objects</permission>
+ <permission>Manage properties</permission>
+ <permission>Modify portal content</permission>
+ <permission>View</permission>
+ <state state_id="pending" title="Waiting for reviewer">
+  <exit-transition transition_id="publish"/>
+  <exit-transition transition_id="reject"/>
+  <exit-transition transition_id="retract"/>
+  <exit-transition transition_id="send_email"/>
+  <permission-map name="Access contents information"
+                  acquired="False">
+   <permission-role>Contributor</permission-role>
+   <permission-role>Manager</permission-role>
+   <permission-role>Owner</permission-role>
+   <permission-role>Reader</permission-role>
+   <permission-role>Reviewer</permission-role>
+  </permission-map>
+  <permission-map name="Change portal events"
+                  acquired="False">
+   <permission-role>Manager</permission-role>
+   <permission-role>Reviewer</permission-role>
+  </permission-map>
+  <permission-map name="Change portal topics"
+                  acquired="False">
+   <permission-role>Manager</permission-role>
+   <permission-role>Reviewer</permission-role>
+  </permission-map>
+  <permission-map name="Delete Owned Objects"
+                  acquired="False">
+   <permission-role>Manager</permission-role>
+  </permission-map>
+  <permission-map name="Manage properties" acquired="False">
+   <permission-role>Manager</permission-role>
+   <permission-role>Reviewer</permission-role>
+  </permission-map>
+  <permission-map name="Modify portal content"
+                  acquired="False">
+   <permission-role>Manager</permission-role>
+   <permission-role>Reviewer</permission-role>
+  </permission-map>
+  <permission-map name="View" acquired="False">
+   <permission-role>Contributor</permission-role>
+   <permission-role>Manager</permission-role>
+   <permission-role>Owner</permission-role>
+   <permission-role>Reader</permission-role>
+   <permission-role>Reviewer</permission-role>
+  </permission-map>
+ </state>
+ <state state_id="private"
+        title="Non-visible and editable only by owner">
+  <exit-transition transition_id="direct_publish"/>
+  <exit-transition transition_id="send_email"/>
+  <exit-transition transition_id="submit"/>
+  <permission-map name="Access contents information"
+                  acquired="False">
+   <permission-role>Contributor</permission-role>
+   <permission-role>Manager</permission-role>
+   <permission-role>Owner</permission-role>
+   <permission-role>Reader</permission-role>
+  </permission-map>
+  <permission-map name="Change portal events"
+                  acquired="False">
+   <permission-role>Contributor</permission-role>
+   <permission-role>Manager</permission-role>
+   <permission-role>Owner</permission-role>
+  </permission-map>
+  <permission-map name="Change portal topics"
+                  acquired="False">
+   <permission-role>Contributor</permission-role>
+   <permission-role>Manager</permission-role>
+   <permission-role>Owner</permission-role>
+  </permission-map>
+  <permission-map name="Delete Owned Objects"
+                  acquired="False">
+   <permission-role>Manager</permission-role>
+   <permission-role>Owner</permission-role>
+  </permission-map>
+  <permission-map name="Manage properties" acquired="False">
+   <permission-role>Contributor</permission-role>
+   <permission-role>Manager</permission-role>
+   <permission-role>Owner</permission-role>
+  </permission-map>
+  <permission-map name="Modify portal content"
+                  acquired="False">
+   <permission-role>Contributor</permission-role>
+   <permission-role>Manager</permission-role>
+   <permission-role>Owner</permission-role>
+  </permission-map>
+  <permission-map name="View" acquired="False">
+   <permission-role>Contributor</permission-role>
+   <permission-role>Manager</permission-role>
+   <permission-role>Owner</permission-role>
+   <permission-role>Reader</permission-role>
+  </permission-map>
+ </state>
+ <state state_id="published" title="Public">
+  <exit-transition transition_id="reject"/>
+  <exit-transition transition_id="retract"/>
+  <exit-transition transition_id="send_email"/>
+  <permission-map name="Access contents information"
+                  acquired="True">
+   <permission-role>Anonymous</permission-role>
+   <permission-role>Manager</permission-role>
+  </permission-map>
+  <permission-map name="Change portal events"
+                  acquired="False">
+   <permission-role>Manager</permission-role>
+  </permission-map>
+  <permission-map name="Change portal topics"
+                  acquired="False">
+   <permission-role>Manager</permission-role>
+  </permission-map>
+  <permission-map name="Delete Owned Objects"
+                  acquired="False">
+   <permission-role>Manager</permission-role>
+  </permission-map>
+  <permission-map name="Manage properties" acquired="False">
+   <permission-role>Manager</permission-role>
+  </permission-map>
+  <permission-map name="Modify portal content"
+                  acquired="False">
+   <permission-role>Manager</permission-role>
+  </permission-map>
+  <permission-map name="View" acquired="True">
+   <permission-role>Anonymous</permission-role>
+   <permission-role>Manager</permission-role>
+  </permission-map>
+ </state>
+ <transition transition_id="direct_publish"
+             title="Reviewer publishes content"
+             new_state="published" trigger="USER"
+             before_script="" after_script="">
+  <description>Reviewer can directly publish content  if he have de Owner role (not necessarily ownership)</description>
+  <action url="%(content_url)s/content_publish_form?direct:boolean=True"
+          category="workflow">Publish</action>
+  <guard>
+   <guard-permission>Review portal content</guard-permission>
+   <guard-expression>python:user.allowed(here, ['Owner'])</guard-expression>
+  </guard>
+ </transition>
+ <transition transition_id="publish"
+             title="Reviewer publishes content"
+             new_state="published" trigger="USER"
+             before_script="" after_script="">
+  <action url="%(content_url)s/content_publish_form"
+          category="workflow">Publish</action>
+  <guard>
+   <guard-permission>Review portal content</guard-permission>
+  </guard>
+ </transition>
+ <transition transition_id="reject"
+             title="Reviewer rejects submission"
+             new_state="private" trigger="USER"
+             before_script="" after_script="">
+  <action url="%(content_url)s/content_reject_form"
+          category="workflow">Reject</action>
+  <guard>
+   <guard-permission>Review portal content</guard-permission>
+  </guard>
+ </transition>
+ <transition transition_id="retract"
+             title="Member retracts submission"
+             new_state="private" trigger="USER"
+             before_script="" after_script="">
+  <action url="%(content_url)s/content_retract_form"
+          category="workflow">Retract</action>
+  <guard>
+   <guard-permission>Request review</guard-permission>
+   <guard-expression>python:not(here.portal_membership.checkPermission('Review portal content', here))</guard-expression>
+  </guard>
+ </transition>
+ <transition transition_id="send_email" title=""
+             new_state="" trigger="USER" before_script=""
+             after_script="">
+  <action url="%(content_url)s/send_email_form?wfid=default_workflow"
+          category="workflow">Send an email</action>
+  <guard>
+   <guard-permission>View</guard-permission>
+   <guard-role>Member</guard-role>
+  </guard>
+ </transition>
+ <transition transition_id="submit"
+             title="Member requests publishing"
+             new_state="pending" trigger="USER"
+             before_script="" after_script="">
+  <action url="%(content_url)s/content_submit_form"
+          category="workflow">Submit</action>
+  <guard>
+   <guard-permission>Request review</guard-permission>
+  </guard>
+ </transition>
+ <worklist worklist_id="reviewer_queue" title="">
+  <description>Reviewer tasks</description>
+  <action url="%(portal_url)s/list_pending_contents"
+          category="global">Pending (%(count)d)</action>
+  <guard>
+   <guard-expression>here/havePendingContents</guard-expression>
+  </guard>
+  <match name="review_state" values="pending"/>
+ </worklist>
+ <variable variable_id="action" for_catalog="False"
+           for_status="True" update_always="True">
+  <description>The last transition</description>
+  <default>
+   
+   <expression>transition/getId|nothing</expression>
+  </default>
+  <guard>
+  </guard>
+ </variable>
+ <variable variable_id="actor" for_catalog="False"
+           for_status="True" update_always="True">
+  <description>The ID of the user who performed the last transition</description>
+  <default>
+   
+   <expression>user/getId</expression>
+  </default>
+  <guard>
+  </guard>
+ </variable>
+ <variable variable_id="comments" for_catalog="False"
+           for_status="True" update_always="True">
+  <description>Comments about the last transition</description>
+  <default>
+   
+   <expression>python:state_change.kwargs.get('comment', '')</expression>
+  </default>
+  <guard>
+  </guard>
+ </variable>
+ <variable variable_id="email_sent" for_catalog="False"
+           for_status="True" update_always="True">
+  <default>
+   
+   <expression>python:scripts.sendNotificationEmail(state_change) or state_change.kwargs.get('email_sent', [])</expression>
+  </default>
+  <guard>
+  </guard>
+ </variable>
+ <variable variable_id="review_history" for_catalog="False"
+           for_status="False" update_always="False">
+  <description>Provides access to workflow history</description>
+  <default>
+   
+   <expression>state_change/getHistory</expression>
+  </default>
+  <guard>
+   <guard-permission>Request review</guard-permission>
+   <guard-permission>Review portal content</guard-permission>
+  </guard>
+ </variable>
+ <variable variable_id="time" for_catalog="False"
+           for_status="True" update_always="True">
+  <description>Time of the last transition</description>
+  <default>
+   
+   <expression>state_change/getDateTime</expression>
+  </default>
+  <guard>
+  </guard>
+ </variable>
+ <script script_id="sendNotificationEmail"
+         type="Script (Python)"
+         filename="workflows/default_workflow/scripts/sendNotificationEmail.py"
+         module="" function=""/>
+</dc-workflow>
diff --git a/profiles/default/workflows/default_workflow/scripts/sendNotificationEmail.py b/profiles/default/workflows/default_workflow/scripts/sendNotificationEmail.py
new file mode 100644
index 0000000..9b833b6
--- /dev/null
+++ b/profiles/default/workflows/default_workflow/scripts/sendNotificationEmail.py
@@ -0,0 +1,61 @@
+## Script (Python) "sendNotificationEmail"
+##bind container=container
+##bind context=context
+##bind namespace=
+##bind script=script
+##bind subpath=traverse_subpath
+##parameters=sci
+##title=
+##
+#TODO : translate messages
+#from Products.PlacelessTranslationService.MessageID import MessageIDFactory
+#_ = MessageIDFactory('plinn')
+_ = lambda x : lambda : x
+
+portal = context.portal_url.getPortalObject()
+
+mtool = portal.portal_membership
+
+recipients = sci.kwargs.get('recipients', [])
+if not recipients :
+	return []
+
+
+MailHost = portal.MailHost
+from quopri import encodestring
+
+def encodeAdr(member) :
+	name = member.getMemberFullName(nameBefore=0)
+	email = member.getProperty('email')
+	qpName = encodestring(name).replace('=\n', '')
+	return '''"=?utf-8?q?%s?=" <%s>''' % (qpName, email)
+
+
+object = sci.object
+
+sender = mtool.getAuthenticatedMember()
+sender = encodeAdr(sender)
+
+recipientsFormated = map(encodeAdr, mtool.getMembers( recipients ))
+mto = ', '.join(recipientsFormated)
+if mto[-2:] == ', ' :
+	mto = mto[:-2]
+
+footer = """
+------------
+Document : %s
+""" % object.absolute_url()
+
+
+message = context.echange_mail_template(  From = sender
+										, To = mto
+										, Subject = "=?utf-8?q?%s?=" % encodestring(portal.Title() + " : " + _("Document state change notificaction")()).replace('=\n', '')
+										, ContentType = 'text/plain'
+										, charset = 'UTF-8'
+										, body=sci.kwargs.get('comment', '')
+										, footer=footer)
+
+
+MailHost.send( message.encode('utf-8') )
+
+return recipients
diff --git a/profiles/default/workflows/folder_workflow/definition.xml b/profiles/default/workflows/folder_workflow/definition.xml
new file mode 100644
index 0000000..a2f56bd
--- /dev/null
+++ b/profiles/default/workflows/folder_workflow/definition.xml
@@ -0,0 +1,197 @@
+<?xml version="1.0"?>
+<dc-workflow workflow_id="folder_workflow"
+             title="Plinn folder workflow" description=""
+             state_variable="review_state"
+             initial_state="private" manager_bypass="False">
+ 
+ <permission>Manage properties</permission>
+ <permission>Modify portal content</permission>
+ <permission>View</permission>
+ <state state_id="pending" title="">
+  <exit-transition transition_id="publish"/>
+  <exit-transition transition_id="reject"/>
+  <exit-transition transition_id="retract"/>
+  <exit-transition transition_id="send_email"/>
+  <permission-map name="Manage properties" acquired="False">
+   <permission-role>Manager</permission-role>
+   <permission-role>Reviewer</permission-role>
+  </permission-map>
+  <permission-map name="Modify portal content"
+                  acquired="False">
+   <permission-role>Manager</permission-role>
+   <permission-role>Reviewer</permission-role>
+  </permission-map>
+  <permission-map name="View" acquired="False">
+   <permission-role>Contributor</permission-role>
+   <permission-role>Manager</permission-role>
+   <permission-role>Owner</permission-role>
+   <permission-role>Reader</permission-role>
+   <permission-role>Reviewer</permission-role>
+  </permission-map>
+ </state>
+ <state state_id="private" title="">
+  <exit-transition transition_id="direct_publish"/>
+  <exit-transition transition_id="send_email"/>
+  <exit-transition transition_id="submit"/>
+  <permission-map name="Manage properties" acquired="False">
+   <permission-role>Contributor</permission-role>
+   <permission-role>Manager</permission-role>
+   <permission-role>Owner</permission-role>
+  </permission-map>
+  <permission-map name="Modify portal content"
+                  acquired="False">
+   <permission-role>Contributor</permission-role>
+   <permission-role>Manager</permission-role>
+   <permission-role>Owner</permission-role>
+  </permission-map>
+  <permission-map name="View" acquired="False">
+   <permission-role>Contributor</permission-role>
+   <permission-role>Manager</permission-role>
+   <permission-role>Owner</permission-role>
+   <permission-role>Reader</permission-role>
+  </permission-map>
+ </state>
+ <state state_id="published" title="">
+  <exit-transition transition_id="reject"/>
+  <exit-transition transition_id="retract"/>
+  <exit-transition transition_id="send_email"/>
+  <permission-map name="Manage properties" acquired="False">
+   <permission-role>Manager</permission-role>
+  </permission-map>
+  <permission-map name="Modify portal content"
+                  acquired="False">
+   <permission-role>Manager</permission-role>
+  </permission-map>
+  <permission-map name="View" acquired="True">
+   <permission-role>Anonymous</permission-role>
+  </permission-map>
+ </state>
+ <transition transition_id="direct_publish"
+             title="Reviewer publishes content"
+             new_state="published" trigger="USER"
+             before_script="" after_script="">
+  <description>Reviewer can directly publish content  if he have de Owner role (not necessarily ownership)</description>
+  <action url="%(content_url)s/content_publish_form?direct:boolean=True"
+          category="workflow">Publish</action>
+  <guard>
+   <guard-permission>Review portal content</guard-permission>
+   <guard-expression>python:user.allowed(here, ['Owner'])</guard-expression>
+  </guard>
+ </transition>
+ <transition transition_id="publish"
+             title="Reviewer publishes content"
+             new_state="published" trigger="USER"
+             before_script="" after_script="">
+  <action url="%(content_url)s/content_publish_form"
+          category="workflow">Publish</action>
+  <guard>
+   <guard-permission>Review portal content</guard-permission>
+  </guard>
+ </transition>
+ <transition transition_id="reject"
+             title="Reviewer rejects submission"
+             new_state="private" trigger="USER"
+             before_script="" after_script="">
+  <action url="%(content_url)s/content_reject_form"
+          category="workflow">Reject</action>
+  <guard>
+   <guard-permission>Review portal content</guard-permission>
+  </guard>
+ </transition>
+ <transition transition_id="retract"
+             title="Member retracts submission"
+             new_state="private" trigger="USER"
+             before_script="" after_script="">
+  <action url="%(content_url)s/content_retract_form"
+          category="workflow">Retract</action>
+  <guard>
+   <guard-permission>Request review</guard-permission>
+   <guard-expression>python:not(here.portal_membership.checkPermission('Review portal content', here))</guard-expression>
+  </guard>
+ </transition>
+ <transition transition_id="send_email" title=""
+             new_state="" trigger="USER" before_script=""
+             after_script="">
+  <action url="%(content_url)s/send_email_form?wfid=folder_workflow"
+          category="workflow">Send an email</action>
+  <guard>
+   <guard-permission>View</guard-permission>
+   <guard-role>Member</guard-role>
+  </guard>
+ </transition>
+ <transition transition_id="submit"
+             title="Member requests publishing"
+             new_state="pending" trigger="USER"
+             before_script="" after_script="">
+  <action url="%(content_url)s/content_submit_form"
+          category="workflow">Submit</action>
+  <guard>
+   <guard-permission>Request review</guard-permission>
+  </guard>
+ </transition>
+ <variable variable_id="action" for_catalog="False"
+           for_status="True" update_always="True">
+  <description>The last transition</description>
+  <default>
+   
+   <expression>transition/getId|nothing</expression>
+  </default>
+  <guard>
+  </guard>
+ </variable>
+ <variable variable_id="actor" for_catalog="False"
+           for_status="True" update_always="True">
+  <description>The ID of the user who performed the last transition</description>
+  <default>
+   
+   <expression>user/getId</expression>
+  </default>
+  <guard>
+  </guard>
+ </variable>
+ <variable variable_id="comments" for_catalog="False"
+           for_status="True" update_always="True">
+  <description>Comments about the last transition</description>
+  <default>
+   
+   <expression>python:state_change.kwargs.get('comment', '')</expression>
+  </default>
+  <guard>
+  </guard>
+ </variable>
+ <variable variable_id="email_sent" for_catalog="False"
+           for_status="True" update_always="True">
+  <default>
+   
+   <expression>python:scripts.sendNotificationEmail(state_change) or state_change.kwargs.get('email_sent', [])</expression>
+  </default>
+  <guard>
+  </guard>
+ </variable>
+ <variable variable_id="review_history" for_catalog="False"
+           for_status="False" update_always="False">
+  <description>Provides access to workflow history</description>
+  <default>
+   
+   <expression>state_change/getHistory</expression>
+  </default>
+  <guard>
+   <guard-permission>Request review</guard-permission>
+   <guard-permission>Review portal content</guard-permission>
+  </guard>
+ </variable>
+ <variable variable_id="time" for_catalog="False"
+           for_status="True" update_always="True">
+  <description>Time of the last transition</description>
+  <default>
+   
+   <expression>state_change/getDateTime</expression>
+  </default>
+  <guard>
+  </guard>
+ </variable>
+ <script script_id="sendNotificationEmail"
+         type="Script (Python)"
+         filename="workflows/folder_workflow/scripts/sendNotificationEmail.py"
+         module="" function=""/>
+</dc-workflow>
diff --git a/profiles/default/workflows/folder_workflow/scripts/sendNotificationEmail.py b/profiles/default/workflows/folder_workflow/scripts/sendNotificationEmail.py
new file mode 100644
index 0000000..9b833b6
--- /dev/null
+++ b/profiles/default/workflows/folder_workflow/scripts/sendNotificationEmail.py
@@ -0,0 +1,61 @@
+## Script (Python) "sendNotificationEmail"
+##bind container=container
+##bind context=context
+##bind namespace=
+##bind script=script
+##bind subpath=traverse_subpath
+##parameters=sci
+##title=
+##
+#TODO : translate messages
+#from Products.PlacelessTranslationService.MessageID import MessageIDFactory
+#_ = MessageIDFactory('plinn')
+_ = lambda x : lambda : x
+
+portal = context.portal_url.getPortalObject()
+
+mtool = portal.portal_membership
+
+recipients = sci.kwargs.get('recipients', [])
+if not recipients :
+	return []
+
+
+MailHost = portal.MailHost
+from quopri import encodestring
+
+def encodeAdr(member) :
+	name = member.getMemberFullName(nameBefore=0)
+	email = member.getProperty('email')
+	qpName = encodestring(name).replace('=\n', '')
+	return '''"=?utf-8?q?%s?=" <%s>''' % (qpName, email)
+
+
+object = sci.object
+
+sender = mtool.getAuthenticatedMember()
+sender = encodeAdr(sender)
+
+recipientsFormated = map(encodeAdr, mtool.getMembers( recipients ))
+mto = ', '.join(recipientsFormated)
+if mto[-2:] == ', ' :
+	mto = mto[:-2]
+
+footer = """
+------------
+Document : %s
+""" % object.absolute_url()
+
+
+message = context.echange_mail_template(  From = sender
+										, To = mto
+										, Subject = "=?utf-8?q?%s?=" % encodestring(portal.Title() + " : " + _("Document state change notificaction")()).replace('=\n', '')
+										, ContentType = 'text/plain'
+										, charset = 'UTF-8'
+										, body=sci.kwargs.get('comment', '')
+										, footer=footer)
+
+
+MailHost.send( message.encode('utf-8') )
+
+return recipients
diff --git a/profiles/default/workflows/member_workflow/definition.xml b/profiles/default/workflows/member_workflow/definition.xml
new file mode 100644
index 0000000..4422350
--- /dev/null
+++ b/profiles/default/workflows/member_workflow/definition.xml
@@ -0,0 +1,130 @@
+<?xml version="1.0"?>
+<dc-workflow workflow_id="member_workflow"
+             title="Plinn member registration workflow"
+             description="" state_variable="review_state"
+             initial_state="m_initial"
+             manager_bypass="False">
+ 
+ <state state_id="m_initial" title="">
+  <exit-transition transition_id="create"/>
+  <exit-transition transition_id="silent_register"/>
+ </state>
+ <state state_id="m_pending" title="">
+  <exit-transition transition_id="register"/>
+  <exit-transition transition_id="reject"/>
+ </state>
+ <state state_id="m_registered" title="">
+ </state>
+ <state state_id="m_rejected" title="">
+ </state>
+ <transition transition_id="create" title=""
+             new_state="m_pending" trigger="AUTOMATIC"
+             before_script="" after_script="">
+  
+  <guard>
+   <guard-expression>python:state_change.getPortal().portal_membership.isAnonymousUser()</guard-expression>
+  </guard>
+ </transition>
+ <transition transition_id="register"
+             title="Register member"
+             new_state="m_registered" trigger="USER"
+             before_script="before_register"
+             after_script="sendNotificationEmail">
+  
+  <guard>
+   <guard-permission>Manage Groups</guard-permission>
+   <guard-permission>Set Member Properties</guard-permission>
+  </guard>
+ </transition>
+ <transition transition_id="reject"
+             title="Reviewer rejects registration"
+             new_state="" trigger="USER" before_script=""
+             after_script="after_reject">
+  
+  <guard>
+   <guard-permission>Manage Groups</guard-permission>
+   <guard-permission>Set Member Properties</guard-permission>
+   <guard-permission>Remove member</guard-permission>
+  </guard>
+ </transition>
+ <transition transition_id="silent_register" title=""
+             new_state="m_registered" trigger="AUTOMATIC"
+             before_script="before_register" after_script="">
+  
+  <guard>
+   <guard-permission>Manage Groups</guard-permission>
+   <guard-permission>Set Member Properties</guard-permission>
+  </guard>
+ </transition>
+ <worklist worklist_id="reviewer_queue" title="">
+  <description>Reviewer tasks</description>
+  <action url="%(portal_url)s/pending_members"
+          category="global">Membres en attente (%(count)d)</action>
+  <guard>
+   <guard-permission>Set Member Properties</guard-permission>
+  </guard>
+  <match name="review_state" values="m_pending"/>
+ </worklist>
+ <variable variable_id="action" for_catalog="False"
+           for_status="True" update_always="True">
+  <description>The last transition</description>
+  <default>
+   
+   <expression>transition/getId|nothing</expression>
+  </default>
+  <guard>
+  </guard>
+ </variable>
+ <variable variable_id="actor" for_catalog="False"
+           for_status="True" update_always="True">
+  <description>The ID of the user who performed the last transition</description>
+  <default>
+   
+   <expression>user/getId</expression>
+  </default>
+  <guard>
+  </guard>
+ </variable>
+ <variable variable_id="comments" for_catalog="False"
+           for_status="True" update_always="True">
+  <description>Comments about the last transition</description>
+  <default>
+   
+   <expression>python:state_change.kwargs.get('comment', '')</expression>
+  </default>
+  <guard>
+  </guard>
+ </variable>
+ <variable variable_id="review_history" for_catalog="False"
+           for_status="False" update_always="False">
+  <description>Provides access to workflow history</description>
+  <default>
+   
+   <expression>state_change/getHistory</expression>
+  </default>
+  <guard>
+   <guard-permission>Request review</guard-permission>
+   <guard-permission>Review portal content</guard-permission>
+  </guard>
+ </variable>
+ <variable variable_id="time" for_catalog="False"
+           for_status="True" update_always="True">
+  <description>Time of the last transition</description>
+  <default>
+   
+   <expression>state_change/getDateTime</expression>
+  </default>
+  <guard>
+  </guard>
+ </variable>
+ <script script_id="after_reject" type="Script (Python)"
+         filename="workflows/member_workflow/scripts/after_reject.py"
+         module="" function=""/>
+ <script script_id="before_register" type="Script (Python)"
+         filename="workflows/member_workflow/scripts/before_register.py"
+         module="" function=""/>
+ <script script_id="sendNotificationEmail"
+         type="Script (Python)"
+         filename="workflows/member_workflow/scripts/sendNotificationEmail.py"
+         module="" function=""/>
+</dc-workflow>
diff --git a/profiles/default/workflows/member_workflow/scripts/after_reject.py b/profiles/default/workflows/member_workflow/scripts/after_reject.py
new file mode 100644
index 0000000..f9e7df1
--- /dev/null
+++ b/profiles/default/workflows/member_workflow/scripts/after_reject.py
@@ -0,0 +1,45 @@
+## Script (Python) "after_reject"
+##bind container=container
+##bind context=context
+##bind namespace=
+##bind script=script
+##bind subpath=traverse_subpath
+##parameters=sci
+##title=
+##
+from Products.CMFCore.utils import getToolByName
+mtool = getToolByName(context, 'portal_membership')
+portal = context.portal_url.getPortalObject()
+MailHost = portal.MailHost
+from quopri import encodestring
+
+def encodeAdr(member) :
+	name = member.getMemberFullName(nameBefore=0)
+	email = member.getProperty('email')
+	qpName = encodestring(name).replace('=\n', '')
+	return '''"=?utf-8?q?%s?=" <%s>''' % (qpName, email)
+
+
+member = sci.object
+
+sender = mtool.getAuthenticatedMember()
+sender = encodeAdr(sender)
+mto = encodeAdr(member)
+
+subject = sci.kwargs.get('subject', '').strip()
+body = sci.kwargs.get('body', '').strip()
+
+if not (subject and body) :
+	raise ValueError, "You must send a consitent email to reject the membership request."
+
+mtool.removeMembers(memberIds = [member.getId()])
+
+message = context.echange_mail_template(  From = sender
+										, To = mto
+										, Subject = "=?utf-8?q?%s?=" % encodestring(subject).replace('=\n', '')
+										, ContentType = 'text/plain'
+										, charset = 'UTF-8'
+										, body= body
+										)
+
+MailHost.send( message.encode('utf-8') )
diff --git a/profiles/default/workflows/member_workflow/scripts/before_register.py b/profiles/default/workflows/member_workflow/scripts/before_register.py
new file mode 100644
index 0000000..40b93c0
--- /dev/null
+++ b/profiles/default/workflows/member_workflow/scripts/before_register.py
@@ -0,0 +1,27 @@
+## Script (Python) "before_register"
+##bind container=container
+##bind context=context
+##bind namespace=
+##bind script=script
+##bind subpath=traverse_subpath
+##parameters=sci
+##title=
+##
+portal = sci.getPortal()
+member = sci.object
+
+
+from Products.Plinn.RegistrationTool import DEFAULT_MEMBER_GROUP
+from Products.CMFCore.utils import getToolByName
+
+gtool = getToolByName(portal, 'portal_groups')
+mtool = getToolByName(portal, 'portal_membership')
+
+
+if gtool.getGroupById(DEFAULT_MEMBER_GROUP) is None :
+	gtool.addGroup(DEFAULT_MEMBER_GROUP)
+	aclu = portal.acl_users
+	aclu.changeUser(aclu.getGroupPrefix() + DEFAULT_MEMBER_GROUP, roles=['Member', ])
+
+g = gtool.getGroupById(DEFAULT_MEMBER_GROUP)
+g.addMember(member.getId())
diff --git a/profiles/default/workflows/member_workflow/scripts/sendNotificationEmail.py b/profiles/default/workflows/member_workflow/scripts/sendNotificationEmail.py
new file mode 100644
index 0000000..69f1a2f
--- /dev/null
+++ b/profiles/default/workflows/member_workflow/scripts/sendNotificationEmail.py
@@ -0,0 +1,64 @@
+## Script (Python) "sendNotificationEmail"
+##bind container=container
+##bind context=context
+##bind namespace=
+##bind script=script
+##bind subpath=traverse_subpath
+##parameters=sci
+##title=
+##
+#TODO : translate messages
+#from Products.PlacelessTranslationService.MessageID import MessageIDFactory
+#_ = MessageIDFactory('plinn')
+#cmfMessages = MessageIDFactory('cmf_default')
+_ = cmfMessages = lambda x : lambda : x
+from quopri import encodestring
+
+portal = context.portal_url.getPortalObject()
+mtool = portal.portal_membership
+rtool = portal.portal_registration
+MailHost = portal.MailHost
+
+
+def encodeAdr(member) :
+	name = member.getMemberFullName(nameBefore=0)
+	email = member.getProperty('email')
+	qpName = encodestring(name).replace('=\n', '')
+	return '''"=?utf-8?q?%s?=" <%s>''' % (qpName, email)
+
+member = sci.object
+
+sender = mtool.getAuthenticatedMember()
+sender = encodeAdr(sender)
+mto = encodeAdr(member)
+
+text = _( """
+You have been registered as a member of "%(portal_title)s", which
+allows you to personalize your view of the website and participate in
+the community.
+""".strip().replace('\n', ' ') )() % {'portal_title' :portal.Title()}
+
+if portal.getProperty('validate_email') :
+	text += '\n'
+	text += _( """You will receive an other mail with your randomly-generated
+password. Once you have logged in with this password, you
+may change it to anything you like.""".strip().replace('\n', ' ') )()
+
+else :
+	text += '\n'*2
+	text += cmfMessages( "You can use this URL to log in:" )()
+	text += '\n' + portal.absolute_url() + '/login_form'
+
+message = context.echange_mail_template(  From = sender
+										, To = mto
+										, Subject = "=?utf-8?q?%s?=" % encodestring(portal.Title() + " : " + \
+										_("your registration has been accepted")()).replace('=\n', '')
+										, ContentType = 'text/plain'
+										, charset = 'UTF-8'
+										, body= text
+										)
+
+
+MailHost.send( message.encode('utf-8') )
+if portal.getProperty('validate_email') :
+	rtool.mailPassword(member.getId(), context.REQUEST)
diff --git a/profiles/default/workflows/portfolio_workflow/definition.xml b/profiles/default/workflows/portfolio_workflow/definition.xml
new file mode 100644
index 0000000..798f1c8
--- /dev/null
+++ b/profiles/default/workflows/portfolio_workflow/definition.xml
@@ -0,0 +1,239 @@
+<?xml version="1.0"?>
+<dc-workflow workflow_id="portfolio_workflow"
+             title="Plinn folder workflow" description=""
+             state_variable="review_state"
+             initial_state="private" manager_bypass="False">
+ 
+ <permission>Add portal content</permission>
+ <permission>Change Images and Files</permission>
+ <permission>Delete Owned Objects</permission>
+ <permission>Delete objects</permission>
+ <permission>Manage properties</permission>
+ <permission>Modify portal content</permission>
+ <permission>View</permission>
+ <state state_id="pending" title="">
+  <exit-transition transition_id="publish"/>
+  <exit-transition transition_id="reject"/>
+  <exit-transition transition_id="retract"/>
+  <permission-map name="Add portal content" acquired="False">
+   <permission-role>Manager</permission-role>
+  </permission-map>
+  <permission-map name="Change Images and Files"
+                  acquired="False">
+   <permission-role>Manager</permission-role>
+   <permission-role>Reviewer</permission-role>
+  </permission-map>
+  <permission-map name="Delete Owned Objects"
+                  acquired="False">
+   <permission-role>Manager</permission-role>
+  </permission-map>
+  <permission-map name="Delete objects" acquired="False">
+   <permission-role>Manager</permission-role>
+   <permission-role>Reviewer</permission-role>
+  </permission-map>
+  <permission-map name="Manage properties" acquired="False">
+   <permission-role>Manager</permission-role>
+   <permission-role>Reviewer</permission-role>
+  </permission-map>
+  <permission-map name="Modify portal content"
+                  acquired="False">
+   <permission-role>Manager</permission-role>
+   <permission-role>Reviewer</permission-role>
+  </permission-map>
+  <permission-map name="View" acquired="False">
+   <permission-role>Contributor</permission-role>
+   <permission-role>Manager</permission-role>
+   <permission-role>Owner</permission-role>
+   <permission-role>Reader</permission-role>
+   <permission-role>Reviewer</permission-role>
+  </permission-map>
+ </state>
+ <state state_id="private" title="">
+  <exit-transition transition_id="direct_publish"/>
+  <exit-transition transition_id="submit"/>
+  <permission-map name="Add portal content" acquired="False">
+   <permission-role>Contributor</permission-role>
+   <permission-role>Manager</permission-role>
+   <permission-role>Owner</permission-role>
+  </permission-map>
+  <permission-map name="Change Images and Files"
+                  acquired="False">
+   <permission-role>Contributor</permission-role>
+   <permission-role>Manager</permission-role>
+   <permission-role>Owner</permission-role>
+  </permission-map>
+  <permission-map name="Delete Owned Objects"
+                  acquired="False">
+   <permission-role>Contributor</permission-role>
+   <permission-role>Manager</permission-role>
+   <permission-role>Owner</permission-role>
+  </permission-map>
+  <permission-map name="Delete objects" acquired="False">
+   <permission-role>Manager</permission-role>
+   <permission-role>Owner</permission-role>
+  </permission-map>
+  <permission-map name="Manage properties" acquired="False">
+   <permission-role>Contributor</permission-role>
+   <permission-role>Manager</permission-role>
+   <permission-role>Owner</permission-role>
+  </permission-map>
+  <permission-map name="Modify portal content"
+                  acquired="False">
+   <permission-role>Contributor</permission-role>
+   <permission-role>Manager</permission-role>
+   <permission-role>Owner</permission-role>
+  </permission-map>
+  <permission-map name="View" acquired="False">
+   <permission-role>Contributor</permission-role>
+   <permission-role>Manager</permission-role>
+   <permission-role>Owner</permission-role>
+   <permission-role>Reader</permission-role>
+  </permission-map>
+ </state>
+ <state state_id="published" title="">
+  <exit-transition transition_id="reject"/>
+  <exit-transition transition_id="retract"/>
+  <permission-map name="Add portal content" acquired="False">
+   <permission-role>Manager</permission-role>
+  </permission-map>
+  <permission-map name="Change Images and Files"
+                  acquired="False">
+   <permission-role>Manager</permission-role>
+  </permission-map>
+  <permission-map name="Delete Owned Objects"
+                  acquired="False">
+   <permission-role>Manager</permission-role>
+  </permission-map>
+  <permission-map name="Delete objects" acquired="False">
+   <permission-role>Manager</permission-role>
+  </permission-map>
+  <permission-map name="Manage properties" acquired="False">
+   <permission-role>Manager</permission-role>
+  </permission-map>
+  <permission-map name="Modify portal content"
+                  acquired="False">
+   <permission-role>Manager</permission-role>
+  </permission-map>
+  <permission-map name="View" acquired="True">
+   <permission-role>Anonymous</permission-role>
+  </permission-map>
+ </state>
+ <transition transition_id="direct_publish"
+             title="Reviewer publishes content"
+             new_state="published" trigger="USER"
+             before_script="" after_script="">
+  <description>Reviewer can directly publish content  if he have de Owner role (not necessarily ownership)</description>
+  <action url="%(content_url)s/content_publish_form?direct:boolean=True"
+          category="workflow">Publish</action>
+  <guard>
+   <guard-permission>Review portal content</guard-permission>
+   <guard-expression>python:user.allowed(here, ['Owner'])</guard-expression>
+  </guard>
+ </transition>
+ <transition transition_id="publish"
+             title="Reviewer publishes content"
+             new_state="published" trigger="USER"
+             before_script="" after_script="">
+  <action url="%(content_url)s/content_publish_form"
+          category="workflow">Publish</action>
+  <guard>
+   <guard-permission>Review portal content</guard-permission>
+  </guard>
+ </transition>
+ <transition transition_id="reject"
+             title="Reviewer rejects submission"
+             new_state="private" trigger="USER"
+             before_script="" after_script="">
+  <action url="%(content_url)s/content_reject_form"
+          category="workflow">Reject</action>
+  <guard>
+   <guard-permission>Review portal content</guard-permission>
+  </guard>
+ </transition>
+ <transition transition_id="retract"
+             title="Member retracts submission"
+             new_state="private" trigger="USER"
+             before_script="" after_script="">
+  <action url="%(content_url)s/content_retract_form"
+          category="workflow">Retract</action>
+  <guard>
+   <guard-permission>Request review</guard-permission>
+   <guard-expression>python:not(here.portal_membership.checkPermission('Review portal content', here))</guard-expression>
+  </guard>
+ </transition>
+ <transition transition_id="submit"
+             title="Member requests publishing"
+             new_state="pending" trigger="USER"
+             before_script="" after_script="">
+  <action url="%(content_url)s/content_submit_form"
+          category="workflow">Submit</action>
+  <guard>
+   <guard-permission>Request review</guard-permission>
+  </guard>
+ </transition>
+ <variable variable_id="action" for_catalog="False"
+           for_status="True" update_always="True">
+  <description>The last transition</description>
+  <default>
+   
+   <expression>transition/getId|nothing</expression>
+  </default>
+  <guard>
+  </guard>
+ </variable>
+ <variable variable_id="actor" for_catalog="False"
+           for_status="True" update_always="True">
+  <description>The ID of the user who performed the last transition</description>
+  <default>
+   
+   <expression>user/getId</expression>
+  </default>
+  <guard>
+  </guard>
+ </variable>
+ <variable variable_id="comments" for_catalog="False"
+           for_status="True" update_always="True">
+  <description>Comments about the last transition</description>
+  <default>
+   
+   <expression>python:state_change.kwargs.get('comment', '')</expression>
+  </default>
+  <guard>
+  </guard>
+ </variable>
+ <variable variable_id="email_sent" for_catalog="False"
+           for_status="True" update_always="True">
+  <default>
+   
+   <expression>python:scripts.sendNotificationEmail(state_change) or state_change.kwargs.get('email_sent', [])</expression>
+  </default>
+  <guard>
+  </guard>
+ </variable>
+ <variable variable_id="review_history" for_catalog="False"
+           for_status="False" update_always="False">
+  <description>Provides access to workflow history</description>
+  <default>
+   
+   <expression>state_change/getHistory</expression>
+  </default>
+  <guard>
+   <guard-permission>Request review</guard-permission>
+   <guard-permission>Review portal content</guard-permission>
+  </guard>
+ </variable>
+ <variable variable_id="time" for_catalog="False"
+           for_status="True" update_always="True">
+  <description>Time of the last transition</description>
+  <default>
+   
+   <expression>state_change/getDateTime</expression>
+  </default>
+  <guard>
+  </guard>
+ </variable>
+ <script script_id="sendNotificationEmail"
+         type="Script (Python)"
+         filename="workflows/portfolio_workflow/scripts/sendNotificationEmail.py"
+         module="" function=""/>
+</dc-workflow>
diff --git a/profiles/default/workflows/portfolio_workflow/scripts/sendNotificationEmail.py b/profiles/default/workflows/portfolio_workflow/scripts/sendNotificationEmail.py
new file mode 100644
index 0000000..9b833b6
--- /dev/null
+++ b/profiles/default/workflows/portfolio_workflow/scripts/sendNotificationEmail.py
@@ -0,0 +1,61 @@
+## Script (Python) "sendNotificationEmail"
+##bind container=container
+##bind context=context
+##bind namespace=
+##bind script=script
+##bind subpath=traverse_subpath
+##parameters=sci
+##title=
+##
+#TODO : translate messages
+#from Products.PlacelessTranslationService.MessageID import MessageIDFactory
+#_ = MessageIDFactory('plinn')
+_ = lambda x : lambda : x
+
+portal = context.portal_url.getPortalObject()
+
+mtool = portal.portal_membership
+
+recipients = sci.kwargs.get('recipients', [])
+if not recipients :
+	return []
+
+
+MailHost = portal.MailHost
+from quopri import encodestring
+
+def encodeAdr(member) :
+	name = member.getMemberFullName(nameBefore=0)
+	email = member.getProperty('email')
+	qpName = encodestring(name).replace('=\n', '')
+	return '''"=?utf-8?q?%s?=" <%s>''' % (qpName, email)
+
+
+object = sci.object
+
+sender = mtool.getAuthenticatedMember()
+sender = encodeAdr(sender)
+
+recipientsFormated = map(encodeAdr, mtool.getMembers( recipients ))
+mto = ', '.join(recipientsFormated)
+if mto[-2:] == ', ' :
+	mto = mto[:-2]
+
+footer = """
+------------
+Document : %s
+""" % object.absolute_url()
+
+
+message = context.echange_mail_template(  From = sender
+										, To = mto
+										, Subject = "=?utf-8?q?%s?=" % encodestring(portal.Title() + " : " + _("Document state change notificaction")()).replace('=\n', '')
+										, ContentType = 'text/plain'
+										, charset = 'UTF-8'
+										, body=sci.kwargs.get('comment', '')
+										, footer=footer)
+
+
+MailHost.send( message.encode('utf-8') )
+
+return recipients
diff --git a/setuphandlers.py b/setuphandlers.py
new file mode 100644
index 0000000..d281cc7
--- /dev/null
+++ b/setuphandlers.py
@@ -0,0 +1,65 @@
+# -*- coding: utf-8 -*-
+#######################################################################################
+#   Plinn - http://plinn.org                                                          #
+#   Copyright (C) 2005-2007  Benoît PIN <benoit.pin@ensmp.fr>                         #
+#                                                                                     #
+#   This program is free software; you can redistribute it and/or                     #
+#   modify it under the terms of the GNU General Public License                       #
+#   as published by the Free Software Foundation; either version 2                    #
+#   of the License, or (at your option) any later version.                            #
+#                                                                                     #
+#   This program is distributed in the hope that it will be useful,                   #
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of                    #
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                     #
+#   GNU General Public License for more details.                                      #
+#                                                                                     #
+#   You should have received a copy of the GNU General Public License                 #
+#   along with this program; if not, write to the Free Software                       #
+#   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.   #
+#######################################################################################
+""" Plinn specific GenericSetup handlers
+
+$Id: setuphandlers.py 1333 2008-07-31 12:10:34Z pin $
+$URL: http://svn.cri.ensmp.fr/svn/Plinn/branches/CMF-2.1/setuphandlers.py $
+"""
+
+from Products.CMFCore.utils import getToolByName
+from Products.PythonScripts.PythonScript import PythonScript
+
+VARIOUS_FILENAME = 'various.py'
+
+
+def importVarious(context) :
+	""" exec python code from setup python script """
+	site = context.getSite()
+	text = context.readDataFile(VARIOUS_FILENAME)
+	
+	if not text : return
+	
+	site._setPortalTypeName('CMF Site')
+	
+	script = PythonScript('various')
+	script = script.__of__(site)
+	script.write(text)
+	out = script(site)
+	
+	# clone current authenticated user into portal's acl_users
+	from AccessControl import getSecurityManager
+	sm = getSecurityManager()
+	user = sm.getUser()
+	mtool = getToolByName(site, 'portal_membership')
+	mtool.addMember(user.getId(), user._getPassword(), user.getRoles(), user.getDomains())
+	
+	return out
+
+def exportVarious(exportContext):
+	site = exportContext.getSite()
+	
+	stool = getToolByName(site, 'portal_setup')
+	importContext = stool._getImportContext(stool.getBaselineContextID())
+	
+	exportContext.writeDataFile( VARIOUS_FILENAME,
+								 importContext.readDataFile(VARIOUS_FILENAME),
+								 'text/plain' )
+	
+	return 'Various Plinn settings exported.'
\ No newline at end of file
diff --git a/shutdown_dispatcher.py b/shutdown_dispatcher.py
new file mode 100755
index 0000000..b7e36ef
--- /dev/null
+++ b/shutdown_dispatcher.py
@@ -0,0 +1,60 @@
+# -*- coding: utf-8 -*-
+#######################################################################################
+#   Plinn - http://plinn.org                                                          #
+#   Copyright (C) 2005-2009  Benoît PIN <benoit.pin@ensmp.fr>                         #
+#                                                                                     #
+#   This program is free software; you can redistribute it and/or                     #
+#   modify it under the terms of the GNU General Public License                       #
+#   as published by the Free Software Foundation; either version 2                    #
+#   of the License, or (at your option) any later version.                            #
+#                                                                                     #
+#   This program is distributed in the hope that it will be useful,                   #
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of                    #
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                     #
+#   GNU General Public License for more details.                                      #
+#                                                                                     #
+#   You should have received a copy of the GNU General Public License                 #
+#   along with this program; if not, write to the Free Software                       #
+#   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.   #
+#######################################################################################
+""" provides utilities to raise / handle zope server shutdown events
+
+$Id: shutdown_dispatcher.py 1480 2009-03-19 19:15:52Z pin $
+$URL: http://svn.cri.ensmp.fr/svn/Plinn/branches/CMF-2.1/shutdown_dispatcher.py $
+"""
+
+import asyncore
+from zope.event import notify
+from zope.component import getSiteManager
+from events import ZopeShutdownEvent
+from OFS.interfaces import IApplication
+
+class ZopeShutdownDispatcher(asyncore.dispatcher):
+
+	
+	def __init__(self, app, map=None):
+		asyncore.dispatcher.__init__(self, None, map)
+		self.connected = False
+		self.app = self._fileno = app
+		self.add_channel()
+	
+	def close(self) :
+		self.del_channel()
+
+	def readable(self):
+		return False
+
+	def handle_read(self):
+		return True
+
+	def writable(self):
+		return False
+
+	def handle_write (self):
+		return True
+		
+	def clean_shutdown_control(self, phase, time):
+		asyncore.dispatcher.log_info(self, 'zope shutdown event raised at phase: %s' % phase, 'info')
+		e = ZopeShutdownEvent(self.app, phase, time)
+		notify(e)
+		return e.veto
diff --git a/skins/ajax_scripts/DHTMLapi.js b/skins/ajax_scripts/DHTMLapi.js
new file mode 100755
index 0000000..c45a914
--- /dev/null
+++ b/skins/ajax_scripts/DHTMLapi.js
@@ -0,0 +1,231 @@
+/* ***********************************************************
+Example 4-3 (DHTMLapi.js)
+"Dynamic HTML:The Definitive Reference"
+2nd Edition
+by Danny Goodman
+Published by O'Reilly & Associates  ISBN 1-56592-494-0
+http://www.oreilly.com
+Copyright 2002 Danny Goodman.  All Rights Reserved.
+************************************************************ */
+// DHTMLapi.js custom API for cross-platform
+// object positioning by Danny Goodman (http://www.dannyg.com).
+// Release 2.0. Supports NN4, IE, and W3C DOMs.
+
+// Global variables
+var isCSS, isW3C, isIE4, isNN4;
+// initialize upon load to let all browsers establish content objects
+function initDHTMLAPI() {
+    if (document.images) {
+        isCSS = (document.body && document.body.style) ? true : false;
+        isW3C = (isCSS && document.getElementById) ? true : false;
+        isIE4 = (isCSS && document.all) ? true : false;
+        isNN4 = (document.layers) ? true : false;
+        isIE6CSS = (document.compatMode && document.compatMode.indexOf("CSS1") >= 0) ? true : false;
+    }
+}
+// set event handler to initialize API
+//window.onload = initDHTMLAPI;
+addListener(window, 'load', initDHTMLAPI);
+//registerStartupFunction(initDHTMLAPI)
+
+// Seek nested NN4 layer from string name
+function seekLayer(doc, name) {
+    var theObj;
+    for (var i = 0; i < doc.layers.length; i++) {
+        if (doc.layers[i].name == name) {
+            theObj = doc.layers[i];
+            break;
+        }
+        // dive into nested layers if necessary
+        if (doc.layers[i].document.layers.length > 0) {
+            theObj = seekLayer(document.layers[i].document, name);
+        }
+    }
+    return theObj;
+}
+
+// Convert object name string or object reference
+// into a valid element object reference
+function getRawObject(obj) {
+    var theObj;
+    if (typeof obj == "string") {
+        if (isW3C) {
+            theObj = document.getElementById(obj);
+        } else if (isIE4) {
+            theObj = document.all(obj);
+        } else if (isNN4) {
+            theObj = seekLayer(document, obj);
+        }
+    } else {
+        // pass through object reference
+        theObj = obj;
+    }
+    return theObj;
+}
+
+// Convert object name string or object reference
+// into a valid style (or NN4 layer) reference
+function getObject(obj) {
+    var theObj = getRawObject(obj);
+    if (theObj && isCSS) {
+        theObj = theObj.style;
+    }
+    return theObj;
+}
+
+// Position an object at a specific pixel coordinate
+function shiftTo(obj, x, y) {
+    var theObj = getObject(obj);
+    if (theObj) {
+        if (isCSS) {
+            // equalize incorrect numeric value type
+            var units = (typeof theObj.left == "string") ? "px" : 0 
+            theObj.left = x + units;
+            theObj.top = y + units;
+        } else if (isNN4) {
+            theObj.moveTo(x,y)
+        }
+    }
+}
+
+// Move an object by x and/or y pixels
+function shiftBy(obj, deltaX, deltaY) {
+    var theObj = getObject(obj);
+    if (theObj) {
+        if (isCSS) {
+            // equalize incorrect numeric value type
+            var units = (typeof theObj.left == "string") ? "px" : 0 
+            theObj.left = getObjectLeft(obj) + deltaX + units;
+            theObj.top = getObjectTop(obj) + deltaY + units;
+        } else if (isNN4) {
+            theObj.moveBy(deltaX, deltaY);
+        }
+    }
+}
+
+// Set the z-order of an object
+function setZIndex(obj, zOrder) {
+    var theObj = getObject(obj);
+    if (theObj) {
+        theObj.zIndex = zOrder;
+    }
+}
+
+// Set the background color of an object
+function setBGColor(obj, color) {
+    var theObj = getObject(obj);
+    if (theObj) {
+        if (isNN4) {
+            theObj.bgColor = color;
+        } else if (isCSS) {
+            theObj.backgroundColor = color;
+        }
+    }
+}
+
+// Set the visibility of an object to visible
+function show(obj) {
+    var theObj = getObject(obj);
+    if (theObj) {
+        theObj.visibility = "visible";
+    }
+}
+
+// Set the visibility of an object to hidden
+function hide(obj) {
+    var theObj = getObject(obj);
+    if (theObj) {
+        theObj.visibility = "hidden";
+    }
+}
+
+// Retrieve the x coordinate of a positionable object
+function getObjectLeft(obj)  {
+    var elem = getRawObject(obj);
+    var result = 0;
+    if (document.defaultView) {
+        var style = document.defaultView;
+        var cssDecl = style.getComputedStyle(elem, "");
+        result = cssDecl.getPropertyValue("left");
+    } else if (elem.currentStyle) {
+        result = elem.currentStyle.left;
+    } else if (elem.style) {
+        result = elem.style.left;
+    } else if (isNN4) {
+        result = elem.left;
+    }
+    return parseInt(result);
+}
+
+// Retrieve the y coordinate of a positionable object
+function getObjectTop(obj)  {
+    var elem = getRawObject(obj);
+    var result = 0;
+    if (document.defaultView) {
+        var style = document.defaultView;
+        var cssDecl = style.getComputedStyle(elem, "");
+        result = cssDecl.getPropertyValue("top");
+    } else if (elem.currentStyle) {
+        result = elem.currentStyle.top;
+    } else if (elem.style) {
+        result = elem.style.top;
+    } else if (isNN4) {
+        result = elem.top;
+    }
+    return parseInt(result);
+}
+
+// Retrieve the rendered width of an element
+function getObjectWidth(obj)  {
+    var elem = getRawObject(obj);
+    var result = 0;
+    if (elem.offsetWidth) {
+        result = elem.offsetWidth;
+    } else if (elem.clip && elem.clip.width) {
+        result = elem.clip.width;
+    } else if (elem.style && elem.style.pixelWidth) {
+        result = elem.style.pixelWidth;
+    }
+    return parseInt(result);
+}
+
+// Retrieve the rendered height of an element
+function getObjectHeight(obj)  {
+    var elem = getRawObject(obj);
+    var result = 0;
+    if (elem.offsetHeight) {
+        result = elem.offsetHeight;
+    } else if (elem.clip && elem.clip.height) {
+        result = elem.clip.height;
+    } else if (elem.style && elem.style.pixelHeight) {
+        result = elem.style.pixelHeight;
+    }
+    return parseInt(result);
+}
+
+
+// Return the available content width space in browser window
+function getInsideWindowWidth() {
+    if (window.innerWidth) {
+        return window.innerWidth;
+    } else if (isIE6CSS) {
+        // measure the html element's clientWidth
+        return document.body.parentElement.clientWidth
+    } else if (document.body && document.body.clientWidth) {
+        return document.body.clientWidth;
+    }
+    return 0;
+}
+// Return the available content height space in browser window
+function getInsideWindowHeight() {
+    if (window.innerHeight) {
+        return window.innerHeight;
+    } else if (isIE6CSS) {
+        // measure the html element's clientHeight
+        return document.body.parentElement.clientHeight
+    } else if (document.body && document.body.clientHeight) {
+        return document.body.clientHeight;
+    }
+    return 0;
+}
+
diff --git a/skins/ajax_scripts/DHTMLapi.js.metadata b/skins/ajax_scripts/DHTMLapi.js.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/ajax_scripts/DHTMLapi.js.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/ajax_scripts/ajax_form_manager.js b/skins/ajax_scripts/ajax_form_manager.js
new file mode 100644
index 0000000..9caf6e4
--- /dev/null
+++ b/skins/ajax_scripts/ajax_form_manager.js
@@ -0,0 +1,418 @@
+// (c) Benoît PIN 2006-2007
+// http://plinn.org
+// Licence GPL
+// $Id: ajax_form_manager.js 1470 2009-02-18 16:42:02Z pin $
+// $URL: http://svn.cri.ensmp.fr/svn/Plinn/branches/CMF-2.1/skins/ajax_scripts/ajax_form_manager.js $
+
+
+function FormManager(form, responseTextDest, lazy) {
+	if (form.elements.namedItem("noAjax")) return;
+	
+	this.form = form;
+	this.responseTextDest = responseTextDest;
+	this.lazy = lazy;
+	var thisManager = this;
+	this.form.onsubmit = function(evt) { thisManager.submit(evt); };
+	this.form.onclick = function(evt) { thisManager.click(evt); };
+	this.submitButton = null;
+	
+	/* raised on form submit */
+	this.onBeforeSubmit = null;
+	/* raised after xmlhttp response */
+	this.onResponseLoad = null;
+	/* raised when the responseText is added inside the main element.
+	 * (onResponseLoad may have the default value) */
+	this.onAfterPopulate = null; 
+	this.submitButton = null;
+	
+	if (this.lazy) {
+		this.fieldTagName;
+		this.liveFormField;
+		this.pendingEvent;
+		this.form.onclick = function(evt){
+			thisManager.replaceElementByField(evt);
+			thisManager.click(evt);
+		};
+		if (browser.isDOM2Event)
+			this.form.onfocus = this.form.onclick;
+		else if (browser.isIE6up)
+			this.form.onfocusin = this.form.onclick;
+		this.onResponseLoad = function(req){ thisManager.restoreField(req); };
+		this.lazyListeners = new Array();
+	}
+}
+	
+FormManager.prototype.submit = function(evt) {
+	var form = this.form;
+	var thisManager = this;
+
+	var bsMessage; // before submit message
+	if (!this.onBeforeSubmit) {
+		var onBeforeSubmit = form.elements.namedItem("onBeforeSubmit");
+		if (onBeforeSubmit) {
+			if (onBeforeSubmit.length)
+				onBeforeSubmit = onBeforeSubmit[0];
+			this.onBeforeSubmit = eval(onBeforeSubmit.value);
+			bsMessage = this.onBeforeSubmit(thisManager, evt);
+		}
+	}
+	else
+		bsMessage = this.onBeforeSubmit(thisManager, evt);
+	
+	if (bsMessage == 'cancelSubmit') {
+		try {disableDefault(evt);}
+		catch (e){}
+		return;
+	}
+
+	if (!this.onResponseLoad) {
+		var onResponseLoad = form.elements.namedItem("onResponseLoad");
+		if (onResponseLoad)
+			this.onResponseLoad = eval(onResponseLoad.value);
+		else
+			this.onResponseLoad = this.loadResponse;
+	}
+
+	var submitButton = this.submitButton;
+	var queryInfo = this.formData2QueryString();
+	var query = queryInfo['query'];
+	this.hasFile = queryInfo['hasFile'];
+	
+	
+	if (!this.onAfterPopulate) {
+		var onAfterPopulate = form.elements.namedItem("onAfterPopulate");
+		if (onAfterPopulate)
+			this.onAfterPopulate = onAfterPopulate.value;
+		else
+			this.onAfterPopulate = function() {};
+	}
+	
+	if (submitButton) {
+		query += submitButton.name + '=' + submitButton.value + '&';
+	}
+	
+	if (window.AJAX_CONFIG && (AJAX_CONFIG & 1 == 1)) {
+		if (form.method.toLowerCase() == 'post')
+			this._post(query);
+		else
+			this._get(query)
+	}
+	else
+		this._post(query);
+	
+	try {disableDefault(evt);}
+	catch (e){}
+};
+
+FormManager.prototype._post = function(query) {
+	// send form by XmlHttpRequest
+	query += "ajax=1";
+
+	var req = new XMLHttpRequest();
+	var thisManager = this;
+	req.onreadystatechange = function() {
+		switch (req.readyState) {
+			case 1 :
+				showProgressImage();
+				break;
+			case 4 :
+				hideProgressImage();
+				if (req.status == 200 || req.status == 204)
+					thisManager.onResponseLoad(req);
+				else
+					alert('Error: ' + req.status);
+		};
+	};
+	var url = this.form.action;
+	req.open("POST", url, true);
+	req.setRequestHeader("Content-Type", "application/x-www-form-urlencoded;charset=utf-8");
+	req.send(query);
+};
+
+FormManager.prototype._get = function(query) {
+	// send form by browser location
+	var url = this.form.action;
+	url += '?' + query
+	linkHandler.loadUrl(url);
+};
+
+
+FormManager.prototype.click = function(evt) {
+	var target = getTargetedObject(evt);
+	if(target.type == "submit" || target.type == "image") {
+		this.submitButton = target;
+		disablePropagation(evt);
+	}
+};
+
+FormManager.prototype.replaceElementByField = function(evt) {
+	evt = getEventObject(evt);
+	var ob = getTargetedObject(evt);
+	var eventType = evt.type;
+	if (eventType == 'focus' || eventType == 'focusin') {
+		if (this.liveFormField && ob.tagName != 'INPUT')
+			this.pendingEvent = [ob, 'click'];
+		return;
+	}
+	var fieldName = ob.getAttribute('id');
+	if (fieldName) {
+		this.fieldTagName = ob.tagName;
+		var tabIndex = ob.tabIndex;
+		var text;
+		if (ob.firstChild && ob.firstChild.className == 'hidden_value')
+		    text = ob.firstChild.innerHTML;
+		else
+		    text = ob.innerHTML;
+		disablePropagation(evt);
+		switch (ob.tagName) {
+			case 'SPAN' :
+				// create input element
+				var inputText = document.createElement("input");
+				inputText.setAttribute("type", "text");
+				text = text.replace(/\n/g, ' ');
+				text = text.replace(/\s+/g, ' ');
+				text = text.replace(/^ /, '');
+				text = text.replace(/ $/, '');
+				inputText.setAttribute("value", text);
+				var inputWidth = text.length / 1.9;
+				inputWidth = (inputWidth > 5) ? inputWidth : 5;
+				inputText.style.width = inputWidth + 'em';
+				//inputText.setAttribute("size", text.length);
+
+				// replacement
+				var parent = ob.parentNode;
+				parent.replaceChild(inputText, ob);
+
+				inputText.focus();
+				inputText.select();
+				inputText.setAttribute('name', fieldName);
+				inputText.tabIndex = tabIndex;
+				inputText.className = 'live_field';
+				this.liveFormField = inputText;
+				var thisManager = this;
+				this.lazyListeners.push({'element': inputText, 'eventName' : 'blur', 'handler': function(){ thisManager.submit();}});
+				this.lazyListeners.push({'element': inputText, 'eventName' : 'keypress', 'handler': function(evt){ thisManager._fitField(evt);}});
+				this._addLazyListeners();
+				break;
+
+			case 'DIV' :
+			case 'P' :
+				// create textarea
+				var ta = document.createElement('textarea');
+				ta.style.display = 'block';
+				ta.className = 'live_field';
+				text = text.replace(/^\s*/, '');
+				text = text.replace(/\s*$/, '');
+				ta.value = text;
+
+				// replacement
+				var parent = ob.parentNode;
+				parent.replaceChild(ta, ob);
+
+				ta.focus();
+				ta.select();
+				ta.setAttribute('name', fieldName);
+				ta.tabIndex = tabIndex;
+				this.liveFormField = ta;
+				var thisManager = this;
+				this.lazyListeners.push({'element': ta, 'eventName' : 'blur', 'handler': function(){ thisManager.submit();}});
+				this._addLazyListeners();
+				break;
+				
+				
+		};
+	}
+};
+
+FormManager.prototype._addLazyListeners = function() {
+	for (var i=0 ; i<this.lazyListeners.length ; i++) {
+		var handlerInfo = this.lazyListeners[i];
+		addListener(handlerInfo['element'], handlerInfo['eventName'], handlerInfo['handler']);
+	}
+};
+
+FormManager.prototype._removeLazyListeners = function() {
+	for (var i=0 ; i<this.lazyListeners.length ; i++) {
+		var handlerInfo = this.lazyListeners[i];
+		removeListener(handlerInfo['element'], handlerInfo['eventName'], handlerInfo['handler']);
+	}
+};
+
+
+FormManager.prototype.restoreField = function(req) {
+	var text;
+	var input = this.liveFormField;
+	if (req.status == 200) {
+		if (req.getResponseHeader('Content-Type').indexOf('text/xml') != -1) {
+			var out = '..........';
+			if (req.responseXML.documentElement.firstChild)
+				out = req.responseXML.documentElement.firstChild.nodeValue;
+			
+			switch (req.responseXML.documentElement.nodeName) {
+				case 'computedField':
+					text = out;
+					break;
+				case 'error':
+					this._removeLazyListeners();
+					alert(out);
+					this.pendingEvent = null;
+					input.focus();
+					this._addLazyListeners();
+					return false;
+					break;
+			}
+		}
+		else {
+			text = req.responseText;
+		}
+	}
+	else
+		text = '';
+	
+	if (!text.match(/\w/))
+		text = '..........';
+	
+	var field = document.createElement(this.fieldTagName);
+	field.innerHTML = text;
+	field.setAttribute('id', input.getAttribute('name'));
+	field.className = 'editable';
+	field.tabIndex = input.tabIndex;
+	
+	var parent = input.parentNode;
+	parent.replaceChild(field, input);
+	this.liveFormField = null;
+	
+	if (this.pendingEvent)
+		raiseMouseEvent(this.pendingEvent[0], this.pendingEvent[1]);
+	return true;
+};
+
+
+FormManager.prototype.formData2QueryString = function() {
+	// http://www.onlamp.com/pub/a/onlamp/2005/05/19/xmlhttprequest.html
+	var form = this.form;
+	var strSubmit = '', formElem, elements;
+	var hasFile = false;
+
+	if (!this.lazy)
+		elements = form.elements;
+	else {
+		elements = new Array();
+		var formElements = form.elements;
+		for (var i = 0; i < formElements.length; i++) {
+			formElem = formElements[i];
+			switch (formElem.type) {
+				case 'hidden':
+					elements.push(formElem);
+					break;
+				default :
+					if (formElem == this.liveFormField)
+						elements.push(formElem);
+			};
+		}
+	}
+	
+	for (var i = 0; i < elements.length; i++) {
+		formElem = elements[i];
+		switch (formElem.type) {
+			// text, select, hidden, password, textarea elements
+			case 'text':
+			case 'select-one':
+			case 'hidden':
+			case 'password':
+			case 'textarea':
+				strSubmit += formElem.name + '=' + encodeURIComponent(formElem.value) + '&';
+				break;
+			case 'radio':
+			case 'checkbox':
+				if (formElem.checked)
+					strSubmit += formElem.name + '=' + encodeURIComponent(formElem.value) + '&';
+				break;
+			case 'select-multiple':
+				var options = formElem.getElementsByTagName("OPTION"), option;
+				for (var j = 0 ; j < options.length ; j++) {
+					option = options[j];
+					if (option.selected)
+						strSubmit += formElem.name + '=' + encodeURIComponent(option.value) + '&';
+				}
+				break;
+			case 'file':
+				if (formElem.value)
+					hasFile = true;
+				break;
+		};
+	}
+	return {'query' : strSubmit, 'hasFile' : hasFile};
+};
+
+FormManager.prototype.loadResponse = function(req) {
+	if (req.getResponseHeader('Content-Type').indexOf('text/xml') != -1) {
+		switch(req.responseXML.documentElement.nodeName) {
+			case 'fragments' :
+				if (this.hasFile) {
+					var sb = this.submitButton;
+					if (sb) {
+						var h = document.createElement('input');
+						h.type = 'hidden';
+						h.name = sb.name;
+						h.value = sb.value;
+						this.form.appendChild(h);
+					}
+					
+					this.form.submit();
+					return;
+				}
+				var fragments = req.responseXML.documentElement.childNodes;
+				var fragment, dest, scripts;
+				for (var i=0 ; i<fragments.length ; i++) {
+					fragment = fragments[i];
+					if (fragment.nodeName == 'fragment') {
+						dest = document.getElementById(fragment.getAttribute('id'));
+						dest.innerHTML = fragment.firstChild.nodeValue;
+			
+						scripts = dest.getElementsByTagName('script');
+						for (var j=0 ; j < scripts.length ; j++)
+							globalScriptRegistry.loadScript(scripts[j]);
+					}
+				}
+				break;
+			case 'error':
+				alert(req.responseXML.documentElement.firstChild.nodeValue);
+				return;
+		}
+	}
+	else {
+		this.responseTextDest.innerHTML = req.responseText;
+		var scripts = this.responseTextDest.getElementsByTagName('script');
+		for (var j=0 ; j < scripts.length ; j++)
+			globalScriptRegistry.loadScript(scripts[j]);
+	}
+	
+	var onAfterPopulate = this.onAfterPopulate;
+	if (typeof(onAfterPopulate) == "string") {
+		if (window.console)
+			console.warn('Deprecation WARNING onAfterPopulate: ' + onAfterPopulate);
+		onAfterPopulate = eval(onAfterPopulate);
+	}
+	onAfterPopulate();
+};
+
+FormManager.prototype._fitField = function(evt) {
+	var ob = getTargetedObject(evt);
+	var inputWidth = ob.value.length / 1.9;
+	inputWidth = (inputWidth > 5) ? inputWidth : 5;
+	ob.style.width = inputWidth + 'em';
+};
+
+function initForms(baseElement, lazy) {
+	if (!baseElement)
+		baseElement = document;
+	var dest = document.getElementById("mainCell");
+	var forms = baseElement.getElementsByTagName("form");
+	var f;
+	for (var i = 0 ; i < forms.length ; i++ )
+		f = new FormManager(forms[i], dest, lazy);
+}
+
+
+//registerStartupFunction(initForms);
\ No newline at end of file
diff --git a/skins/ajax_scripts/ajax_form_manager.js.metadata b/skins/ajax_scripts/ajax_form_manager.js.metadata
new file mode 100755
index 0000000..855fecc
--- /dev/null
+++ b/skins/ajax_scripts/ajax_form_manager.js.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/ajax_scripts/base_properties.js.dtml b/skins/ajax_scripts/base_properties.js.dtml
new file mode 100644
index 0000000..d854757
--- /dev/null
+++ b/skins/ajax_scripts/base_properties.js.dtml
@@ -0,0 +1,9 @@
+// $Id$
+// $URL$
+
+var base_properties = [];
+<dtml-with base_properties>
+<dtml-in propertyIds>
+base_properties["<dtml-var sequence-item>"] = '<dtml-var "getProperty(_['sequence-item'])">';
+</dtml-in>
+</dtml-with>
\ No newline at end of file
diff --git a/skins/ajax_scripts/base_properties.js.dtml.metadata b/skins/ajax_scripts/base_properties.js.dtml.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/ajax_scripts/base_properties.js.dtml.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/ajax_scripts/cal_and_event_script.js b/skins/ajax_scripts/cal_and_event_script.js
new file mode 100644
index 0000000..c49cef8
--- /dev/null
+++ b/skins/ajax_scripts/cal_and_event_script.js
@@ -0,0 +1,22 @@
+// (c) Benoît PIN 2006-2007
+// http://plinn.org
+// Licence GPL
+
+
+function initEventJsCalendars() {
+	var startDate = [];
+	
+	// setup startDate calendar
+	startDate["inputField"]		=	"startDate";		// id of the input field
+	startDate["ifFormat"]		=	"%Y %m %d %H %M";   // format of the input field	startDate["date"]			=	function() { return builDateFromInputs("startDate"); };	startDate["showsTime"]		=	true;               // will display a time selector	startDate["button"]			=	"showStartCal";     // trigger for the calendar (button ID)	startDate["singleClick"]	=	false;              // double-click mode	startDate["showOthers"]		=	true;               // show overlapping months	startDate["weekNumbers"]	=	false;	startDate["firstDay"]		=	1;	startDate["onSelect"]		=	splitDate;
+
+	Calendar.setup(startDate);
+	
+	var endDate = [];
+	
+	// setup endDate calendar
+	endDate["inputField"]	=	"endDate";		// id of the input field
+	endDate["ifFormat"]		=	"%Y %m %d %H %M";   // format of the input field	endDate["date"]			=	function() { return builDateFromInputs("endDate"); };	endDate["showsTime"]	=	true;               // will display a time selector	endDate["button"]		=	"showEndCal";     // trigger for the calendar (button ID)	endDate["singleClick"]	=	false;              // double-click mode	endDate["showOthers"]	=	true;               // show overlapping months	endDate["weekNumbers"]	=	false;	endDate["firstDay"]		=	1;	endDate["onSelect"]		=	splitDate;
+
+	Calendar.setup(endDate);
+}
\ No newline at end of file
diff --git a/skins/ajax_scripts/cal_and_event_script.js.metadata b/skins/ajax_scripts/cal_and_event_script.js.metadata
new file mode 100755
index 0000000..855fecc
--- /dev/null
+++ b/skins/ajax_scripts/cal_and_event_script.js.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/ajax_scripts/calendar-setup.js b/skins/ajax_scripts/calendar-setup.js
new file mode 100644
index 0000000..003ebcd
--- /dev/null
+++ b/skins/ajax_scripts/calendar-setup.js
@@ -0,0 +1,188 @@
+/*  Copyright Mihai Bazon, 2002, 2003  |  http://dynarch.com/mishoo/
+ * ---------------------------------------------------------------------------
+ *
+ * The DHTML Calendar
+ *
+ * Details and latest version at:
+ * http://dynarch.com/mishoo/calendar.epl
+ *
+ * This script is distributed under the GNU Lesser General Public License.
+ * Read the entire license text here: http://www.gnu.org/licenses/lgpl.html
+ *
+ * This file defines helper functions for setting up the calendar.  They are
+ * intended to help non-programmers get a working calendar on their site
+ * quickly.  This script should not be seen as part of the calendar.  It just
+ * shows you what one can do with the calendar, while in the same time
+ * providing a quick and simple method for setting it up.  If you need
+ * exhaustive customization of the calendar creation process feel free to
+ * modify this code to suit your needs (this is recommended and much better
+ * than modifying calendar.js itself).
+ */
+
+// $Id: calendar-setup.js 1315 2008-07-29 15:36:15Z pin $
+
+/**
+ *  This function "patches" an input field (or other element) to use a calendar
+ *  widget for date selection.
+ *
+ *  The "params" is a single object that can have the following properties:
+ *
+ *    prop. name   | description
+ *  -------------------------------------------------------------------------------------------------
+ *   inputField    | the ID of an input field to store the date
+ *   displayArea   | the ID of a DIV or other element to show the date
+ *   button        | ID of a button or other element that will trigger the calendar
+ *   eventName     | event that will trigger the calendar, without the "on" prefix (default: "click")
+ *   ifFormat      | date format that will be stored in the input field
+ *   daFormat      | the date format that will be used to display the date in displayArea
+ *   singleClick   | (true/false) wether the calendar is in single click mode or not (default: true)
+ *   firstDay      | numeric: 0 to 6.  "0" means display Sunday first, "1" means display Monday first, etc.
+ *   align         | alignment (default: "Br"); if you don't know what's this see the calendar documentation
+ *   range         | array with 2 elements.  Default: [1900, 2999] -- the range of years available
+ *   weekNumbers   | (true/false) if it's true (default) the calendar will display week numbers
+ *   flat          | null or element ID; if not null the calendar will be a flat calendar having the parent with the given ID
+ *   flatCallback  | function that receives a JS Date object and returns an URL to point the browser to (for flat calendar)
+ *   disableFunc   | function that receives a JS Date object and should return true if that date has to be disabled in the calendar
+ *   onSelect      | function that gets called when a date is selected.  You don't _have_ to supply this (the default is generally okay)
+ *   onClose       | function that gets called when the calendar is closed.  [default]
+ *   onUpdate      | function that gets called after the date is updated in the input field.  Receives a reference to the calendar.
+ *   date          | the date that the calendar will be initially displayed to
+ *   showsTime     | default: false; if true the calendar will include a time selector
+ *   timeFormat    | the time format; can be "12" or "24", default is "12"
+ *   electric      | if true (default) then given fields/date areas are updated for each move; otherwise they're updated only on close
+ *   step          | configures the step of the years in drop-down boxes; default: 2
+ *   position      | configures the calendar absolute position; default: null
+ *   cache         | if "true" (but default: "false") it will reuse the same calendar object, where possible
+ *   showOthers    | if "true" (but default: "false") it will show days from other months too
+ *
+ *  None of them is required, they all have default values.  However, if you
+ *  pass none of "inputField", "displayArea" or "button" you'll get a warning
+ *  saying "nothing to setup".
+ */
+Calendar.setup = function (params) {
+	function param_default(pname, def) { if (typeof params[pname] == "undefined") { params[pname] = def; } };
+
+	param_default("inputField",     null);
+	param_default("displayArea",    null);
+	param_default("button",         null);
+	param_default("eventName",      "click");
+	param_default("ifFormat",       "%Y/%m/%d");
+	param_default("daFormat",       "%Y/%m/%d");
+	param_default("singleClick",    true);
+	param_default("disableFunc",    null);
+	param_default("dateStatusFunc", params["disableFunc"]);	// takes precedence if both are defined
+	param_default("firstDay",       0); // defaults to "Sunday" first
+	param_default("align",          "Br");
+	param_default("range",          [1900, 2999]);
+	param_default("weekNumbers",    true);
+	param_default("flat",           null);
+	param_default("flatCallback",   null);
+	param_default("onSelect",       null);
+	param_default("onClose",        null);
+	param_default("onUpdate",       null);
+	param_default("date",           null);
+	param_default("showsTime",      false);
+	param_default("timeFormat",     "24");
+	param_default("electric",       true);
+	param_default("step",           2);
+	param_default("position",       null);
+	param_default("cache",          false);
+	param_default("showOthers",     false);
+
+	var tmp = ["inputField", "displayArea", "button"];
+	for (var i in tmp) {
+		if (typeof params[tmp[i]] == "string") {
+			params[tmp[i]] = document.getElementById(params[tmp[i]]);
+		}
+	}
+	if (!(params.flat || params.inputField || params.displayArea || params.button)) {
+		alert("Calendar.setup:\n  Nothing to setup (no fields found).  Please check your code");
+		return false;
+	}
+
+	function onSelect(cal) {
+		var p = cal.params;
+		var update = (cal.dateClicked || p.electric);
+		if (update && p.flat) {
+			if (typeof p.flatCallback == "function")
+				p.flatCallback(cal);
+			else
+				alert("No flatCallback given -- doing nothing.");
+			return false;
+		}
+		if (update && p.inputField) {
+			p.inputField.value = cal.date.print(p.ifFormat);
+			if (typeof p.inputField.onchange == "function")
+				p.inputField.onchange();
+		}
+		if (update && p.displayArea)
+			p.displayArea.innerHTML = cal.date.print(p.daFormat);
+		if (update && p.singleClick && cal.dateClicked)
+			cal.callCloseHandler();
+		if (update && typeof p.onUpdate == "function")
+			p.onUpdate(cal);
+	};
+
+	if (params.flat != null) {
+		if (typeof params.flat == "string")
+			params.flat = document.getElementById(params.flat);
+		if (!params.flat) {
+			alert("Calendar.setup:\n  Flat specified but can't find parent.");
+			return false;
+		}
+		var cal = new Calendar(params.firstDay, params.date, params.onSelect || onSelect);
+		cal.showsTime = params.showsTime;
+		cal.time24 = (params.timeFormat == "24");
+		cal.params = params;
+		cal.weekNumbers = params.weekNumbers;
+		cal.setRange(params.range[0], params.range[1]);
+		cal.setDateStatusHandler(params.dateStatusFunc);
+		cal.create(params.flat);
+		cal.show();
+		return false;
+	}
+
+	var triggerEl = params.button || params.displayArea || params.inputField;
+	triggerEl["on" + params.eventName] = function() {
+		var dateEl = params.inputField || params.displayArea;
+		var dateFmt = params.inputField ? params.ifFormat : params.daFormat;
+		var mustCreate = false;
+		var cal = window.calendar;
+		
+		var startDate = new Date() ;
+		if (typeof params.date == "function")
+            startDate = params.date() ;
+        else
+            startDate = params.date ;
+
+		if (!(cal && params.cache)) {
+			window.calendar = cal = new Calendar(params.firstDay,
+							     startDate,
+							     params.onSelect || onSelect,
+							     params.onClose || function(cal) { cal.hide(); });
+			cal.showsTime = params.showsTime;
+			cal.time24 = (params.timeFormat == "24");
+			cal.weekNumbers = params.weekNumbers;
+			mustCreate = true;
+		} else {
+			if (params.date)
+				cal.setDate(params.date);
+			cal.hide();
+		}
+		cal.showsOtherMonths = params.showOthers;
+		cal.yearStep = params.step;
+		cal.setRange(params.range[0], params.range[1]);
+		cal.params = params;
+		cal.setDateStatusHandler(params.dateStatusFunc);
+		cal.setDateFormat(dateFmt);
+		if (mustCreate)
+			cal.create();
+		cal.parseDate(dateEl.value || dateEl.innerHTML);
+		cal.refresh();
+		if (!params.position)
+			cal.showAtElement(params.button || params.displayArea || params.inputField, params.align);
+		else
+			cal.showAt(params.position[0], params.position[1]);
+		return false;
+	};
+};
diff --git a/skins/ajax_scripts/calendar-setup.js.metadata b/skins/ajax_scripts/calendar-setup.js.metadata
new file mode 100755
index 0000000..855fecc
--- /dev/null
+++ b/skins/ajax_scripts/calendar-setup.js.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/ajax_scripts/directory_management_script.js b/skins/ajax_scripts/directory_management_script.js
new file mode 100644
index 0000000..b7c2522
--- /dev/null
+++ b/skins/ajax_scripts/directory_management_script.js
@@ -0,0 +1,62 @@
+// (c) Benoît PIN 2006-2007
+// http://plinn.org
+// Licence GPL
+
+function openMemberPopup(member_id) {
+	var slot = document.getElementById("MemberFormSlot");
+	var url = portal_url() + "/use_macro?template=gruf_macros&macro=member_properties_form&fragmentId=MemberFormSlot&member_id=" + member_id;
+	new FragmentImporter(url, function() {initForms(slot);}).load();
+}
+
+function openMemberTreeView(evt) {
+	disableDefault(evt);
+	disablePropagation(evt);
+	var link = getTargetedObject(evt);
+	var slot = document.getElementById("MemberFormSlot");
+	var member_id = link.href.split("member_id=")[1];
+	/* member_id parameter is not necesary at the last position.*/
+	var member_id = member_id.split("&");
+	var url = portal_url() + "/use_macro?template=gruf_macros&macro=member_tree_view&fragmentId=MemberFormSlot&member_id=" + member_id;
+	new FragmentImporter(url, _initMemberTreeListener).load(url);
+}
+
+function _initMemberTreeListener() {
+	var slot = document.getElementById("MemberFormSlot");
+	addListener(slot, "click", handleMemberTreeViewClick);
+    if (browser.isIE55 || browser.isIE6up) {
+    	_disableMemberSlotClickHandler = false;
+    }
+}
+
+function handleMemberTreeViewClick(evt) {
+	disableDefault(evt);
+	disablePropagation(evt);
+	
+	// prevent click glitches from IE :((
+	if ((browser.isIE55 || browser.isIE6up) && _disableMemberSlotClickHandler)
+	    return;
+	else {
+	    _disableMemberSlotClickHandler = true;
+	    setTimeout("_disableMemberSlotClickHandler=false", 100);
+	}
+	
+
+	var target = getTargetedObject(evt);
+	var link, url, query;
+	var slot = document.getElementById("MemberFormSlot");
+	var afterLoadFunction;
+	
+	switch (target.tagName) {
+		case "IMG" :
+			target = target.parentNode;
+			afterLoadFunction = _initMemberTreeListener;
+
+		case "A" :
+			query = target.href.split('?')[1];
+			query = query.replace(/macroName/, "macro");
+			query = query.split('#')[0];
+			url = portal_url() + "/use_macro?template=gruf_macros&fragmentId=MemberFormSlot&" + query;
+			afterLoadFunction = (afterLoadFunction) ? afterLoadFunction : function() {initForms(slot);};
+			new FragmentImporter(url, afterLoadFunction).load();
+	}
+}
\ No newline at end of file
diff --git a/skins/ajax_scripts/directory_management_script.js.metadata b/skins/ajax_scripts/directory_management_script.js.metadata
new file mode 100755
index 0000000..855fecc
--- /dev/null
+++ b/skins/ajax_scripts/directory_management_script.js.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/ajax_scripts/epoz_plinn.js b/skins/ajax_scripts/epoz_plinn.js
new file mode 100644
index 0000000..e52436c
--- /dev/null
+++ b/skins/ajax_scripts/epoz_plinn.js
@@ -0,0 +1,37 @@
+// (c) Benoît PIN 2006-2007
+// http://plinn.org
+// Licence GPL
+// $Id: epoz_plinn.js 1315 2008-07-29 15:36:15Z pin $
+// $URL: http://svn.cri.ensmp.fr/svn/Plinn/branches/CMF-2.1/skins/ajax_scripts/epoz_plinn.js $
+
+function _resetEpoz() {
+	form_path = absolute_url() + '/';
+	EpozElement = null;
+	EpozTextArea = null;
+}
+
+function initEpozWidget(iframe) {
+	var toolBar = iframe.parentNode;
+	var ta = toolBar.nextSibling; // ta -> textarea
+	var name = ta.name;
+	
+	// change ids
+	iframe.id = IFramePrefix + name;
+	iframe.contentWindow.document.id = DocPrefix + name;
+	toolBar.id = ToolBarPrefix + name;
+	var checkbox = ta.nextSibling.childNodes[0];
+	checkbox.id = CheckBoxPrefix + name;
+	
+    // populate iframe's document
+    iframe.contentWindow.document.body.innerHTML = ta.value;
+	addListener(iframe, "click", HandleEpozRedirect);
+
+	if (browser.isGecko) {
+		scriptExpr = 'EnableDesignMode("' + iframe.id + '");';
+		window.setTimeout(scriptExpr, 10);
+	}
+	
+	toolBar.style.display = "inline";
+	checkbox.parentNode.style.display = "inline";
+	changeBorderStyle(iframe, "dashed");
+}
diff --git a/skins/ajax_scripts/fck_inline_script.dtml b/skins/ajax_scripts/fck_inline_script.dtml
new file mode 100644
index 0000000..439f7d5
--- /dev/null
+++ b/skins/ajax_scripts/fck_inline_script.dtml
@@ -0,0 +1,31 @@
+<script type="text/javascript">
+//<!--
+	__FCKeditorNS = null;
+	function initFCK(config) {
+		var oFCKeditor = new FCKeditor( config['fckId'], config['Width'], config['Height'] );
+		oFCKeditor.BasePath = config['BasePath'];
+		oFCKeditor.Config['CustomConfigurationsPath'] = config['CustomConfigurationsPath'];
+		oFCKeditor.Config['SkinPath'] = config['BasePath'] + 'editor/skins/silver/';
+		oFCKeditor.Config['contentPath'] = config['contentPath'];
+		oFCKeditor.ReplaceTextarea() ;
+		
+		var fckForm = document.getElementById(config['fckId']).form;
+		if ((AJAX_CONFIG & 2) == 2) {
+  		var formManager = new FormManager(fckForm, document.getElementById('mainCell'));
+  		formManager.onBeforeSubmit = function(manager) {
+  			var FCK = document.getElementById(config['fckId'] + '___Frame').contentWindow.FCK;
+  			FCK.UpdateLinkedField();
+  		};
+		}
+	}
+
+	initFCK(
+			{'BasePath': '&dtml-BasePath;', 
+			'CustomConfigurationsPath' : '&dtml-CustomConfigurationsPath;', 
+			'Width':'100%',
+			'Height':'500px',
+			'fckId': '&dtml-fckId;',
+			'contentPath': '&dtml-contentPath;'}
+			);
+//-->
+</script>
diff --git a/skins/ajax_scripts/folder_contents_script.js b/skins/ajax_scripts/folder_contents_script.js
new file mode 100644
index 0000000..b896cb7
--- /dev/null
+++ b/skins/ajax_scripts/folder_contents_script.js
@@ -0,0 +1,235 @@
+// (c) Benoît PIN 2006-2007
+// http://plinn.org
+// Licence GPL
+// $Id: folder_contents_script.js 1375 2008-09-12 12:29:12Z pin $
+// $URL: http://svn.cri.ensmp.fr/svn/Plinn/branches/CMF-2.1/skins/ajax_scripts/folder_contents_script.js $
+
+function getTargetRow(evt){
+	var target = getTargetedObject(evt);
+	while (target.nodeName != "TR")
+		target = target.parentNode;
+	return target;
+}
+
+function FolderDDropControler(listing) {
+	this.folderUrl = document.getElementById("FolderUrl").innerHTML;
+	this.targetRow = null;
+	this.lastOverPosition = null;
+	this.prevDirUp = null;
+	this.noOver = true;
+	this.listing = listing;
+	var thisControler = this;
+	this.listing.onmousedown	= function(evt) {thisControler.drag(evt);};
+	this.listing.onmouseover	= function(evt) {thisControler.moveRow(evt);};
+	this.listing.onmouseup		= function(evt) {thisControler.drop(evt);};
+	this.listing.onclick		= function(evt) {thisControler.disableClickAfterDrop(evt);};
+	
+	if (browser.isIE) {
+		this.listing.ondragstart = function() { window.event.returnValue = false;};
+	}
+}
+
+FolderDDropControler.prototype.drag =  function(evt){
+	var target = getTargetedObject(evt);
+	if (target.nodeName == "INPUT") return true;
+	disableDefault(evt);
+	var targetRow = getTargetRow(evt);
+	targetRow.style.backgroundColor = base_properties["highLightColor"];
+	this.listing.style.cursor = "move";
+	this.targetRow = targetRow;
+	this.lastOverPosition = targetRow.pos;
+};
+
+FolderDDropControler.prototype.moveRow =  function(evt){
+	var targetRow = this.targetRow;
+	if (targetRow != null) {
+		this.noOver = false;
+		if (browser.isIE) document.selection.clear();
+		var overRow = getTargetRow(evt);
+
+	 	if (overRow.pos == targetRow.pos) return;
+ 	
+		if (this.lastOverPosition < overRow.pos) { // move up
+			this.listing.insertBefore(targetRow, overRow.nextSibling);
+			this.prevDirUp = true;
+			this.lastOverPosition = overRow.pos;
+		}
+		else if (this.lastOverPosition > overRow.pos) { // move down
+			this.listing.insertBefore(targetRow, overRow);
+			this.prevDirUp = false;
+			this.lastOverPosition = overRow.pos;
+		}
+		else {
+			if (this.prevDirUp) {
+				this.prevDirUp = false;
+				this.listing.insertBefore(targetRow, overRow);
+			}
+			else {
+				this.prevDirUp = true;
+				this.listing.insertBefore(targetRow, overRow.nextSibling);
+			}
+		}
+	}
+};
+
+FolderDDropControler.prototype.drop =  function(evt){
+	var targetRow = this.targetRow;
+	if (targetRow != null) {
+		targetRow.style.backgroundColor="";
+		this.listing.style.cursor = "";
+		if (this.noOver) {
+			var thisControler = this;
+			setTimeout(function(){thisControler.reset();}, 50);
+			return;
+		}
+		if (this.lastOverPosition != null) {
+			// get new object position.
+			var trim = 0;
+			if (targetRow.pos < this.lastOverPosition && !this.prevDirUp)
+				trim = -1;
+			else if (targetRow.pos > this.lastOverPosition && this.prevDirUp)
+				trim = 1;
+		
+			// construct url
+	  		var object_id = targetRow.getElementsByTagName("INPUT")[0].getAttribute("value");
+	  		var url = this.folderUrl + "/moveObjectIdToPosition";
+	  		var form ="object_id=" + object_id + "&position:int=" +
+	  				   String(this.lastOverPosition - 1 + trim);
+
+			// reinitialize positions
+			var rows = this.listing.getElementsByTagName("TR"), row;
+			for (var i = 0 ; i < rows.length ; i++) {
+				row = rows[i];
+				row.pos = i+1;
+	  			if (i % 2 == 0)
+	  				row.className = "even";
+	  			else
+	  				row.className = "odd";
+	  		}
+
+			// send request	    		
+			var req = new XMLHttpRequest();
+			req.open("POST", url, true);
+			req.setRequestHeader("Content-Type", "application/x-www-form-urlencoded;charset=utf-8");
+			req.send(form);
+			var thisControler = this;
+			setTimeout(function(){thisControler.reset();}, 50);
+		}
+	}
+};
+
+FolderDDropControler.prototype.disableClickAfterDrop = function(evt) {
+	var target = getTargetedObject(evt);
+	if (!this.noOver) {
+		disablePropagation(evt);
+		disableDefault(evt);
+	}
+	this.reset();
+};
+
+FolderDDropControler.prototype.reset = function() {
+	this.targetRow = null;
+	this.lastOverPosition = null;
+	this.prevDirUp = null;
+	this.noOver = true;
+}
+
+
+
+function DropTarget(node, folderDDControler) {
+	this.folderDDControler = folderDDControler;
+	this.batchSize = parseInt(document.getElementById("BatchNavigationSize").innerHTML);
+	var thisControler = this;
+	node.onmouseup = function(evt){thisControler.drop(evt);};
+	node.onmouseover = function(evt) {thisControler.highlightTarget(evt);};
+	node.onmouseout = function(evt) {
+		var target = getTargetedObject(evt);
+		if (target.nodeName == "A" && target.className == "dropPageTarget")
+			target.className = "";
+	};
+}
+
+DropTarget.prototype.drop = function(evt) {
+	var target = getTargetedObject(evt);
+	if (target.nodeName == "A" &&
+		target.className != "previous" && 
+		target.className != "next") {
+		var pageNumber = parseInt(target.innerHTML);
+		var targetRow = this.folderDDControler.targetRow;
+		if ( !isNaN(pageNumber) && targetRow) {
+			this.folderDDControler.reset();
+    		var object_id = targetRow.getElementsByTagName("INPUT")[0].getAttribute("value");
+    		var url = this.folderDDControler.folderUrl + "/moveObjectIdToPosition";
+    		var form ="object_id=" + object_id + "&position:int=" + String(this.batchSize * (pageNumber-1));
+			// send request
+			var req = new XMLHttpRequest();
+			req.open("POST", url, true);
+			req.setRequestHeader("Content-Type", "application/x-www-form-urlencoded;charset=utf-8");
+			req.send(form);
+			req.onreadystatechange = function() {
+				if (req.readyState == 4) {
+					switch (req.status) {
+						case 200:
+						case 204:
+						case 1223:
+							raiseMouseEvent(target, "click");
+							break;
+						default:
+							alert('Error: ' + req.status);
+					};
+				}
+			};
+		}
+	}
+};
+
+DropTarget.prototype.highlightTarget = function(evt){
+	if (browser.isIE) document.selection.clear();
+	var target = getTargetedObject(evt);
+	if (this.folderDDControler.targetRow &&
+		target.nodeName == "A" &&
+		target.className != "previous" &&
+		target.className != "next")
+		target.className = "dropPageTarget";
+};
+
+
+
+
+function loadListing(evt) {
+	var target = getTargetedObject(evt);
+	disableDefault(evt);
+	disablePropagation(evt);
+	switch (target.nodeName) {
+		case "A" :
+			var parts = target.href.split('?')
+			var url = parts[0];
+			var query = '';
+			if (parts.length == 2)
+				query = parts[1];
+			
+			var urlParts = url.split("/");
+			var url = urlParts.slice(0,urlParts.length-1).join("/");
+			if (query.search("template") == -1)
+				query += "&template=folder_contents_macros&macro=FolderListing&fragmentId=FolderListing";
+			url = url + "/folder_contents?" + query;
+			
+			var fi = new FragmentImporter(url);
+			fi.load();
+			break;
+
+		case "IMG" :
+			if (target.id == 'SetSortingAsDefault') {
+				var parent = target.parentNode;
+				var url = parent.href;
+				url = url.replace("folder_contents", "folder_sort_control");
+				parent.parentNode.removeChild(parent);
+				
+				var req = new XMLHttpRequest();
+				req.open("GET", url, true);
+				req.send(null);
+			}
+			break;
+	}
+	return false;
+}
diff --git a/skins/ajax_scripts/folder_contents_script.js.metadata b/skins/ajax_scripts/folder_contents_script.js.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/ajax_scripts/folder_contents_script.js.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/ajax_scripts/fragment_importer.js b/skins/ajax_scripts/fragment_importer.js
new file mode 100644
index 0000000..05b6b79
--- /dev/null
+++ b/skins/ajax_scripts/fragment_importer.js
@@ -0,0 +1,113 @@
+// (c) Benoît PIN 2006-2007
+// http://plinn.org
+// Licence GPL
+// $Id: fragment_importer.js 1315 2008-07-29 15:36:15Z pin $
+// $URL: http://svn.cri.ensmp.fr/svn/Plinn/branches/CMF-2.1/skins/ajax_scripts/fragment_importer.js $
+
+var FragmentImporter;
+
+(function(){
+
+var isTextMime = /^text\/.+/i;
+
+FragmentImporter = function(url, onAfterPopulate, baseElement) {
+	var thisImporter = this;
+	this.url = url;
+	this.onAfterPopulate = (!onAfterPopulate) ? function(){return;} : onAfterPopulate;
+	this.baseElement = baseElement;
+	if (baseElement && window.console)
+		console.warn('Deprecation warning : usage of baseElement will be removed. Use an xml based response.');
+};
+
+FragmentImporter.prototype._load = function(url) {
+	var req = new XMLHttpRequest();
+	var thisImporter = this;
+	req.onreadystatechange = function() {
+		switch (req.readyState) {
+			case 1 :
+				showProgressImage();
+				break;
+			case 2 :
+				try {
+					if (! isTextMime.exec(req.getResponseHeader('Content-Type'))) {
+						req.onreadystatechange = null;
+						req.abort();
+						hideProgressImage();
+						window.location.href = thisImporter._fallBackUrl;
+					}
+				}
+				catch(e){}
+				break;
+			case 4 :
+				hideProgressImage();
+				if (req.status == '200')
+					thisImporter.populateBaseElement(req);
+				else
+					alert('Error: ' + req.status);
+				
+		};
+	};
+
+	req.open("GET", url, true);
+	req.send(null);
+};
+
+FragmentImporter.prototype.load = function(fallBackUrl) {
+	if (fallBackUrl)
+		this._fallBackUrl = fallBackUrl;
+	else
+		this._fallBackUrl = this.url;
+	this._load(this.url);
+};
+
+FragmentImporter.prototype.useMacro = function(template, macro, fragmentId, queryString) {
+	var url = this.url + "/use_macro?template=" + template + "&macro=" + macro + "&fragmentId=" + fragmentId;
+	if (queryString)
+		url += '&' + queryString;
+	this._load(url);
+};
+
+
+FragmentImporter.prototype.populateBaseElement = function(req) {
+	// :( IE : innerHTML is read-only for these tags:
+	// COL, COLGROUP, FRAMESET, HTML, STYLE, TABLE, TBODY, TFOOT, THEAD, TITLE, TR
+	var contentType = req.getResponseHeader('Content-Type');
+	if (! isTextMime.exec(contentType)) {
+		window.location.href = this._fallBackUrl;
+		return;
+	}
+	if (contentType.indexOf('text/xml') != -1) {
+		var fragments = req.responseXML.documentElement.childNodes;
+		var fragment, dest, scripts;
+		for (var i=0 ; i < fragments.length ; i++) {
+			fragment = fragments[i];
+			if (fragment.nodeName == 'fragment') {
+				dest = document.getElementById(fragment.getAttribute('id'));
+				if(!dest)
+					continue;
+				dest.innerHTML = fragment.firstChild.nodeValue;
+				
+				scripts = dest.getElementsByTagName('script');
+				for (var j=0 ; j < scripts.length ; j++)
+					globalScriptRegistry.loadScript(scripts[j]);
+			}
+		}
+	}
+	else {
+		this.baseElement.innerHTML = req.responseText;
+	
+		var scripts = this.baseElement.getElementsByTagName('script');
+		for (var i=0 ; i < scripts.length ; i++)
+			globalScriptRegistry.loadScript(scripts[i]);
+	}
+
+	var onAfterPopulate = this.onAfterPopulate;
+	if (typeof(onAfterPopulate) == "string") {
+		if (console)
+			console.warn('Deprecation warning : onAfterPopulate may not be a string (' + onAfterPopulate + ')');
+		onAfterPopulate = eval(onAfterPopulate);
+	}
+	onAfterPopulate();
+};
+
+})();
\ No newline at end of file
diff --git a/skins/ajax_scripts/fragment_importer.js.metadata b/skins/ajax_scripts/fragment_importer.js.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/ajax_scripts/fragment_importer.js.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/ajax_scripts/generic_header_script.js b/skins/ajax_scripts/generic_header_script.js
new file mode 100755
index 0000000..f8cdd09
--- /dev/null
+++ b/skins/ajax_scripts/generic_header_script.js
@@ -0,0 +1,140 @@
+// (c) Benoît PIN 2006-2007
+// http://plinn.org
+// Licence GPL
+// $Id: generic_header_script.js 1315 2008-07-29 15:36:15Z pin $
+// $URL: http://svn.cri.ensmp.fr/svn/Plinn/branches/CMF-2.1/skins/ajax_scripts/generic_header_script.js $
+
+
+function initHeaderScript() {
+	var toggleButton = document.getElementById("ToggleFormButton");
+	if (!toggleButton) return;
+	var ob_url = absolute_url();
+	var metadataInspector = new InspectorPalette(portal_url(),
+												 document.getElementById("ToggleFormButton").childNodes[0],
+												 document.getElementById("HeaderArea"));
+
+	metadataInspector.onExpand = function(inspector) {
+		var onAfterPopulate = function() {
+			// init simple metadata form manager
+			var metadataForm = inspector.contentNode.getElementsByTagName('FORM')[0];
+			var fm = new FormManager(metadataForm);
+			fm.onResponseLoad = function(){inspector.collapse();};
+			
+			// init event handler to show full metadata form
+			var showFullMetadataForm = function(evt) {
+				disableDefault(evt);
+				disablePropagation(evt);
+
+				var initFullMetadataForm = function () {
+					var metadataForm = inspector.contentNode.getElementsByTagName('FORM')[0];
+					var fm = new FormManager(metadataForm);
+					fm.onResponseLoad = function(){inspector.collapse();};
+					
+					addListener(document.getElementById('showSimpleMetadataForm'),
+								'click',
+								function(evt){inspector.expand(); disableDefault(evt); disablePropagation(evt);});
+				};
+				var fi = new FragmentImporter(absolute_url(), initFullMetadataForm);
+				fi.useMacro('header_widgets', 'fullMetadataForm', 'HeaderArea');
+			};
+			addListener(document.getElementById('showFullMetadataForm'), 'click', showFullMetadataForm);
+		};
+		var fi = new FragmentImporter(ob_url, onAfterPopulate);
+		fi.useMacro('header_widgets', 'titleAndDescForm', 'HeaderArea');
+	};
+
+	metadataInspector.onCollapse = function(inspector) {
+		var fi = new FragmentImporter(ob_url);
+		fi.useMacro('header_widgets', 'viewTitleAndDesc', 'HeaderArea');
+	};
+}
+
+
+function MetadataDateManager(baseFieldName, defaultDate) {
+	var thisManager = this;
+	this.baseFieldName = baseFieldName;
+	this.defaultDate = defaultDate;
+	this._previousDate = new Date();
+	
+	var calConfig = [];
+	// setup js calendar
+	calConfig["inputField"]		=	baseFieldName;		// id of the input field
+	calConfig["ifFormat"]		=	"%Y %m %d %H %M";   // format of the input field
+	calConfig["date"]			=	function() { return thisManager.builDateFromInputs(); };
+	calConfig["showsTime"]		=	true;               // will display a time selector
+	calConfig["button"]			=	"show_" + baseFieldName + "_cal";     // trigger for the calendar (button ID)
+	calConfig["singleClick"]	=	false;              // double-click mode
+	calConfig["showOthers"]		=	true;               // show overlapping months
+	calConfig["weekNumbers"]	=	false;
+	calConfig["firstDay"]		=	1;
+	calConfig["onSelect"]		=	thisManager.splitDate;
+
+	Calendar.setup(calConfig);
+	
+	//init event listener on checkbox
+	var cb = document.getElementById(baseFieldName + "_cb");
+	if (cb) {
+		addListener(cb, 'click', function(){thisManager.toggleDisplay();});
+		if ( this.builDateFromInputs().valueOf() == this.defaultDate.valueOf() ) {
+			document.getElementById(baseFieldName + "_fields").style.display = "none";
+			cb.checked = true;
+		}
+	}
+}
+
+MetadataDateManager.prototype.builDateFromInputs = function() {
+	var baseFieldName = this.baseFieldName;
+	var year	=	document.getElementById(baseFieldName + "_year").value;
+	var month	=	document.getElementById(baseFieldName + "_month").value;
+	var day		=	document.getElementById(baseFieldName + "_day").value;
+	var hour	=	document.getElementById(baseFieldName + "_hour").value;
+	var minute	=	document.getElementById(baseFieldName + "_minute").value;
+
+	if ( (year && month && day && hour && minute) != "" ) {
+		var dateStr = month + "/" + day + "/" +  year + " " + hour + ":" + minute + ":00";
+		return new Date(dateStr) ;
+	}
+	else
+		return new Date();
+};
+
+MetadataDateManager.prototype.splitDate = function(calendar, date) {
+	var inputId = (typeof calendar == "string") ? this.baseFieldName : calendar.params['inputField'].id;
+
+	var tokens;
+	if (typeof date == "object") {
+		tokens = new Array(5);
+		tokens[0] = String( date.getFullYear() );
+		var month = date.getMonth() +1;
+		tokens[1] = (month <10) ? "0" + String(month) : String(month);
+		var day = date.getDate()
+		tokens[2] = (day < 10) ? "0" + String(day) : String(day);
+		var hours = date.getHours();
+		tokens[3] = (hours < 10) ? "0" + String(hours) : String(hours);
+		var minutes = date.getMinutes();
+		tokens[4] = (minutes < 10) ? "0" + String(minutes) : String(minutes);
+	} 
+	else
+		tokens = date.split(" ");
+
+	document.getElementById(inputId + "_year").value = tokens[0];
+	document.getElementById(inputId + "_month").value = tokens[1];
+	document.getElementById(inputId + "_day").value = tokens[2];
+	document.getElementById(inputId + "_hour").value = tokens[3];
+	document.getElementById(inputId + "_minute").value = tokens[4];
+};
+
+
+MetadataDateManager.prototype.toggleDisplay = function() {
+	var cb		= document.getElementById(this.baseFieldName + '_cb');
+	var fields	= document.getElementById(this.baseFieldName + '_fields');
+	if (cb.checked) {
+		fields.style.display = "none";
+		this._previousDate = this.builDateFromInputs();
+		this.splitDate('', this.defaultDate)
+	}
+	else {
+		this.splitDate('', this._previousDate);
+		fields.style.display = "block";
+	}
+};
\ No newline at end of file
diff --git a/skins/ajax_scripts/generic_header_script.js.metadata b/skins/ajax_scripts/generic_header_script.js.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/ajax_scripts/generic_header_script.js.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/ajax_scripts/growable_table.js b/skins/ajax_scripts/growable_table.js
new file mode 100644
index 0000000..f1d21d3
--- /dev/null
+++ b/skins/ajax_scripts/growable_table.js
@@ -0,0 +1,300 @@
+// © Benoît PIN 2006-2008
+// http://plinn.org
+// Licence GPL
+// $Id: growable_table.js 1473 2009-03-06 17:02:21Z pin $
+// $URL: http://svn.cri.ensmp.fr/svn/Plinn/branches/CMF-2.1/skins/ajax_scripts/growable_table.js $
+// GrowableTable: functions to edit quickly table form entries.
+
+function GrowableTable(tbody, fieldsDescription, submitExtName, skipFormManagerInit) {
+	this.fieldsDescription = fieldsDescription;
+	this.tbody = tbody;
+	this.length = tbody.getElementsByTagName('tr').length;
+	this.submitExtName = submitExtName;
+
+	var form = this.tbody.parentNode;
+	while (form.tagName != 'FORM') 
+		form = form.parentNode;
+
+	var thisManager = this;
+
+	if (!skipFormManagerInit) {
+		var formManager = new FormManager(form);
+		formManager.onBeforeSubmit = function(m, e){return thisManager.onBeforeSubmit(m, e)};
+		formManager.onResponseLoad = function(req){thisManager.loadResponse(req);};
+	}
+	
+	addListener(this.tbody.parentNode, 'click', function(evt){thisManager.tbodyClick(evt);});
+	
+	var addButton;
+	var links = tbody.parentNode.getElementsByTagName('a');
+	for (var i=0 ; i<links.length ; i++) {
+		addButton = links[i];
+		if (addButton.name == 'addrow')
+			break;
+	}
+	this.addButton = addButton;
+	this.submittedRow = null;
+	this.editedRowInitialValues = null;
+	
+	
+}
+
+GrowableTable.prototype.tbodyClick = function(evt) {
+	var ob = getTargetedObject(evt);
+	if (ob.tagName == 'IMG') {
+		disablePropagation(evt);
+		disableDefault(evt);
+		
+		var link = ob.parentNode;
+		var name = link.getAttribute('name');
+		
+		if (name == 'addrow')
+				this.addRow();
+		else if (name)
+			this.removeRow(ob, name);
+	}
+	else {
+		while (ob.tagName != 'TBODY') {
+			if (ob.tagName == 'SPAN')
+				break;
+			else
+				ob = ob.parentNode;
+		}
+		
+		if (ob.tagName == 'SPAN') {
+			disablePropagation(evt);
+			disableDefault(evt);
+			this.replaceRowByFields(ob);
+		}
+	}
+};
+
+GrowableTable.prototype.replaceRowByFields = function(ob) {
+	if (this.editedRowInitialValues)
+		return;
+	this.addButton.className = 'hidden';
+	var tr = ob;
+	while (tr.tagName != 'TR')
+		tr = tr.parentNode;
+			
+	var span, cell, input, elementName, text;
+	var cells = tr.getElementsByTagName('td');
+	elementName = cells[0].getElementsByTagName('a')[0].getAttribute('name');
+	
+	this.editedRowInitialValues = new Array();
+
+	for (var i=1; i < cells.length ; i++) {
+		cell = cells[i];
+		span = cell.getElementsByTagName('span')[0];
+		this.editedRowInitialValues[i-1] = span.innerHTML;
+		
+		if (span.firstChild && span.firstChild.className == 'hidden_value')
+		    text = span.firstChild.innerHTML;
+		else
+		    text = span.innerHTML;
+		
+		input = document.createElement('input');
+		with(input) {
+			type='text';
+			name=this.fieldsDescription[i-1][0];
+			size=this.fieldsDescription[i-1][1];
+			value=text;
+		}
+		cell.replaceChild(input, span);
+		
+		if (i == cells.length - 1) {
+			var hiddenNameInput = document.createElement('input');
+			with (hiddenNameInput){
+				type='hidden';
+				name='row_edit' + this.submitExtName;
+				value=elementName;
+			}
+			
+			var validButton = document.createElement('input');
+			with (validButton) {type = 'image'; name = 'row_edit_valid'; src = portal_url() + '/validate.gif'; alt = 'Validate'; height='16'; width='16'}
+
+			var cancelButton = document.createElement('input');
+			with (cancelButton) {type = 'image'; name = 'row_edit_cancel'; src = portal_url() + '/cancel.gif'; alt = 'Cancel';}
+			
+			cell.appendChild(hiddenNameInput)
+			cell.appendChild(validButton);
+			cell.appendChild(cancelButton);
+		}
+	}
+	return tr;
+};
+
+GrowableTable.prototype.cancelEditRow = function(ob) {
+	var tr = ob;
+	while(tr.tagName != 'TR')
+		tr = tr.parentNode;
+	
+	var cells = tr.getElementsByTagName('td');
+	var td, span, text;
+	for (var i=1 ; i < cells.length ; i++) {
+		td = cells[i];
+		while (td.firstChild)
+			td.removeChild(td.firstChild);
+
+		span = document.createElement('span');
+		td.appendChild(span);
+		span.innerHTML = this.editedRowInitialValues[i-1];
+	}
+	
+	this.editedRowInitialValues = null;
+	this.addButton.className = '';
+}
+
+GrowableTable.prototype.onBeforeSubmit = function(m, evt) {
+	var target = getTargetedObject(evt);
+	var submitElement, form;
+	
+	switch (target.tagName) {
+		case 'INPUT' :
+			submitElement = target;
+			form = target.form;
+			break;
+		case 'FORM' :
+			submitElement = m.submitButton;
+			form = target;
+			break;
+	}
+	
+	switch(submitElement.name) {
+		case 'row_cancel':
+			this.cancelRow(submitElement);
+			break;
+		case 'row_edit_cancel':
+			this.cancelEditRow(submitElement);
+			return 'cancelSubmit';
+			break;
+		default :
+			var submittedRow = submitElement;
+			while(submittedRow.tagName != 'TR')
+				submittedRow = submittedRow.parentNode;
+			this.submittedRow = submittedRow;
+			return;
+			break;
+	}
+	
+	return 'cancelSubmit';
+}
+
+GrowableTable.prototype.loadResponse = function(req) {
+	var doc = req.responseXML.documentElement;
+	switch (doc.nodeName) {
+		case 'computedField':
+			var copy = getCopyOfNode(doc.firstChild);
+			this.tbody.replaceChild(copy, this.submittedRow);
+			this.addButton.className = '';
+			this.submittedRow = null;
+			this.editedRowInitialValues = null;
+			break;
+		case 'error':
+			alert(doc.firstChild.nodeValue);
+			break;
+	}
+}
+
+GrowableTable.prototype.addRow = function(evt) {
+	var fieldDescription, input, fieldName, fieldSize;
+	var firstField;
+	var tr = document.createElement('tr');
+	var td = document.createElement('td');
+	var hiddenInputAddRowFlag = document.createElement('input');
+	with (hiddenInputAddRowFlag){
+		type='hidden';
+		name='row_add' + this.submitExtName;
+		value='add';
+	}
+	td.appendChild(hiddenInputAddRowFlag);
+	tr.appendChild(td);
+	
+	for (var i=0 ; i < this.fieldsDescription.length ; i++) {
+		fieldDescription = this.fieldsDescription[i];
+		fieldName = fieldDescription[0];
+		fieldSize = fieldDescription[1];
+		
+		td = document.createElement('td');
+		input = document.createElement('input')
+		with(input){type='text'; name=fieldName; size=fieldSize; }
+		td.appendChild(input);
+		tr.appendChild(td);
+		if (i == 0)
+			firstField = input;
+		if (i == this.fieldsDescription.length -1) {
+			var validButton = document.createElement('input');
+			with (validButton) {type = 'image'; name = 'row_valid'; src = portal_url() + '/validate.gif'; alt = 'Validate'; height='16'; width='16'}
+
+			var cancelButton = document.createElement('input');
+			with (cancelButton) {type = 'image'; name = 'row_cancel'; src = portal_url() + '/cancel.gif'; alt = 'Cancel';}
+			
+			td.appendChild(validButton);
+			td.appendChild(cancelButton);
+		}
+	}
+	
+	this.tbody.appendChild(tr);
+	this.length += 1;
+	firstField.focus();
+	this.addButton.className = 'hidden';
+	return tr;
+};
+
+GrowableTable.prototype.removeRow = function(ob, name) {
+	var tr = ob;
+	while (tr.tagName != 'TR')
+		tr = tr.parentNode;
+	
+	var form = tr;
+	while (form.tagName != 'FORM')
+		form = form.parentNode;
+
+	var req = new XMLHttpRequest();
+	var thisManager = this;
+	req.onreadystatechange = function() {
+		switch (req.readyState) {
+			case 1 :
+				showProgressImage();
+				break;
+			case 4 :
+				hideProgressImage();
+				if (req.status == '200') {
+					if (req.responseXML.documentElement.tagName == 'done')
+						thisManager.tbody.removeChild(tr);
+						thisManager.onAfterRemove(name);
+				}
+				else
+					alert('Error: ' + req.status);
+		}
+	};
+	
+	var url = form.action;
+	req.open("POST", url, true);
+	req.setRequestHeader("Content-Type", "application/x-www-form-urlencoded;charset=utf-8");
+	req.send('name=' + name + '&rm=rm');
+}
+
+GrowableTable.prototype.onAfterRemove = function(name) { }
+
+GrowableTable.prototype.cancelRow = function(element) {
+	/* element must be on the "descendant-or-self" axis of the row to remove */
+	while (element.tagName != 'TR')
+		element = element.parentNode;
+	this.tbody.removeChild(element);
+	this.addButton.className= undefined;
+}
+
+
+/* 
+* http://www.sitepoint.com/blogs/2006/01/17/javascript-inheritance/
+*/
+
+function copyPrototype(descendant, parent) { 
+	var sConstructor = parent.toString(); 
+	var aMatch = sConstructor.match( /\s*function (.*)\(/ );
+	if ( aMatch != null ) { descendant.prototype[aMatch[1]] = parent; } 
+	for (var m in parent.prototype) { 
+		descendant.prototype[m] = parent.prototype[m]; 
+	}
+}
diff --git a/skins/ajax_scripts/input_completion.js b/skins/ajax_scripts/input_completion.js
new file mode 100644
index 0000000..74311e6
--- /dev/null
+++ b/skins/ajax_scripts/input_completion.js
@@ -0,0 +1,139 @@
+// © Benoît PIN 2008
+// http://plinn.org
+// Licence GPL
+// $Id: input_completion.js 1409 2008-10-30 16:15:00Z pin $
+// $URL: http://svn.cri.ensmp.fr/svn/Plinn/branches/CMF-2.1/skins/ajax_scripts/input_completion.js $
+// Form completion utils
+
+// public names
+var TextInputCompletion;
+
+(function(){
+
+UID_ATTEMPT = 8;
+
+TextInputCompletion = function(input, url) {
+	this.url = url;
+	this.input = input;
+	this.previousValue = this.input.value;
+	
+	var thisManager = this;
+	addListener(this.input, 'keyup', function(evt) { thisManager._inputComplete(evt); });
+	addListener(this.input, 'blur', function(evt) {thisManager._inputQuit(evt);});
+	this.input.cancelNextSubmit = true;
+
+	var uid;
+	for (var i=0 ; i<UID_ATTEMPT ;i++) {
+		uid = Math.random().toString().slice(2);
+		uid = 'completions' + uid;
+		if (!document.getElementById(uid))
+			break;
+	}
+
+	var completions = document.createElement('div');
+	completions.id = uid;
+	completions.style.position = 'relative';
+	completions.style.top = getObjectHeight(input) + 'px';
+	
+	var parent = input.parentNode;
+	parent.insertBefore(completions, input);
+
+	this.completions = completions;
+	addListener(this.completions, 'click',
+				function(evt){thisManager.selectCompletion(getEventObject(evt));}
+				);
+	this.selectedCompletion = null;
+}
+
+
+TextInputCompletion.prototype._inputComplete = function(evt) {
+	var currentValue = this.input.value;
+	if (currentValue == this.previousValue)
+		this.selectCompletion(getEventObject(evt));
+	else {
+		var url = this.url + '?value=' + encodeURIComponent(currentValue);
+		url = url + '&uid=' + this.completions.id;
+		var thisManager = this;
+		var fi = new FragmentImporter(url, function(){thisManager.completeIfOneResult() })
+		fi.load();
+	}
+};
+
+TextInputCompletion.prototype._inputQuit = function(evt) {
+	if (this.selectedCompletion) {
+		try {
+			this.copyCompletion(this.selectedCompletion);
+		}
+		catch(e){}
+	}
+	this.selectedCompletion = null;
+	thisCompleter = this
+	setTimeout(function(){thisCompleter.completions.innerHTML='';}, 200);
+};
+
+TextInputCompletion.prototype.selectCompletion = function(evt) {
+	var res = this.completions.getElementsByTagName('li');
+	if (!res) return;
+		
+	if (evt.type == 'keyup') {
+		var newSelection = false;
+		switch(evt.keyCode) {
+			case 40: // down key
+				if (!this.selectedCompletion) {
+					this.selectedCompletion = res[0];
+					newSelection = true;
+				}
+				else if (this.selectedCompletion.nextSibling) {
+					this.selectedCompletion.className = '';
+					this.selectedCompletion = this.selectedCompletion.nextSibling;
+					newSelection = true;
+				}
+				break;
+			case 38: // up key
+				if (this.selectedCompletion && this.selectedCompletion.previousSibling) {
+					this.selectedCompletion.className = '';
+					this.selectedCompletion = this.selectedCompletion.previousSibling;
+					newSelection = true;
+				}
+				break;
+			case 13: // enter key
+				if (this.selectedCompletion) {
+					this.copyCompletion(this.selectedCompletion);
+					this.completions.innerHTML = '';
+					this.input.cancelNextSubmit = true;
+					return;
+				}
+				break
+		}
+		if (newSelection) {
+			this.selectedCompletion.className = 'selected';
+			this.copyCompletion(this.selectedCompletion);
+		}
+	}
+	else if (evt.type=='click') {
+		this.selectedCompletion = getTargetedObject(evt);
+		this.copyCompletion(this.selectedCompletion);
+	}
+}
+
+TextInputCompletion.prototype.copyCompletion = function(completion) {
+	this.input.value = this.previousValue = completion.firstChild.nodeValue;
+}
+
+TextInputCompletion.prototype.completeIfOneResult = function() {
+	this.selectedCompletion = null;
+	var currentValue = this.input.value;
+	
+	if (this.previousValue.length < currentValue.length) {
+		var res = this.completions.getElementsByTagName('li');
+		if (res.length == 1) {
+			var completion = res[0];
+			this.copyCompletion(completion);
+			this.completions.innerHTML = '';
+		}
+	}
+	
+	this.previousValue = currentValue;
+};
+
+})();
\ No newline at end of file
diff --git a/skins/ajax_scripts/javascript_events_api.js b/skins/ajax_scripts/javascript_events_api.js
new file mode 100644
index 0000000..0eecace
--- /dev/null
+++ b/skins/ajax_scripts/javascript_events_api.js
@@ -0,0 +1,300 @@
+// (c) Benoît PIN 2006-2009
+// http://plinn.org
+// Licence GPL
+// $Id: javascript_events_api.js 1532 2009-08-13 14:18:16Z pin $
+// $URL: http://svn.cri.ensmp.fr/svn/Plinn/branches/CMF-2.1/skins/ajax_scripts/javascript_events_api.js $
+// Meta functions for events management.
+
+var addListener; /* (ob, eventName, listenerFunction, group) add event listener eventName without "on" prefix.
+				 *  optionally, listeners can be grouped to make removing convenient.
+				 */
+var removeListener; // (ob, eventName, listenerFunction, group) remove event listener.
+var removeGroupListeners; // (group) remove all listeners in group.
+var raiseMouseEvent; // (ob, eventName) raise mouse event (without "on" prefix) on object.
+
+var getTargetedObject; // (event) retrieves the object that fired the event. Event parameter is optional.
+var getEventObject; // (event) return the event object. Event parameter is optional.
+var disableDefault; // (event) disable default event's action. Event parameter is optional.
+var disablePropagation; // (event) disable event propagation or bubbling.
+
+// etc utils
+var getWindowWidth; // returns browser's window width
+var getWindowHeight; // returns browser's window height
+var clearSelection; // clear current selection (useful on drag and drop)
+var getCopyOfNode; /* (node) returns a clone of the given node.
+					* Useful when :
+						* the node came from a foreign document (eg. XmlHttpRequest xml reponse)
+						* to inject HMTL code inside tags where innerHtml is read only (IE)
+					*/
+
+(function(){
+
+function buildMetaFunctions() {
+	addListener = _build_addListener();
+	removeListener = _build_removeListener();
+	raiseMouseEvent = _build_raiseMouseEvent();
+
+	getTargetedObject = _build_getTargetedObject();
+	getEventObject = _build_getEventObject();
+	disableDefault = _build_disableDefault();
+	disablePropagation = _build_disablePropagation();
+	getWindowWidth = _build_getWindowWidth();
+	getWindowHeight = _build_getWindowHeight();
+	clearSelection = _build_clearSelection();
+}
+
+__groupListeners = {};
+
+function _build_addListener() {
+	var _browserSpecific;
+	if (browser.isIE55 || browser.isIE6up) {
+		_browserSpecific = function(ob, eventName, listenerFunction) {
+			eventName = "on" + eventName;
+			ob.attachEvent(eventName, listenerFunction);
+		};
+	}
+	else if (browser.isDOM2Event) {
+		_browserSpecific = function(ob, eventName, listenerFunction) {
+			ob.addEventListener(eventName, listenerFunction, false); // only bubbling events :-(
+		};
+	}
+	var common = function(ob, eventName, listenerFunction, group) {
+		_browserSpecific(ob, eventName, listenerFunction);
+		if (group) {
+			if(!__groupListeners[group])
+				__groupListeners[group] = new Array();
+			__groupListeners[group].push([ob, eventName, listenerFunction]);
+		}
+	}
+	return common;
+}
+
+function _build_removeListener() {
+	if (browser.isIE55 || browser.isIE6up) {
+		var _ie_removeListener = function(ob, eventName, listenerFunction) {
+			eventName = "on" + eventName;
+			ob.detachEvent(eventName, listenerFunction);
+		}
+		return _ie_removeListener;
+	}
+	else if (browser.isDOM2Event) {
+		var _dom2_removeListener = function(ob, eventName, listenerFunction) {
+			ob.removeEventListener(eventName, listenerFunction, false); // only bubbling events :-(
+		}
+		return _dom2_removeListener;
+	}
+}
+
+removeGroupListeners = function(group) {
+	var listeners = __groupListeners[group];
+	var l;
+	for (var i=0 ; i<listeners.length ; i++){
+		l = listeners[i];
+		removeListener(l[0], l[1], l[2])
+	}
+	__groupListeners[group] = null;
+		
+}
+
+function  _build_raiseMouseEvent() {
+	if (browser.isIE55 || browser.isIE6up) {
+		var _ie_raiseMouseEvent = function(ob, eventName) {
+			ob.fireEvent("on" + eventName);
+		}
+		return _ie_raiseMouseEvent;
+	}
+	else if (browser.isDOM2Event) {
+		var _dom2_raiseMouseEvent = function(ob, eventName) {
+			var event = document.createEvent("MouseEvents");
+			event.initEvent(eventName, true, true);
+			ob.dispatchEvent(event);
+		}
+		return _dom2_raiseMouseEvent;
+	}
+}
+
+function _build_getTargetedObject(){
+	if (browser.isIE55 || browser.isIE6up) {
+		var _ie_getTargetedObject = function() {
+			return window.event.srcElement;
+		}
+		return _ie_getTargetedObject;
+	}
+	else if (browser.isDOM2Event) {
+		var _appleWebKit_getTargetedeObject = function(evt) {
+			var target = evt.target;
+			// is it really safe ?...
+			return (target.nodeType == 3) ? target.parentNode : target;
+		}
+		var _dom2_getTargetedObject = function(evt) {
+			return evt.target
+		}
+		return (browser.isAppleWebKit) ? _appleWebKit_getTargetedeObject : _dom2_getTargetedObject;
+	}
+}
+
+function _build_getEventObject(){
+	if (browser.isIE) {
+		var _ie_getEventObject = function() {
+			return window.event;
+		}
+		return _ie_getEventObject;
+	}
+	else if (browser.isDOM2Event) {
+		var _dom2_getEventObject = function(evt) {
+			return evt;
+		}
+		return _dom2_getEventObject;
+	}
+}
+
+
+function _build_disableDefault(){
+	if (browser.isIE55 || browser.isIE6up) {
+		var _ie_disableDefault = function() {
+			window.event.returnValue = false;
+		}
+		return _ie_disableDefault;
+	}
+	else if (browser.isDOM2Event) {
+		var _dom2_disableDefault = function(evt) {
+			evt.preventDefault();
+		}
+		return _dom2_disableDefault;
+	}
+}
+
+function _build_disablePropagation() {
+	if (browser.isIE55 || browser.isIE6up) {
+		var _ie_disablePropagation = function() {
+			window.event.cancelBubble = true;
+		}
+		return _ie_disablePropagation;
+	}
+	else if (browser.isDOM2Event) {
+		var _dom2_disablePropagation = function(evt) {
+			evt.stopPropagation();
+		}
+		return _dom2_disablePropagation;
+	}
+}
+
+function _build_getWindowWidth() {
+	if (window.innerWidth != undefined){
+		return function(){
+			return window.innerWidth;
+			};
+	}
+	else {
+		return function(){
+			return document.documentElement.clientWidth;
+		};
+	}
+}
+
+function _build_getWindowHeight() {
+	if (window.innerHeight != undefined) {
+		return function(){
+			return window.innerHeight;
+		};
+	}
+	else {
+		return function(){
+			return document.documentElement.clientHeight;
+		};
+	}
+}
+
+function _build_clearSelection() {
+	if (document.selection) {
+		return function() {
+			document.selection.clear();
+		};
+	}
+	else {
+		return function() {
+			window.getSelection().removeAllRanges();
+		}
+	}
+}
+
+
+buildMetaFunctions();
+
+var ELEMENT_NODE = 1;
+var TEXT_NODE = 3;
+var _setAttribute;
+getCopyOfNode = function(node) {
+	
+	switch(node.nodeType) {
+		case ELEMENT_NODE:
+			var attributes = node.attributes;
+			var childs = node.childNodes;
+	
+			var e = document.createElement(node.nodeName);
+
+			var attribute;
+			for(var i=0 ; i<attributes.length ; i++) {
+				attribute = attributes[i];
+				_setAttribute(e, attribute.name, attribute.value);
+			}
+			
+			for(var i=0 ; i<childs.length ; i++)
+				e.appendChild(getCopyOfNode(childs[i]));
+			
+			return e;
+			break;
+		case TEXT_NODE:
+			return document.createTextNode(node.nodeValue);
+			break;
+	}
+}
+
+if (browser.isIE) {
+	_setAttribute = function(e, name, value) {
+		// workarround IE lack of dom implementation.
+		switch(name.toLowerCase()) {
+			case 'colspan' :
+				e.colSpan = value;
+				break;
+			case 'class' :
+				e.className = value;
+				break;
+			case 'style' :
+				var cssText = value;
+				loadCssText(e, value);
+				break;
+			default:
+				if (name.slice(0,2) == 'on') // event handler
+					e[name] = function(){eval(value);};
+				else
+					e.setAttribute(name, value);
+		}
+	};
+	var reCompoundPropName = /^\s*([^\-]+)\-([a-z])([a-z]+)\s*$/;
+	function _capitalizeCssPropName(s, g1, g2, g3) { // gN args match above regexp groups 
+		if(g2)
+			return g1 + g2.toUpperCase() + g3;
+		else
+			return s;
+	}
+
+	function loadCssText(e, cssText) {
+		var pairs = cssText.split(';');
+		var pair, name, value;
+		var style = e.style;
+		for (var i= 0; i < pairs.length; i++) {
+			pair = pairs[i].split(':');
+			if (pair.length != 2)
+				continue;
+			name = _capitalizeCssPropName(pair[0]);
+			value = pair[1];
+			style[name] = value;
+		}
+	}
+}
+else {
+	_setAttribute = function(e, name, value) {e.setAttribute(name, value);};
+}
+
+})();
diff --git a/skins/ajax_scripts/javascript_events_api.js.metadata b/skins/ajax_scripts/javascript_events_api.js.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/ajax_scripts/javascript_events_api.js.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/ajax_scripts/palette.js b/skins/ajax_scripts/palette.js
new file mode 100644
index 0000000..d82925a
--- /dev/null
+++ b/skins/ajax_scripts/palette.js
@@ -0,0 +1,55 @@
+// (c) Benoît PIN 2006
+// http://plinn.org
+// Licence GPL
+// $Id: palette.js 1315 2008-07-29 15:36:15Z pin $
+// $URL: http://svn.cri.ensmp.fr/svn/Plinn/branches/CMF-2.1/skins/ajax_scripts/palette.js $
+
+
+function InspectorPalette(baseUrl, toggleButton, contentNode, onExpand, onCollapse) {
+	var thisInspector = this;
+	this._preloadImages();
+	this.baseUrl = baseUrl;
+	this.toggleButton = toggleButton;
+	this.toggleButton.src = baseUrl + '/collapsedPalette.gif';
+	this.contentNode = contentNode;
+	this.expanded = false;
+	this.onExpand = onExpand ? onExpand : function(){thisInspector.contentNode.innerHTML='expanded';};
+	this.onCollapse = onCollapse ? onCollapse : function(){thisInspector.contentNode.innerHTML='collapsed';};
+	
+	toggleButton.onclick = function(evt) {
+		if (thisInspector.expanded)
+			thisInspector.collapse();
+		else
+			thisInspector.expand();
+		disableDefault(evt);
+		disablePropagation(evt);
+	};
+}
+
+InspectorPalette.prototype._preloadImages = function() {
+	var images = ['expandPalette.gif', 'collapsePalette.gif', 'expandedPalette.gif', 'collapsedPalette.gif' ], img;
+	for (var i=0 ; i<images.lenght ; i++) {
+		img = new Image();
+		img.src = this.baseUrl + '/' + images[i];
+	}
+}
+
+InspectorPalette.prototype.expand = function() {
+	var toggleButton = this.toggleButton;
+	if (toggleButton.blur) toggleButton.blur();
+	toggleButton.src = this.baseUrl + '/expandPalette.gif';
+	var staticButtonSrc = this.baseUrl + '/expandedPalette.gif';
+	window.setTimeout(function(){toggleButton.src = staticButtonSrc;}, 500);
+	this.onExpand(this);
+	this.expanded = true;
+}
+
+InspectorPalette.prototype.collapse = function() {
+	var toggleButton = this.toggleButton;
+	if (toggleButton.blur) toggleButton.blur();
+	toggleButton.src = this.baseUrl + '/collapsePalette.gif';
+	var staticButtonSrc = this.baseUrl + '/collapsedPalette.gif';
+	window.setTimeout(function(){toggleButton.src = staticButtonSrc;}, 500);
+	this.onCollapse(this);
+	this.expanded = false;
+}
\ No newline at end of file
diff --git a/skins/ajax_scripts/palette.js.metadata b/skins/ajax_scripts/palette.js.metadata
new file mode 100755
index 0000000..855fecc
--- /dev/null
+++ b/skins/ajax_scripts/palette.js.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/ajax_scripts/plinnAjaxConfig.js b/skins/ajax_scripts/plinnAjaxConfig.js
new file mode 100644
index 0000000..8e3b860
--- /dev/null
+++ b/skins/ajax_scripts/plinnAjaxConfig.js
@@ -0,0 +1,8 @@
+// (c) Benoît PIN 2006-2007
+// http://plinn.org
+// Licence GPL
+// $Id: plinnAjaxConfig.js 1315 2008-07-29 15:36:15Z pin $
+// $URL: http://svn.cri.ensmp.fr/svn/Plinn/branches/CMF-2.1/skins/ajax_scripts/plinnAjaxConfig.js $
+
+
+var PlinnAjaxConfig = Object()
\ No newline at end of file
diff --git a/skins/ajax_scripts/plinnAjaxConfig.js.metadata b/skins/ajax_scripts/plinnAjaxConfig.js.metadata
new file mode 100755
index 0000000..855fecc
--- /dev/null
+++ b/skins/ajax_scripts/plinnAjaxConfig.js.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/ajax_scripts/plinn_script_loader.js b/skins/ajax_scripts/plinn_script_loader.js
new file mode 100644
index 0000000..d97ed96
--- /dev/null
+++ b/skins/ajax_scripts/plinn_script_loader.js
@@ -0,0 +1,78 @@
+// (c) Benoît PIN 2006-2007
+// http://plinn.org
+// Licence GPL
+// $Id: plinn_script_loader.js 1315 2008-07-29 15:36:15Z pin $
+// $URL: http://svn.cri.ensmp.fr/svn/Plinn/branches/CMF-2.1/skins/ajax_scripts/plinn_script_loader.js $
+
+
+function ScriptRegistry() {
+	this.loadedScripts = new Object();
+	this.pendingScripts = new Array();
+	this.HEAD = document.getElementsByTagName('head')[0];
+	this.isLoading = false;
+}
+
+ScriptRegistry.prototype.loadScript = function(scriptOb) {
+	var scriptUrl;
+	if (typeof(scriptOb) == 'string')
+		scriptUrl = scriptOb;
+	else
+		scriptUrl = scriptOb.getAttribute('src');
+	
+	if (scriptUrl) {
+		if (!this.loadedScripts[scriptUrl])
+			this.pendingScripts.push(['url', scriptUrl]);
+	}
+	else {
+		this.pendingScripts.push(['code', scriptOb]);
+	}
+	if(!this.isLoading && this.pendingScripts.length)
+		this._loadNextScript();
+}
+
+ScriptRegistry.prototype._loadNextScript = function() {
+	var firstScript = this.pendingScripts[0];
+	
+	switch (firstScript[0]) {
+		case 'url':
+			var script = document.createElement( "script" );
+			script.type	= "text/javascript";
+			script.src = firstScript[1];
+			this.HEAD.appendChild(script);
+			this.loadedScripts[script.src] = true;
+			this.isLoading = true;
+			var thisRegistry = this;
+			if (browser.isIE)
+				script.onreadystatechange = function(){
+					if (script.readyState == 'complete' || script.readyState == 'loaded')
+						thisRegistry._removeScriptAfterLoad();
+				};
+			else
+				script.onload = function(){ thisRegistry._removeScriptAfterLoad(); };
+			break;
+		case 'code' :
+			try {
+				eval(firstScript[1].text);
+			}
+			catch(e) {
+				if (window.console) {
+					console.group('Embedded script error');
+					console.error(e);
+					console.info(firstScript[1]);
+					console.groupEnd();
+				}
+			}
+			this._removeScriptAfterLoad();
+			break;
+	};
+}
+
+ScriptRegistry.prototype._removeScriptAfterLoad = function() {
+	this.pendingScripts.shift();
+	if(this.pendingScripts.length)
+		this._loadNextScript()
+	else
+		this.isLoading = false;
+}
+
+globalScriptRegistry = new ScriptRegistry();
\ No newline at end of file
diff --git a/skins/ajax_scripts/plinn_script_loader.js.metadata b/skins/ajax_scripts/plinn_script_loader.js.metadata
new file mode 100755
index 0000000..855fecc
--- /dev/null
+++ b/skins/ajax_scripts/plinn_script_loader.js.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/ajax_scripts/root_handlers.js b/skins/ajax_scripts/root_handlers.js
new file mode 100644
index 0000000..47bf61d
--- /dev/null
+++ b/skins/ajax_scripts/root_handlers.js
@@ -0,0 +1,169 @@
+// © Benoît PIN 2006-2009
+// http://plinn.org
+// Licence GPL
+// $Id: root_handlers.js 1467 2009-02-10 13:25:38Z pin $
+// $URL: http://svn.cri.ensmp.fr/svn/Plinn/branches/CMF-2.1/skins/ajax_scripts/root_handlers.js $
+
+/* Ajax for everything : if an click event has not been intercepted before */
+
+var AjaxLinkHandler;
+
+(function(){
+
+var reProtocol = /^\s*[a-z]+:/;
+
+AjaxLinkHandler = function(locationPollInterval) {
+	var thisHandler = this;
+	this.previousHash = '#' + location.href;
+	location.hash = location.href;
+	setInterval(function(){thisHandler.checkLocation();}, locationPollInterval)
+	addListener(document.body, 'click', function(evt){thisHandler.handleClick(evt);});
+	if (browser.isIE55 || browser.isIE6up) {
+		var ie_historyFrm = document.createElement('iframe');
+		ie_historyFrm.setAttribute('src', portal_url() + '/scrape_ie_history');
+		with (ie_historyFrm.style) {
+			border="0";
+			width="1px";
+			height="1px";
+			position="absolute";
+			bottom="0";
+			right="0";
+			visibility="visible";
+		}
+		document.body.appendChild(ie_historyFrm);
+		this.historyFrame = ie_historyFrm;
+	}
+};
+
+AjaxLinkHandler.prototype.checkLocation = function() {
+	if ((this.previousHash != location.hash) && location.hash) {
+		var rawUrl = unescape(location.hash.slice(1));
+		
+		var urlHash = rawUrl.split('#');
+		var url = urlHash[0];
+		var hash = urlHash[1];
+		
+		var ajaxParams='ajax=1&_browserObjectUrl=' + escape(absolute_url());
+		var urlQueryStart = url.indexOf('?');
+		if (urlQueryStart != -1)
+			url += '&' + ajaxParams;
+		else
+			url += '?' + ajaxParams;
+
+		try {
+			var fi = new FragmentImporter(url);
+			if (hash) {
+				var thisHandler = this;
+				fi.onAfterPopulate = function(){thisHandler.loadHash('#' + hash);};
+			}
+			fi.load(rawUrl);
+		}
+		catch (e) {
+			window.location.href = rawUrl;
+		}
+	}
+	this.previousHash = location.hash;
+};
+
+AjaxLinkHandler.prototype.handleClick = function(evt){
+	var target = getTargetedObject(evt);
+	while (target.nodeName != 'A') {
+		target = target.parentNode;
+		if (target == document.body)
+			return;
+	}
+	target.blur();
+	// prevent click glitches from IE :((
+	if (browser.isIE55 || browser.isIE6up) {
+		if (_disableRootClickHandler)
+			return;
+		else {
+			_disableRootClickHandler = true;
+			setTimeout("_disableRootClickHandler=false", 100);
+		}
+	}
+	
+	if (target.target)
+		return;
+		
+	var url;
+	var m = reProtocol.exec(target.getAttribute('href', 2));
+	if (m) {
+		var protocol = m[0];
+		if (protocol == location.protocol)
+			url = target.href;
+		else
+			return;
+	}
+	else
+		url = absolute_url() + '/' + target.getAttribute('href', 2);
+	
+	if (!url) return;
+	
+	if (browser.isGecko)
+		url = encodeURIComponent(url);
+	var query = target.search;
+	if ((query && query.search("noajax=1") != -1) || target.name == 'noajax')
+		return;
+	
+	disableDefault(evt);
+	this.loadUrl(url);
+};
+
+if (browser.isIE55 || browser.isIE6up) {
+	AjaxLinkHandler.prototype.loadUrl = function(url) {
+		if (location.hash.slice(1) == url)
+			url += '#'
+		this.historyFrame.contentWindow.location.search = '?url=' + escape(url);
+		location.hash = escape(url);
+	};
+}
+else {
+	AjaxLinkHandler.prototype.loadUrl = function(url) {
+		if (location.hash.slice(1) == url)
+			url += '#'
+		location.hash = escape(url);
+	};	
+}
+
+AjaxLinkHandler.prototype.loadHash = function(hash) {
+	this.previousHash = hash;
+	location.hash = hash;
+};
+
+AjaxLinkHandler.prototype.ie_loadHistory = function(url) {
+	location.hash = escape(url);
+};
+
+function ajaxSubmitFormHandler(evt) {
+	var target = getTargetedObject(evt);
+	if (target.nodeName == 'INPUT' && (target.type == 'submit' || target.type == 'image')) {
+		var form = target;
+		while (form != document) {
+			form = form.parentNode;
+			if (form.nodeName == 'FORM') {
+				var fm = new FormManager(form, document.getElementById("mainCell"));
+				fm.submitButton = target;
+				//disableDefault(evt);
+				break;
+			}
+		}
+	}
+	
+}
+
+function _addRootHandlers() {
+	if ((AJAX_CONFIG & 1) == 1) {
+		window.linkHandler = new AjaxLinkHandler(200);
+	    if (browser.isIE55 || browser.isIE6up) {
+	    	_disableRootClickHandler = false;
+	    }
+	}
+	if ((AJAX_CONFIG & 2) == 2) {
+		addListener(document, 'click', ajaxSubmitFormHandler);
+	}
+}
+
+registerStartupFunction(_addRootHandlers);
+
+})();
\ No newline at end of file
diff --git a/skins/ajax_scripts/sarissa.js b/skins/ajax_scripts/sarissa.js
new file mode 100644
index 0000000..ccac8ed
--- /dev/null
+++ b/skins/ajax_scripts/sarissa.js
@@ -0,0 +1,956 @@
+/*
+ * ====================================================================
+ * About Sarissa: http://dev.abiss.gr/sarissa
+ * ====================================================================
+ * Sarissa is an ECMAScript library acting as a cross-browser wrapper for native XML APIs.
+ * The library supports Gecko based browsers like Mozilla and Firefox,
+ * Internet Explorer (5.5+ with MSXML3.0+), Konqueror, Safari and Opera
+ * @author: Copyright 2004-2007 Emmanouil Batsis, mailto: mbatsis at users full stop sourceforge full stop net
+ * ====================================================================
+ * Licence
+ * ====================================================================
+ * Sarissa is free software distributed under the GNU GPL version 2 (see <a href="gpl.txt">gpl.txt</a>) or higher, 
+ * GNU LGPL version 2.1 (see <a href="lgpl.txt">lgpl.txt</a>) or higher and Apache Software License 2.0 or higher 
+ * (see <a href="asl.txt">asl.txt</a>). This means you can choose one of the three and use that if you like. If 
+ * you make modifications under the ASL, i would appreciate it if you submitted those.
+ * In case your copy of Sarissa does not include the license texts, you may find
+ * them online in various formats at <a href="http://www.gnu.org">http://www.gnu.org</a> and 
+ * <a href="http://www.apache.org">http://www.apache.org</a>.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY 
+ * KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE 
+ * WARRANTIES OF MERCHANTABILITY,FITNESS FOR A PARTICULAR PURPOSE 
+ * AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 
+ * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR 
+ * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 
+ * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+ */
+/**
+ * <p>Sarissa is a utility class. Provides "static" methods for DOMDocument, 
+ * DOM Node serialization to XML strings and other utility goodies.</p>
+ * @constructor
+ * @static
+ */
+function Sarissa(){}
+Sarissa.VERSION = "0.9.9.3";
+Sarissa.PARSED_OK = "Document contains no parsing errors";
+Sarissa.PARSED_EMPTY = "Document is empty";
+Sarissa.PARSED_UNKNOWN_ERROR = "Not well-formed or other error";
+Sarissa.IS_ENABLED_TRANSFORM_NODE = false;
+Sarissa.REMOTE_CALL_FLAG = "gr.abiss.sarissa.REMOTE_CALL_FLAG";
+/** @private */
+Sarissa._sarissa_iNsCounter = 0;
+/** @private */
+Sarissa._SARISSA_IEPREFIX4XSLPARAM = "";
+/** @private */
+Sarissa._SARISSA_HAS_DOM_IMPLEMENTATION = document.implementation && true;
+/** @private */
+Sarissa._SARISSA_HAS_DOM_CREATE_DOCUMENT = Sarissa._SARISSA_HAS_DOM_IMPLEMENTATION && document.implementation.createDocument;
+/** @private */
+Sarissa._SARISSA_HAS_DOM_FEATURE = Sarissa._SARISSA_HAS_DOM_IMPLEMENTATION && document.implementation.hasFeature;
+/** @private */
+Sarissa._SARISSA_IS_MOZ = Sarissa._SARISSA_HAS_DOM_CREATE_DOCUMENT && Sarissa._SARISSA_HAS_DOM_FEATURE;
+/** @private */
+Sarissa._SARISSA_IS_SAFARI = navigator.userAgent.toLowerCase().indexOf("safari") != -1 || navigator.userAgent.toLowerCase().indexOf("konqueror") != -1;
+/** @private */
+Sarissa._SARISSA_IS_SAFARI_OLD = Sarissa._SARISSA_IS_SAFARI && (parseInt((navigator.userAgent.match(/AppleWebKit\/(\d+)/)||{})[1], 10) < 420);
+/** @private */
+Sarissa._SARISSA_IS_IE = document.all && window.ActiveXObject && navigator.userAgent.toLowerCase().indexOf("msie") > -1  && navigator.userAgent.toLowerCase().indexOf("opera") == -1;
+/** @private */
+Sarissa._SARISSA_IS_OPERA = navigator.userAgent.toLowerCase().indexOf("opera") != -1;
+if(!window.Node || !Node.ELEMENT_NODE){
+    Node = {ELEMENT_NODE: 1, ATTRIBUTE_NODE: 2, TEXT_NODE: 3, CDATA_SECTION_NODE: 4, ENTITY_REFERENCE_NODE: 5,  ENTITY_NODE: 6, PROCESSING_INSTRUCTION_NODE: 7, COMMENT_NODE: 8, DOCUMENT_NODE: 9, DOCUMENT_TYPE_NODE: 10, DOCUMENT_FRAGMENT_NODE: 11, NOTATION_NODE: 12};
+}
+
+//This breaks for(x in o) loops in the old Safari
+if(Sarissa._SARISSA_IS_SAFARI_OLD){
+	HTMLHtmlElement = document.createElement("html").constructor;
+	Node = HTMLElement = {};
+	HTMLElement.prototype = HTMLHtmlElement.__proto__.__proto__;
+	HTMLDocument = Document = document.constructor;
+	var x = new DOMParser();
+	XMLDocument = x.constructor;
+	Element = x.parseFromString("<Single />", "text/xml").documentElement.constructor;
+	x = null;
+}
+if(typeof XMLDocument == "undefined" && typeof Document !="undefined"){ XMLDocument = Document; } 
+
+// IE initialization
+if(Sarissa._SARISSA_IS_IE){
+    // for XSLT parameter names, prefix needed by IE
+    Sarissa._SARISSA_IEPREFIX4XSLPARAM = "xsl:";
+    // used to store the most recent ProgID available out of the above
+    var _SARISSA_DOM_PROGID = "";
+    var _SARISSA_XMLHTTP_PROGID = "";
+    var _SARISSA_DOM_XMLWRITER = "";
+    /**
+     * Called when the sarissa.js file is parsed, to pick most recent
+     * ProgIDs for IE, then gets destroyed.
+     * @memberOf Sarissa
+     * @private
+     * @param idList an array of MSXML PROGIDs from which the most recent will be picked for a given object
+     * @param enabledList an array of arrays where each array has two items; the index of the PROGID for which a certain feature is enabled
+     */
+    Sarissa.pickRecentProgID = function (idList){
+        // found progID flag
+        var bFound = false, e;
+        var o2Store;
+        for(var i=0; i < idList.length && !bFound; i++){
+            try{
+                var oDoc = new ActiveXObject(idList[i]);
+                o2Store = idList[i];
+                bFound = true;
+            }catch (objException){
+                // trap; try next progID
+                e = objException;
+            }
+        }
+        if (!bFound) {
+            throw "Could not retrieve a valid progID of Class: " + idList[idList.length-1]+". (original exception: "+e+")";
+        }
+        idList = null;
+        return o2Store;
+    };
+    // pick best available MSXML progIDs
+    _SARISSA_DOM_PROGID = null;
+    _SARISSA_THREADEDDOM_PROGID = null;
+    _SARISSA_XSLTEMPLATE_PROGID = null;
+    _SARISSA_XMLHTTP_PROGID = null;
+    // commenting the condition out; we need to redefine XMLHttpRequest 
+    // anyway as IE7 hardcodes it to MSXML3.0 causing version problems 
+    // between different activex controls 
+    //if(!window.XMLHttpRequest){
+    /**
+     * Emulate XMLHttpRequest
+     * @constructor
+     */
+    XMLHttpRequest = function() {
+        if(!_SARISSA_XMLHTTP_PROGID){
+            _SARISSA_XMLHTTP_PROGID = Sarissa.pickRecentProgID(["Msxml2.XMLHTTP.6.0", "MSXML2.XMLHTTP.3.0", "MSXML2.XMLHTTP", "Microsoft.XMLHTTP"]);
+        }
+        return new ActiveXObject(_SARISSA_XMLHTTP_PROGID);
+    };
+    //}
+    // we dont need this anymore
+    //============================================
+    // Factory methods (IE)
+    //============================================
+    // see non-IE version
+    Sarissa.getDomDocument = function(sUri, sName){
+        if(!_SARISSA_DOM_PROGID){
+            _SARISSA_DOM_PROGID = Sarissa.pickRecentProgID(["Msxml2.DOMDocument.6.0", "Msxml2.DOMDocument.3.0", "MSXML2.DOMDocument", "MSXML.DOMDocument", "Microsoft.XMLDOM"]);
+        }
+        var oDoc = new ActiveXObject(_SARISSA_DOM_PROGID);
+        // if a root tag name was provided, we need to load it in the DOM object
+        if (sName){
+            // create an artifical namespace prefix 
+            // or reuse existing prefix if applicable
+            var prefix = "";
+            if(sUri){
+                if(sName.indexOf(":") > 1){
+                    prefix = sName.substring(0, sName.indexOf(":"));
+                    sName = sName.substring(sName.indexOf(":")+1); 
+                }else{
+                    prefix = "a" + (Sarissa._sarissa_iNsCounter++);
+                }
+            }
+            // use namespaces if a namespace URI exists
+            if(sUri){
+                oDoc.loadXML('<' + prefix+':'+sName + " xmlns:" + prefix + "=\"" + sUri + "\"" + " />");
+            } else {
+                oDoc.loadXML('<' + sName + " />");
+            }
+        }
+        return oDoc;
+    };
+    // see non-IE version   
+    Sarissa.getParseErrorText = function (oDoc) {
+        var parseErrorText = Sarissa.PARSED_OK;
+        if(oDoc && oDoc.parseError && oDoc.parseError.errorCode && oDoc.parseError.errorCode != 0){
+            parseErrorText = "XML Parsing Error: " + oDoc.parseError.reason + 
+                "\nLocation: " + oDoc.parseError.url + 
+                "\nLine Number " + oDoc.parseError.line + ", Column " + 
+                oDoc.parseError.linepos + 
+                ":\n" + oDoc.parseError.srcText +
+                "\n";
+            for(var i = 0;  i < oDoc.parseError.linepos;i++){
+                parseErrorText += "-";
+            }
+            parseErrorText +=  "^\n";
+        }
+        else if(oDoc.documentElement === null){
+            parseErrorText = Sarissa.PARSED_EMPTY;
+        }
+        return parseErrorText;
+    };
+    // see non-IE version
+    Sarissa.setXpathNamespaces = function(oDoc, sNsSet) {
+        oDoc.setProperty("SelectionLanguage", "XPath");
+        oDoc.setProperty("SelectionNamespaces", sNsSet);
+    };
+    /**
+     * A class that reuses the same XSLT stylesheet for multiple transforms.
+     * @constructor
+     */
+    XSLTProcessor = function(){
+        if(!_SARISSA_XSLTEMPLATE_PROGID){
+            _SARISSA_XSLTEMPLATE_PROGID = Sarissa.pickRecentProgID(["Msxml2.XSLTemplate.6.0", "MSXML2.XSLTemplate.3.0"]);
+        }
+        this.template = new ActiveXObject(_SARISSA_XSLTEMPLATE_PROGID);
+        this.processor = null;
+    };
+    /**
+     * Imports the given XSLT DOM and compiles it to a reusable transform
+     * <b>Note:</b> If the stylesheet was loaded from a URL and contains xsl:import or xsl:include elements,it will be reloaded to resolve those
+     * @argument xslDoc The XSLT DOMDocument to import
+     */
+    XSLTProcessor.prototype.importStylesheet = function(xslDoc){
+        if(!_SARISSA_THREADEDDOM_PROGID){
+            _SARISSA_THREADEDDOM_PROGID = Sarissa.pickRecentProgID(["MSXML2.FreeThreadedDOMDocument.6.0", "MSXML2.FreeThreadedDOMDocument.3.0"]);
+        }
+        xslDoc.setProperty("SelectionLanguage", "XPath");
+        xslDoc.setProperty("SelectionNamespaces", "xmlns:xsl='http://www.w3.org/1999/XSL/Transform'");
+        // convert stylesheet to free threaded
+        var converted = new ActiveXObject(_SARISSA_THREADEDDOM_PROGID);
+        // make included/imported stylesheets work if exist and xsl was originally loaded from url
+        try{
+            converted.resolveExternals = true; 
+            converted.setProperty("AllowDocumentFunction", true); 
+        }
+        catch(e){
+            // Ignore. "AllowDocumentFunction" is only supported in MSXML 3.0 SP4 and later.
+        } 
+        if(xslDoc.url && xslDoc.selectSingleNode("//xsl:*[local-name() = 'import' or local-name() = 'include']") != null){
+            converted.async = false;
+            converted.load(xslDoc.url);
+        } 
+        else {
+            converted.loadXML(xslDoc.xml);
+        }
+        converted.setProperty("SelectionNamespaces", "xmlns:xsl='http://www.w3.org/1999/XSL/Transform'");
+        var output = converted.selectSingleNode("//xsl:output");
+        //this.outputMethod = output ? output.getAttribute("method") : "html";
+        if(output) {
+            this.outputMethod = output.getAttribute("method");
+        } 
+        else {
+            delete this.outputMethod;
+        } 
+        this.template.stylesheet = converted;
+        this.processor = this.template.createProcessor();
+        // for getParameter and clearParameters
+        this.paramsSet = [];
+    };
+
+    /**
+     * Transform the given XML DOM and return the transformation result as a new DOM document
+     * @argument sourceDoc The XML DOMDocument to transform
+     * @return The transformation result as a DOM Document
+     */
+    XSLTProcessor.prototype.transformToDocument = function(sourceDoc){
+        // fix for bug 1549749
+        var outDoc;
+        if(_SARISSA_THREADEDDOM_PROGID){
+            this.processor.input=sourceDoc;
+            outDoc=new ActiveXObject(_SARISSA_DOM_PROGID);
+            this.processor.output=outDoc;
+            this.processor.transform();
+            return outDoc;
+        }
+        else{
+            if(!_SARISSA_DOM_XMLWRITER){
+                _SARISSA_DOM_XMLWRITER = Sarissa.pickRecentProgID(["Msxml2.MXXMLWriter.6.0", "Msxml2.MXXMLWriter.3.0", "MSXML2.MXXMLWriter", "MSXML.MXXMLWriter", "Microsoft.XMLDOM"]);
+            }
+            this.processor.input = sourceDoc;
+            outDoc = new ActiveXObject(_SARISSA_DOM_XMLWRITER);
+            this.processor.output = outDoc; 
+            this.processor.transform();
+            var oDoc = new ActiveXObject(_SARISSA_DOM_PROGID);
+            oDoc.loadXML(outDoc.output+"");
+            return oDoc;
+        }
+    };
+    
+    /**
+     * Transform the given XML DOM and return the transformation result as a new DOM fragment.
+     * <b>Note</b>: The xsl:output method must match the nature of the owner document (XML/HTML).
+     * @argument sourceDoc The XML DOMDocument to transform
+     * @argument ownerDoc The owner of the result fragment
+     * @return The transformation result as a DOM Document
+     */
+    XSLTProcessor.prototype.transformToFragment = function (sourceDoc, ownerDoc) {
+        this.processor.input = sourceDoc;
+        this.processor.transform();
+        var s = this.processor.output;
+        var f = ownerDoc.createDocumentFragment();
+        var container;
+        if (this.outputMethod == 'text') {
+            f.appendChild(ownerDoc.createTextNode(s));
+        } else if (ownerDoc.body && ownerDoc.body.innerHTML) {
+            container = ownerDoc.createElement('div');
+            container.innerHTML = s;
+            while (container.hasChildNodes()) {
+                f.appendChild(container.firstChild);
+            }
+        }
+        else {
+            var oDoc = new ActiveXObject(_SARISSA_DOM_PROGID);
+            if (s.substring(0, 5) == '<?xml') {
+                s = s.substring(s.indexOf('?>') + 2);
+            }
+            var xml = ''.concat('<my>', s, '</my>');
+            oDoc.loadXML(xml);
+            container = oDoc.documentElement;
+            while (container.hasChildNodes()) {
+                f.appendChild(container.firstChild);
+            }
+        }
+        return f;
+    };
+    
+    /**
+     * Set global XSLT parameter of the imported stylesheet
+     * @argument nsURI The parameter namespace URI
+     * @argument name The parameter base name
+     * @argument value The new parameter value
+     */
+     XSLTProcessor.prototype.setParameter = function(nsURI, name, value){
+         // make value a zero length string if null to allow clearing
+         value = value ? value : "";
+         // nsURI is optional but cannot be null
+         if(nsURI){
+             this.processor.addParameter(name, value, nsURI);
+         }else{
+             this.processor.addParameter(name, value);
+         }
+         // update updated params for getParameter
+         nsURI = "" + (nsURI || "");
+         if(!this.paramsSet[nsURI]){
+             this.paramsSet[nsURI] = [];
+         }
+         this.paramsSet[nsURI][name] = value;
+     };
+    /**
+     * Gets a parameter if previously set by setParameter. Returns null
+     * otherwise
+     * @argument name The parameter base name
+     * @argument value The new parameter value
+     * @return The parameter value if reviously set by setParameter, null otherwise
+     */
+    XSLTProcessor.prototype.getParameter = function(nsURI, name){
+        nsURI = "" + (nsURI || "");
+        if(this.paramsSet[nsURI] && this.paramsSet[nsURI][name]){
+            return this.paramsSet[nsURI][name];
+        }else{
+            return null;
+        }
+    };
+    
+    /**
+     * Clear parameters (set them to default values as defined in the stylesheet itself)
+     */
+    XSLTProcessor.prototype.clearParameters = function(){
+        for(var nsURI in this.paramsSet){
+            for(var name in this.paramsSet[nsURI]){
+                if(nsURI!=""){
+                    this.processor.addParameter(name, "", nsURI);
+                }else{
+                    this.processor.addParameter(name, "");
+                }
+            }
+        }
+        this.paramsSet = [];
+    };
+}else{ /* end IE initialization, try to deal with real browsers now ;-) */
+    if(Sarissa._SARISSA_HAS_DOM_CREATE_DOCUMENT){
+        /**
+         * <p>Ensures the document was loaded correctly, otherwise sets the
+         * parseError to -1 to indicate something went wrong. Internal use</p>
+         * @private
+         */
+        Sarissa.__handleLoad__ = function(oDoc){
+            Sarissa.__setReadyState__(oDoc, 4);
+        };
+        /**
+        * <p>Attached by an event handler to the load event. Internal use.</p>
+        * @private
+        */
+        _sarissa_XMLDocument_onload = function(){
+            Sarissa.__handleLoad__(this);
+        };
+        /**
+         * <p>Sets the readyState property of the given DOM Document object.
+         * Internal use.</p>
+         * @memberOf Sarissa
+         * @private
+         * @argument oDoc the DOM Document object to fire the
+         *          readystatechange event
+         * @argument iReadyState the number to change the readystate property to
+         */
+        Sarissa.__setReadyState__ = function(oDoc, iReadyState){
+            oDoc.readyState = iReadyState;
+            oDoc.readystate = iReadyState;
+            if (oDoc.onreadystatechange != null && typeof oDoc.onreadystatechange == "function") {
+                oDoc.onreadystatechange();
+            }
+        };
+        
+        Sarissa.getDomDocument = function(sUri, sName){
+            var oDoc = document.implementation.createDocument(sUri?sUri:null, sName?sName:null, null);
+            if(!oDoc.onreadystatechange){
+            
+                /**
+                * <p>Emulate IE's onreadystatechange attribute</p>
+                */
+                oDoc.onreadystatechange = null;
+            }
+            if(!oDoc.readyState){
+                /**
+                * <p>Emulates IE's readyState property, which always gives an integer from 0 to 4:</p>
+                * <ul><li>1 == LOADING,</li>
+                * <li>2 == LOADED,</li>
+                * <li>3 == INTERACTIVE,</li>
+                * <li>4 == COMPLETED</li></ul>
+                */
+                oDoc.readyState = 0;
+            }
+            oDoc.addEventListener("load", _sarissa_XMLDocument_onload, false);
+            return oDoc;
+        };
+        if(window.XMLDocument){
+            // do nothing
+        }// TODO: check if the new document has content before trying to copynodes, check  for error handling in DOM 3 LS
+        else if(Sarissa._SARISSA_HAS_DOM_FEATURE && window.Document && !Document.prototype.load && document.implementation.hasFeature('LS', '3.0')){
+    		//Opera 9 may get the XPath branch which gives creates XMLDocument, therefore it doesn't reach here which is good
+            /**
+            * <p>Factory method to obtain a new DOM Document object</p>
+            * @memberOf Sarissa
+            * @argument sUri the namespace of the root node (if any)
+            * @argument sUri the local name of the root node (if any)
+            * @returns a new DOM Document
+            */
+            Sarissa.getDomDocument = function(sUri, sName){
+                var oDoc = document.implementation.createDocument(sUri?sUri:null, sName?sName:null, null);
+                return oDoc;
+            };
+        }
+        else {
+            Sarissa.getDomDocument = function(sUri, sName){
+                var oDoc = document.implementation.createDocument(sUri?sUri:null, sName?sName:null, null);
+                // looks like safari does not create the root element for some unknown reason
+                if(oDoc && (sUri || sName) && !oDoc.documentElement){
+                    oDoc.appendChild(oDoc.createElementNS(sUri, sName));
+                }
+                return oDoc;
+            };
+        }
+    }//if(Sarissa._SARISSA_HAS_DOM_CREATE_DOCUMENT)
+}
+//==========================================
+// Common stuff
+//==========================================
+if(!window.DOMParser){
+    if(Sarissa._SARISSA_IS_SAFARI){
+        /*
+         * DOMParser is a utility class, used to construct DOMDocuments from XML strings
+         * @constructor
+         */
+        DOMParser = function() { };
+        /** 
+        * Construct a new DOM Document from the given XMLstring
+        * @param sXml the given XML string
+        * @param contentType the content type of the document the given string represents (one of text/xml, application/xml, application/xhtml+xml). 
+        * @return a new DOM Document from the given XML string
+        */
+        DOMParser.prototype.parseFromString = function(sXml, contentType){
+            var xmlhttp = new XMLHttpRequest();
+            xmlhttp.open("GET", "data:text/xml;charset=utf-8," + encodeURIComponent(sXml), false);
+            xmlhttp.send(null);
+            return xmlhttp.responseXML;
+        };
+    }else if(Sarissa.getDomDocument && Sarissa.getDomDocument() && Sarissa.getDomDocument(null, "bar").xml){
+        DOMParser = function() { };
+        DOMParser.prototype.parseFromString = function(sXml, contentType){
+            var doc = Sarissa.getDomDocument();
+            doc.loadXML(sXml);
+            return doc;
+        };
+    }
+}
+
+if((typeof(document.importNode) == "undefined") && Sarissa._SARISSA_IS_IE){
+    try{
+        /**
+        * Implementation of importNode for the context window document in IE.
+        * If <code>oNode</code> is a TextNode, <code>bChildren</code> is ignored.
+        * @param oNode the Node to import
+        * @param bChildren whether to include the children of oNode
+        * @returns the imported node for further use
+        */
+        document.importNode = function(oNode, bChildren){
+            var tmp;
+            if (oNode.nodeName=='#text') {
+                return document.createTextNode(oNode.data);
+            }
+            else {
+                if(oNode.nodeName == "tbody" || oNode.nodeName == "tr"){
+                    tmp = document.createElement("table");
+                }
+                else if(oNode.nodeName == "td"){
+                    tmp = document.createElement("tr");
+                }
+                else if(oNode.nodeName == "option"){
+                    tmp = document.createElement("select");
+                }
+                else{
+                    tmp = document.createElement("div");
+                }
+                if(bChildren){
+                    tmp.innerHTML = oNode.xml ? oNode.xml : oNode.outerHTML;
+                }else{
+                    tmp.innerHTML = oNode.xml ? oNode.cloneNode(false).xml : oNode.cloneNode(false).outerHTML;
+                }
+                return tmp.getElementsByTagName("*")[0];
+            }
+        };
+    }catch(e){ }
+}
+if(!Sarissa.getParseErrorText){
+    /**
+     * <p>Returns a human readable description of the parsing error. Usefull
+     * for debugging. Tip: append the returned error string in a &lt;pre&gt;
+     * element if you want to render it.</p>
+     * <p>Many thanks to Christian Stocker for the initial patch.</p>
+     * @memberOf Sarissa
+     * @argument oDoc The target DOM document
+     * @returns The parsing error description of the target Document in
+     *          human readable form (preformated text)
+     */
+    Sarissa.getParseErrorText = function (oDoc){
+        var parseErrorText = Sarissa.PARSED_OK;
+        if(!oDoc.documentElement){
+            parseErrorText = Sarissa.PARSED_EMPTY;
+        } else if(oDoc.documentElement.tagName == "parsererror"){
+            parseErrorText = oDoc.documentElement.firstChild.data;
+            parseErrorText += "\n" +  oDoc.documentElement.firstChild.nextSibling.firstChild.data;
+        } else if(oDoc.getElementsByTagName("parsererror").length > 0){
+            var parsererror = oDoc.getElementsByTagName("parsererror")[0];
+            parseErrorText = Sarissa.getText(parsererror, true)+"\n";
+        } else if(oDoc.parseError && oDoc.parseError.errorCode != 0){
+            parseErrorText = Sarissa.PARSED_UNKNOWN_ERROR;
+        }
+        return parseErrorText;
+    };
+}
+/**
+ * Get a string with the concatenated values of all string nodes under the given node
+ * @memberOf Sarissa
+ * @argument oNode the given DOM node
+ * @argument deep whether to recursively scan the children nodes of the given node for text as well. Default is <code>false</code> 
+ */
+Sarissa.getText = function(oNode, deep){
+    var s = "";
+    var nodes = oNode.childNodes;
+    for(var i=0; i < nodes.length; i++){
+        var node = nodes[i];
+        var nodeType = node.nodeType;
+        if(nodeType == Node.TEXT_NODE || nodeType == Node.CDATA_SECTION_NODE){
+            s += node.data;
+        } else if(deep === true && (nodeType == Node.ELEMENT_NODE || nodeType == Node.DOCUMENT_NODE || nodeType == Node.DOCUMENT_FRAGMENT_NODE)){
+            s += Sarissa.getText(node, true);
+        }
+    }
+    return s;
+};
+if(!window.XMLSerializer && Sarissa.getDomDocument && Sarissa.getDomDocument("","foo", null).xml){
+    /**
+     * Utility class to serialize DOM Node objects to XML strings
+     * @constructor
+     */
+    XMLSerializer = function(){};
+    /**
+     * Serialize the given DOM Node to an XML string
+     * @param oNode the DOM Node to serialize
+     */
+    XMLSerializer.prototype.serializeToString = function(oNode) {
+        return oNode.xml;
+    };
+}
+
+/**
+ * Strips tags from the given markup string. If the given string is 
+ * <code>undefined</code>, <code>null</code> or empty, it is returned as is. 
+ * @memberOf Sarissa
+ */
+Sarissa.stripTags = function (s) {
+    return s?s.replace(/<[^>]+>/g,""):s;
+};
+/**
+ * <p>Deletes all child nodes of the given node</p>
+ * @memberOf Sarissa
+ * @argument oNode the Node to empty
+ */
+Sarissa.clearChildNodes = function(oNode) {
+    // need to check for firstChild due to opera 8 bug with hasChildNodes
+    while(oNode.firstChild) {
+        oNode.removeChild(oNode.firstChild);
+    }
+};
+/**
+ * <p> Copies the childNodes of nodeFrom to nodeTo</p>
+ * <p> <b>Note:</b> The second object's original content is deleted before 
+ * the copy operation, unless you supply a true third parameter</p>
+ * @memberOf Sarissa
+ * @argument nodeFrom the Node to copy the childNodes from
+ * @argument nodeTo the Node to copy the childNodes to
+ * @argument bPreserveExisting whether to preserve the original content of nodeTo, default is false
+ */
+Sarissa.copyChildNodes = function(nodeFrom, nodeTo, bPreserveExisting) {
+    if(Sarissa._SARISSA_IS_SAFARI && nodeTo.nodeType == Node.DOCUMENT_NODE){ // SAFARI_OLD ??
+    	nodeTo = nodeTo.documentElement; //Apparently there's a bug in safari where you can't appendChild to a document node
+    }
+    
+    if((!nodeFrom) || (!nodeTo)){
+        throw "Both source and destination nodes must be provided";
+    }
+    if(!bPreserveExisting){
+        Sarissa.clearChildNodes(nodeTo);
+    }
+    var ownerDoc = nodeTo.nodeType == Node.DOCUMENT_NODE ? nodeTo : nodeTo.ownerDocument;
+    var nodes = nodeFrom.childNodes;
+    var i;
+    if(typeof(ownerDoc.importNode) != "undefined")  {
+        for(i=0;i < nodes.length;i++) {
+            nodeTo.appendChild(ownerDoc.importNode(nodes[i], true));
+        }
+    } else {
+        for(i=0;i < nodes.length;i++) {
+            nodeTo.appendChild(nodes[i].cloneNode(true));
+        }
+    }
+};
+
+/**
+ * <p> Moves the childNodes of nodeFrom to nodeTo</p>
+ * <p> <b>Note:</b> The second object's original content is deleted before 
+ * the move operation, unless you supply a true third parameter</p>
+ * @memberOf Sarissa
+ * @argument nodeFrom the Node to copy the childNodes from
+ * @argument nodeTo the Node to copy the childNodes to
+ * @argument bPreserveExisting whether to preserve the original content of nodeTo, default is
+ */ 
+Sarissa.moveChildNodes = function(nodeFrom, nodeTo, bPreserveExisting) {
+    if((!nodeFrom) || (!nodeTo)){
+        throw "Both source and destination nodes must be provided";
+    }
+    if(!bPreserveExisting){
+        Sarissa.clearChildNodes(nodeTo);
+    }
+    var nodes = nodeFrom.childNodes;
+    // if within the same doc, just move, else copy and delete
+    if(nodeFrom.ownerDocument == nodeTo.ownerDocument){
+        while(nodeFrom.firstChild){
+            nodeTo.appendChild(nodeFrom.firstChild);
+        }
+    } else {
+        var ownerDoc = nodeTo.nodeType == Node.DOCUMENT_NODE ? nodeTo : nodeTo.ownerDocument;
+        var i;
+        if(typeof(ownerDoc.importNode) != "undefined") {
+           for(i=0;i < nodes.length;i++) {
+               nodeTo.appendChild(ownerDoc.importNode(nodes[i], true));
+           }
+        }else{
+           for(i=0;i < nodes.length;i++) {
+               nodeTo.appendChild(nodes[i].cloneNode(true));
+           }
+        }
+        Sarissa.clearChildNodes(nodeFrom);
+    }
+};
+
+/** 
+ * <p>Serialize any <strong>non</strong> DOM object to an XML string. All properties are serialized using the property name
+ * as the XML element name. Array elements are rendered as <code>array-item</code> elements, 
+ * using their index/key as the value of the <code>key</code> attribute.</p>
+ * @memberOf Sarissa
+ * @argument anyObject the object to serialize
+ * @argument objectName a name for that object
+ * @return the XML serialization of the given object as a string
+ */
+Sarissa.xmlize = function(anyObject, objectName, indentSpace){
+    indentSpace = indentSpace?indentSpace:'';
+    var s = indentSpace  + '<' + objectName + '>';
+    var isLeaf = false;
+    if(!(anyObject instanceof Object) || anyObject instanceof Number || anyObject instanceof String || anyObject instanceof Boolean || anyObject instanceof Date){
+        s += Sarissa.escape(""+anyObject);
+        isLeaf = true;
+    }else{
+        s += "\n";
+        var isArrayItem = anyObject instanceof Array;
+        for(var name in anyObject){
+            s += Sarissa.xmlize(anyObject[name], (isArrayItem?"array-item key=\""+name+"\"":name), indentSpace + "   ");
+        }
+        s += indentSpace;
+    }
+    return (s += (objectName.indexOf(' ')!=-1?"</array-item>\n":"</" + objectName + ">\n"));
+};
+
+/** 
+ * Escape the given string chacters that correspond to the five predefined XML entities
+ * @memberOf Sarissa
+ * @param sXml the string to escape
+ */
+Sarissa.escape = function(sXml){
+    return sXml.replace(/&/g, "&amp;").replace(/</g, "&lt;").replace(/>/g, "&gt;").replace(/"/g, "&quot;").replace(/'/g, "&apos;");
+};
+
+/** 
+ * Unescape the given string. This turns the occurences of the predefined XML 
+ * entities to become the characters they represent correspond to the five predefined XML entities
+ * @memberOf Sarissa
+ * @param sXml the string to unescape
+ */
+Sarissa.unescape = function(sXml){
+    return sXml.replace(/&apos;/g,"'").replace(/&quot;/g,"\"").replace(/&gt;/g,">").replace(/&lt;/g,"<").replace(/&amp;/g,"&");
+};
+
+/** @private */
+Sarissa.updateCursor = function(oTargetElement, sValue) {
+    if(oTargetElement && oTargetElement.style && oTargetElement.style.cursor != undefined ){
+        oTargetElement.style.cursor = sValue;
+    }
+};
+
+/**
+ * Asynchronously update an element with response of a GET request on the given URL.  Passing a configured XSLT 
+ * processor will result in transforming and updating oNode before using it to update oTargetElement.
+ * You can also pass a callback function to be executed when the update is finished. The function will be called as 
+ * <code>functionName(oNode, oTargetElement);</code>
+ * @memberOf Sarissa
+ * @param sFromUrl the URL to make the request to
+ * @param oTargetElement the element to update
+ * @param xsltproc (optional) the transformer to use on the returned
+ *                  content before updating the target element with it
+ * @param callback (optional) a Function object to execute once the update is finished successfuly, called as <code>callback(sFromUrl, oTargetElement)</code>. 
+ *        In case an exception is thrown during execution, the callback is called as called as <code>callback(sFromUrl, oTargetElement, oException)</code>
+ * @param skipCache (optional) whether to skip any cache
+ */
+Sarissa.updateContentFromURI = function(sFromUrl, oTargetElement, xsltproc, callback, skipCache) {
+    try{
+        Sarissa.updateCursor(oTargetElement, "wait");
+        var xmlhttp = new XMLHttpRequest();
+        xmlhttp.open("GET", sFromUrl, true);
+        xmlhttp.onreadystatechange = function() {
+            if (xmlhttp.readyState == 4) {
+            	try{
+            		var oDomDoc = xmlhttp.responseXML;
+	            	if(oDomDoc && Sarissa.getParseErrorText(oDomDoc) == Sarissa.PARSED_OK){
+		                Sarissa.updateContentFromNode(xmlhttp.responseXML, oTargetElement, xsltproc);
+		                callback(sFromUrl, oTargetElement);
+	            	}
+	            	else{
+	            		throw Sarissa.getParseErrorText(oDomDoc);
+	            	}
+            	}
+            	catch(e){
+            		if(callback){
+			        	callback(sFromUrl, oTargetElement, e);
+			        }
+			        else{
+			        	throw e;
+			        }
+            	}
+            }
+        };
+        if (skipCache) {
+             var oldage = "Sat, 1 Jan 2000 00:00:00 GMT";
+             xmlhttp.setRequestHeader("If-Modified-Since", oldage);
+        }
+        xmlhttp.send("");
+    }
+    catch(e){
+        Sarissa.updateCursor(oTargetElement, "auto");
+        if(callback){
+        	callback(sFromUrl, oTargetElement, e);
+        }
+        else{
+        	throw e;
+        }
+    }
+};
+
+/**
+ * Update an element's content with the given DOM node. Passing a configured XSLT 
+ * processor will result in transforming and updating oNode before using it to update oTargetElement.
+ * You can also pass a callback function to be executed when the update is finished. The function will be called as 
+ * <code>functionName(oNode, oTargetElement);</code>
+ * @memberOf Sarissa
+ * @param oNode the URL to make the request to
+ * @param oTargetElement the element to update
+ * @param xsltproc (optional) the transformer to use on the given 
+ *                  DOM node before updating the target element with it
+ */
+Sarissa.updateContentFromNode = function(oNode, oTargetElement, xsltproc) {
+    try {
+        Sarissa.updateCursor(oTargetElement, "wait");
+        Sarissa.clearChildNodes(oTargetElement);
+        // check for parsing errors
+        var ownerDoc = oNode.nodeType == Node.DOCUMENT_NODE?oNode:oNode.ownerDocument;
+        if(ownerDoc.parseError && ownerDoc.parseError.errorCode != 0) {
+            var pre = document.createElement("pre");
+            pre.appendChild(document.createTextNode(Sarissa.getParseErrorText(ownerDoc)));
+            oTargetElement.appendChild(pre);
+        }
+        else {
+            // transform if appropriate
+            if(xsltproc) {
+                oNode = xsltproc.transformToDocument(oNode);
+            }
+            // be smart, maybe the user wants to display the source instead
+            if(oTargetElement.tagName.toLowerCase() == "textarea" || oTargetElement.tagName.toLowerCase() == "input") {
+                oTargetElement.value = new XMLSerializer().serializeToString(oNode);
+            }
+            else {
+                // ok that was not smart; it was paranoid. Keep up the good work by trying to use DOM instead of innerHTML
+                if(oNode.nodeType == Node.DOCUMENT_NODE || oNode.ownerDocument.documentElement == oNode) {
+                    oTargetElement.innerHTML = new XMLSerializer().serializeToString(oNode);
+                }
+                else{
+                    oTargetElement.appendChild(oTargetElement.ownerDocument.importNode(oNode, true));
+                }
+            }
+        }
+    }
+    catch(e) {
+    	throw e;
+    }
+    finally{
+        Sarissa.updateCursor(oTargetElement, "auto");
+    }
+};
+
+
+/**
+ * Creates an HTTP URL query string from the given HTML form data
+ * @memberOf Sarissa
+ */
+Sarissa.formToQueryString = function(oForm){
+    var qs = "";
+    for(var i = 0;i < oForm.elements.length;i++) {
+        var oField = oForm.elements[i];
+        var sFieldName = oField.getAttribute("name") ? oField.getAttribute("name") : oField.getAttribute("id"); 
+        // ensure we got a proper name/id and that the field is not disabled
+        if(sFieldName && 
+            ((!oField.disabled) || oField.type == "hidden")) {
+            switch(oField.type) {
+                case "hidden":
+                case "text":
+                case "textarea":
+                case "password":
+                    qs += sFieldName + "=" + encodeURIComponent(oField.value) + "&";
+                    break;
+                case "select-one":
+                    qs += sFieldName + "=" + encodeURIComponent(oField.options[oField.selectedIndex].value) + "&";
+                    break;
+                case "select-multiple":
+                    for (var j = 0; j < oField.length; j++) {
+                        var optElem = oField.options[j];
+                        if (optElem.selected === true) {
+                            qs += sFieldName + "[]" + "=" + encodeURIComponent(optElem.value) + "&";
+                        }
+                     }
+                     break;
+                case "checkbox":
+                case "radio":
+                    if(oField.checked) {
+                        qs += sFieldName + "=" + encodeURIComponent(oField.value) + "&";
+                    }
+                    break;
+            }
+        }
+    }
+    // return after removing last '&'
+    return qs.substr(0, qs.length - 1); 
+};
+
+
+/**
+ * Asynchronously update an element with response of an XMLHttpRequest-based emulation of a form submission. <p>The form <code>action</code> and 
+ * <code>method</code> attributess will be followed. Passing a configured XSLT processor will result in 
+ * transforming and updating the server response before using it to update the target element.
+ * You can also pass a callback function to be executed when the update is finished. The function will be called as 
+ * <code>functionName(oNode, oTargetElement);</code></p>
+ * <p>Here is an example of using this in a form element:</p>
+ * <pre name="code" class="xml">
+ * &lt;div id="targetId"&gt; this content will be updated&lt;/div&gt;
+ * &lt;form action="/my/form/handler" method="post" 
+ *     onbeforesubmit="return Sarissa.updateContentFromForm(this, document.getElementById('targetId'));"&gt;<pre>
+ * <p>If JavaScript is supported, the form will not be submitted. Instead, Sarissa will
+ * scan the form and make an appropriate AJAX request, also adding a parameter 
+ * to signal to the server that this is an AJAX call. The parameter is 
+ * constructed as <code>Sarissa.REMOTE_CALL_FLAG = "=true"</code> so you can change the name in your webpage
+ * simply by assigning another value to Sarissa.REMOTE_CALL_FLAG. If JavaScript is not supported
+ * the form will be submitted normally.
+ * @memberOf Sarissa
+ * @param oForm the form submition to emulate
+ * @param oTargetElement the element to update
+ * @param xsltproc (optional) the transformer to use on the returned
+ *                  content before updating the target element with it
+ * @param callback (optional) a Function object to execute once the update is finished successfuly, called as <code>callback(oNode, oTargetElement)</code>. 
+ *        In case an exception occurs during excecution and a callback function was provided, the exception is cought and the callback is called as 
+ *        <code>callback(oForm, oTargetElement, exception)</code>
+ */
+Sarissa.updateContentFromForm = function(oForm, oTargetElement, xsltproc, callback) {
+    try{
+    	Sarissa.updateCursor(oTargetElement, "wait");
+        // build parameters from form fields
+        var params = Sarissa.formToQueryString(oForm) + "&" + Sarissa.REMOTE_CALL_FLAG + "=true";
+        var xmlhttp = new XMLHttpRequest();
+        var bUseGet = oForm.getAttribute("method") && oForm.getAttribute("method").toLowerCase() == "get"; 
+        if(bUseGet) {
+            xmlhttp.open("GET", oForm.getAttribute("action")+"?"+params, true);
+        }
+        else{
+            xmlhttp.open('POST', oForm.getAttribute("action"), true);
+            xmlhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
+            xmlhttp.setRequestHeader("Content-length", params.length);
+            xmlhttp.setRequestHeader("Connection", "close");
+        }
+        xmlhttp.onreadystatechange = function() {
+        	try{
+	            if (xmlhttp.readyState == 4) {
+	            	var oDomDoc = xmlhttp.responseXML;
+	            	if(oDomDoc && Sarissa.getParseErrorText(oDomDoc) == Sarissa.PARSED_OK){
+		                Sarissa.updateContentFromNode(xmlhttp.responseXML, oTargetElement, xsltproc);
+		                callback(oForm, oTargetElement);
+	            	}
+	            	else{
+	            		throw Sarissa.getParseErrorText(oDomDoc);
+	            	}
+	            }
+        	}
+        	catch(e){
+        		if(callback){
+        			callback(oForm, oTargetElement, e);
+        		}
+        		else{
+        			throw e;
+        		}
+        	}
+        };
+        xmlhttp.send(bUseGet?"":params);
+    }
+    catch(e){
+        Sarissa.updateCursor(oTargetElement, "auto");
+        if(callback){
+        	callback(oForm, oTargetElement, e);
+        }
+        else{
+        	throw e;
+        }
+    }
+    return false;
+};
+
+//   EOF
diff --git a/skins/ajax_scripts/sarissa.js.metadata b/skins/ajax_scripts/sarissa.js.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/ajax_scripts/sarissa.js.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/ajax_scripts/widget_form_manager.js b/skins/ajax_scripts/widget_form_manager.js
new file mode 100644
index 0000000..e22a180
--- /dev/null
+++ b/skins/ajax_scripts/widget_form_manager.js
@@ -0,0 +1,253 @@
+// © 2009 Benoît Pin
+// http://plinn.org
+// Licence GPL
+// $Id: widget_form_manager.js 1473 2009-03-06 17:02:21Z pin $
+// $URL: http://svn.cri.ensmp.fr/svn/Plinn/branches/CMF-2.1/skins/ajax_scripts/widget_form_manager.js $
+
+var WidgetBasedFormManager;
+
+(function(){
+	WidgetBasedFormManager = function(widgets, editingArea, dataArea, dataAreaSpecs) {
+		var thisWgtManager = this;
+		this.widgets = widgets;
+		this.openedWidget = null;
+		this.dataArea = dataArea;
+		this.dataAreaSpecs = dataAreaSpecs;
+
+		var form = editingArea.getElementsByTagName('form')[0];
+		this.form = form;
+		var fm = new FormManager(form);
+		fm.onBeforeSubmit  = function(fm, evt){return thisWgtManager.onBeforeSubmit(fm, evt);};
+		fm.onResponseLoad = function(req){thisWgtManager.loadResponse(req);};
+		
+		addListener(this.form, 'click', function(evt){thisWgtManager.clickHandler(evt);});
+		
+	};
+		
+	WidgetBasedFormManager.prototype.showAddWidget = function(dest) {
+		if (this.openedWidget)
+			return;
+		var wdgtCopy = this.widgets['add'].cloneNode(true);
+		wdgtCopy.removeAttribute('id');
+		this.openedWidget = wdgtCopy;
+		dest.appendChild(wdgtCopy);
+		if (this.addButton)
+			this.addButton.style.visibility = 'hidden';
+	};
+	
+	WidgetBasedFormManager.prototype.showPopulatedWidget = function(dest, url) {
+		var req = new XMLHttpRequest();
+		req.open("GET", url, false);
+		showProgressImage();
+		req.send(null);
+		hideProgressImage();
+		
+		if (req.status != 200){
+			alert(req.status);
+			return;
+		}
+
+		var wdgtCopy = this.widgets['edit'].cloneNode(true);
+		wdgtCopy.removeAttribute('id');
+		var tmpForm = document.createElement('form');
+		tmpForm.appendChild(wdgtCopy);
+		
+		var fields = req.responseXML.documentElement.childNodes;
+		var input, field, value;
+		for (var i = 0 ; i<fields.length; i++) {
+			field = fields[i];
+			if (!field.firstChild)
+				continue;
+			
+			value = field.firstChild.nodeValue;
+			input = tmpForm.elements.namedItem(field.nodeName);
+
+			switch (input.tagName) {
+				case 'INPUT':
+					input.value = value;
+					break;
+				case 'TEXTAREA':
+					input.appendChild(document.createTextNode(value));
+			}
+		}
+		dest.appendChild(wdgtCopy);
+	};
+	
+	WidgetBasedFormManager.prototype.cancelWidget = function() {
+		var parent = this.openedWidget.parentNode;
+		parent.removeChild(this.openedWidget);
+		this.openedWidget = null;
+		if (this.addButton)
+			this.addButton.style.visibility = 'visible';
+		if (this.previousRecState) {
+			this.previousRecState.style.display = '';
+			this.previousRecState = null;
+		}
+	};
+	
+	WidgetBasedFormManager.prototype.updateEditedRecord = function(node) {
+		var parent = this.openedWidget.parentNode;
+		parent.removeChild(this.openedWidget);
+		this.openedWidget = null;
+		if (this.addButton)
+			this.addButton.style.visibility = 'visible';
+		
+		parent = this.previousRecState.parentNode;
+		parent.replaceChild(node, this.previousRecState);
+	};
+
+	WidgetBasedFormManager.prototype.clickHandler = function(evt) {
+		var target = getTargetedObject(evt);
+		if (target.tagName == 'IMG') {
+			var parent = target.parentNode;
+			if (parent.tagName == 'A') {
+				switch (parent.name) {
+					case 'add' :
+						disableDefault(evt);
+						disablePropagation(evt);
+						parent.blur();
+						this.addButton = parent;
+						this.showAddWidget(this.form);
+						break;
+					case 'rm' :
+						disableDefault(evt);
+						disablePropagation(evt);
+						this.deleteRecord(parent);
+						break;
+					case 'edit' :
+						disableDefault(evt);
+						disablePropagation(evt);
+						if (!this.openedWidget) {
+							var rec = this._storePreviousState(parent);
+							var container = this._prepareEditingContainer(rec);
+							this.showPopulatedWidget(container, parent.href);
+						}
+						break;
+				}
+			}
+		}
+	};
+	
+	WidgetBasedFormManager.prototype._storePreviousState = function(recChild) {
+		var rec = recChild;
+		while(!(this.isRootRecordElement(rec)))
+			rec = rec.parentNode;
+		rec.style.display = 'none';
+		this.previousRecState = rec;
+		return rec
+	};
+	
+	WidgetBasedFormManager.prototype._prepareEditingContainer = function(rec) {
+		/* default behaviour. May be redefined by an instance */
+		var tbody = document.createElement('tbody');
+		var tr = document.createElement('tr');
+		var td = document.createElement('td')
+		td.colSpan = this.dataAreaSpecs;
+
+		tbody.appendChild(tr);
+		tr.appendChild(td)
+		
+		if (rec.nextSibling)
+			rec.parentNode.insertBefore(tbody, rec.nextSibling);
+		else
+			rec.parentNode.appendChild(tbody);
+		
+		this.openedWidget = tbody;
+		return td
+	};
+	
+	
+	
+	WidgetBasedFormManager.prototype.deleteRecord = function(link) {
+		var req = new XMLHttpRequest();
+
+		var thisManager = this;
+		req.onreadystatechange = function() {
+			switch (req.readyState) {
+				case 1 :
+					showProgressImage();
+					break;
+				case 4 :
+					hideProgressImage();
+					if (req.status == 200)
+						thisManager._deleteHtmlRecord(req, link);
+					else
+						alert('Error: ' + req.status);
+			};
+		};
+		var url = link.href;
+		req.open("POST", url, true);
+		req.send(null);
+	};
+	
+	
+	WidgetBasedFormManager.prototype._deleteHtmlRecord = function(req, link) {
+		var doc = req.responseXML.documentElement;
+		switch (doc.nodeName) {
+			case 'done':
+				var rec = link.parentNode;
+				while(!(this.isRootRecordElement(rec)))
+					rec = rec.parentNode;
+				this.dataArea.removeChild(rec);
+				break;
+			case 'error':
+				alert(doc.firstChild.nodeValue);
+				break;
+		}
+	};
+	
+	WidgetBasedFormManager.prototype.isRootRecordElement = function(e) {
+		/* default behaviour. May be redefined by an instance */
+		return (e.tagName == 'TBODY')
+	};
+	
+	WidgetBasedFormManager.prototype.onBeforeSubmit = function(fm, evt) {
+		if (fm.submitButton.name == 'cancel'){
+			this.cancelWidget();
+			return 'cancelSubmit';
+		}
+	};
+	
+	
+	WidgetBasedFormManager.prototype.loadResponse = function(req) {
+		if (req.status == 200) {
+			var doc = req.responseXML.documentElement;
+			switch (doc.nodeName) {
+				case 'computedField':
+					switch(doc.getAttribute('type')) {
+						case 'added' :
+							this.cancelWidget();
+							this.dataArea.appendChild(getCopyOfNode(doc.firstChild));
+							break;
+					
+						case 'edited' :
+							this.updateEditedRecord(getCopyOfNode(doc.firstChild));
+					}
+					break;
+				
+				case 'error':
+					alert(doc.firstChild.nodeValue);
+					break;
+
+				case 'fragments' :
+					var fragments = req.responseXML.documentElement.childNodes;
+					var fragment, dest, scripts;
+					for (var i=0 ; i<fragments.length ; i++) {
+						fragment = fragments[i];
+						if (fragment.nodeName == 'fragment') {
+							dest = document.getElementById(fragment.getAttribute('id'));
+							dest.innerHTML = fragment.firstChild.nodeValue;
+
+							scripts = dest.getElementsByTagName('script');
+							for (var j=0 ; j < scripts.length ; j++)
+								globalScriptRegistry.loadScript(scripts[j]);
+						}
+					}
+					break;
+			}
+		}
+		else
+			alert(req.statut);
+	};
+	
+})();
diff --git a/skins/content/cal_calendar_view.pt b/skins/content/cal_calendar_view.pt
new file mode 100644
index 0000000..0429c78
--- /dev/null
+++ b/skins/content/cal_calendar_view.pt
@@ -0,0 +1,63 @@
+<html xmlns="http://www.w3.org/1999/xhtml"
+			metal:use-macro="here/main_template/macros/master">
+
+  <head>
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8" />
+    <title>View and edit calendar object</title>
+  </head>
+
+  <body i18n:domain="plinn">
+		<div metal:fill-slot="header" tal:define="hideContentByLine python:1">
+		 <div metal:use-macro="here/widgets/macros/generic_header">generic_header</div>
+		</div>
+		<div metal:fill-slot="main" tal:omit-tag=""
+				 tal:define="forceSortBy string:start;
+				             rlink_mode request/form/link_mode|nothing;
+				             link_mode python:here.getOrSetSessionVar('slink_mode', rlink_mode, 'view');
+				             methodID python:link_mode == 'remove' and 'remove_object' or '';
+				             link_func python:lambda ob : '%s/%s' % (ob.absolute_url(), methodID);
+				             isEventCalendar python:True">
+	    <div metal:use-macro="here/calendar_view/macros/calendar">
+	    	<div metal:fill-slot="calendar_display" tal:attributes="class link_mode">
+	    		<div metal:use-macro="display_macro">
+						<table metal:fill-slot="cal_header">
+							<tr>
+								<td><div metal:use-macro="here/calendar_macros/macros/calNavigation">calendar navigation</div></td>
+								<div tal:condition="python:mtool.checkPermission('Add portal content', here)" tal:omit-tag="">
+									<span tal:condition="python:here.getOrSetSessionVar('slink_mode') == 'view'" tal:omit-tag="">
+										<td style="vertical-align : middle">
+										<form tal:attributes="action string:${here/absolute_url}/add_event">
+											<input type="image" height="16" width="16" border="0" src="../images/new_event.gif"
+														 alt="Add a new event..." title="Add a new event..." value="" style="margin-left : 30px"
+												 		 tal:attributes="src here/new_event.gif/absolute_url"
+												 		 i18n:attributes="alt;title" />
+										</form>
+										</td>
+										<td style="vertical-align : middle">
+											<a href="." title="Remove event..."
+												 tal:attributes="href string:${request/URL0}?link_mode=remove"
+												 i18n:attributes="title">
+												<img src="../images/remove_event.gif" height="16" width="16" border="0" alt="Remove event..."
+												 tal:attributes="src here/remove_event.gif/absolute_url"
+												 i18n:attributes="alt" />
+											</a>
+										</td>
+									</span>
+									<span tal:condition="python:here.getOrSetSessionVar('slink_mode') == 'remove'" tal:omit-tag="">
+										<td style="vertical-align : middle">
+											<img src="../images/warning.gif" alt="" height="25" width="25" border="0" tal:attributes="src here/warning.gif/absolute_url">
+										</td>
+										<td style="vertical-align : middle"><span i18n:translate="" tal:omit-tag="">The next click over an event will remove it!</span><br />
+											<a href="." tal:attributes="href string:${request/URL0}?link_mode=view"><span i18n:translate="" tal:omit-tag="">Cancel delete mode</span></a>
+										</td>
+									</span>
+								</div>
+							</tr>
+						</table>
+	    		</div>
+	    	</div>
+	    </div>
+	  </div>
+  </body>
+
+</html>
\ No newline at end of file
diff --git a/skins/content/changes_history.py b/skins/content/changes_history.py
new file mode 100755
index 0000000..de54eb8
--- /dev/null
+++ b/skins/content/changes_history.py
@@ -0,0 +1,43 @@
+##parameters=compare=''
+
+from Products.Plinn.utils import getAdapterByInterface
+options = {}
+form = context.REQUEST.form
+history = getAdapterByInterface(context, 'Products.Plinn.interfaces.IContentHistory', None)
+comparison = None
+resultsLength = 20
+start = form.get('first_transaction',0)
+stop = start + resultsLength
+batchNavigation = None
+
+if history is not None :
+	entries = history.listEntries(first=start, last=stop+1)
+
+	previous, next = None, None
+	if len(entries) == resultsLength + 1 :
+		entries = entries[0:-1]
+		next = start + resultsLength
+	
+	if start > 0 :
+		previous = start - resultsLength
+	
+	batchNavigation = {'previous':previous, 'next':next, 'current':start}
+		
+	options['entries'] = entries
+	r = form.get('rightkey', entries[0]['key'])
+	try :
+		l = form.get('leftkey',  entries[1]['key'])
+	except IndexError :
+		l = r
+	
+	options['leftkey'] = l
+	options['rightkey'] = r
+	if compare :
+		comparison = history.compare(l, r)
+else :
+	options['entries'] = None
+
+options['comparison'] = comparison
+options['batchNavigation'] = batchNavigation
+
+return context.changes_history_template(**options)
\ No newline at end of file
diff --git a/skins/content/changes_history_template.pt b/skins/content/changes_history_template.pt
new file mode 100644
index 0000000..a7c383a
--- /dev/null
+++ b/skins/content/changes_history_template.pt
@@ -0,0 +1,106 @@
+<html metal:use-macro="here/main_template/macros/master"
+      xmlns:tal="http://xml.zope.org/namespaces/tal" xmlns:metal="http://xml.zope.org/namespaces/metal">
+  <head>
+    <title>Content Changes history</title>
+    <meta http-equiv="content-type" content="text/html;charset=utf-8" />
+    <metal:block metal:fill-slot="javascript_head_slot">
+      
+    </metal:block>
+  </head>
+  <body>
+    <div metal:fill-slot="main" tal:omit-tag=""
+         tal:define="entries options/entries;
+                     b_start options/batchNavigation/current"
+         i18n:domain="plinn">
+      <form tal:condition="python:entries is not None"
+            tal:attributes="action string:${here/absolute_url}/changes_history;"
+            method="get">
+        <table class="listing" cellspacing="0" style="width:auto">
+          <tr tal:define="navigation options/batchNavigation"
+              tal:condition="navigation">
+            <td colspan="4"
+                tal:define="previous navigation/previous;
+                            next navigation/next">
+              <a tal:condition="python:previous is not None"
+                 tal:attributes="href python:'%s/changes_history?first_transaction:int=%d' % (here.absolute_url(), previous)"
+                   i18n:translate=""
+                   style="float:left">« later revisions</a>
+              <a tal:condition="python:next is not None"
+                 tal:attributes="href python:'%s/changes_history?first_transaction:int=%d' % (here.absolute_url(), next)"
+                 i18n:translate=""
+                 style="float:right">earlier revisions »</a>
+            </td>
+          </tr>
+          <tr>
+            <th colspan="2" width="28"></th>
+            <th i18n:translate="">Date</th>
+            <th i18n:translate="">user</th>
+          </tr>
+          <tr tal:repeat="entry entries" tal:attributes="class python:repeat['entry'].odd() and 'odd' or 'even'">
+            <td>
+              <input type="radio" name="leftkey"
+                     tal:attributes="value entry/key;
+                                     checked python:entry['key'] == options['leftkey']"/>
+            </td>
+            <td>
+              <input type="radio" name="rightkey"
+                     tal:attributes="value entry/key;
+                                     checked python:entry['key'] == options['rightkey']" />
+            </td>
+            <td>
+              <a tal:content="python:entry['time'].strftime(locale_date_fmt)"
+                 tal:attributes="href python:'%s/load_revision/%s?pos:int=%d' % (here.absolute_url(),
+                                                                                 entry['key'],
+                                                                                 b_start + repeat['entry'].index)">
+                modification date
+              </a>
+            </td>
+            <td tal:define="userName python:entry['user_name']">
+              <span tal:condition="userName"
+                    tal:replace="python:mtool.getMemberFullNameById(userName.split()[-1], nameBefore=False)">
+                    user full name
+              </span>
+              <span tal:condition="not:userName" i18n:translate="" tal:omit-tag="">nobody</span>
+            </td>
+          </tr>
+          <tr>
+            <td colspan="4">
+              <input type="hidden" name="first_transaction:int"
+                     tal:attributes="value b_start">
+              <input type="submit" value="Compare" name="compare" i18n:attributes="value" />
+              <dl class="FieldHelp">
+                <dd i18n:translate="">Please select one revision per column to compare.</dd>
+              </dl>
+            </td>
+          </tr>
+        </table>
+      </form>
+      <div tal:condition="options/comparison">
+        <table class="comparison" cellspacing="0">
+          <tr>
+            <th width="49%"
+                tal:content="python:options['comparison']['leftDate'].strftime(locale_date_fmt)">left</th>
+            <td width="10" class="mid"><br/></td>
+            <th width="49%"
+                tal:content="python:options['comparison']['rightDate'].strftime(locale_date_fmt)">right</th>
+          </tr>
+          <tbody tal:repeat="g options/comparison/diff">
+            <tr tal:repeat="i g" tal:attributes="class i/tag">
+              <td class="left">
+                <span tal:repeat="line python:i['left'].split('\n')" tal:omit-tag="">
+                  <span tal:replace="line"/><br/>
+                </span>
+              </td>
+              <td class="mid"><br/></td>
+              <td class="right">
+                <span tal:repeat="line python:i['right'].split('\n')" tal:omit-tag="">
+                  <span tal:replace="line"/><br/>
+                </span>
+              </td>
+            </tr>
+          </tbody>
+        </table>
+      </div>
+    </div>
+  </body>
+</html>
diff --git a/skins/content/content_edit_form.pt b/skins/content/content_edit_form.pt
new file mode 100644
index 0000000..e094ab6
--- /dev/null
+++ b/skins/content/content_edit_form.pt
@@ -0,0 +1,19 @@
+<metal:block metal:define-macro="master">
+<html metal:use-macro="here/main_template/macros/master">
+
+  <head>
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8">
+    <title>generic edit form layout</title>
+  </head>
+
+  <body>
+  	<div metal:fill-slot="header">
+	  	<div metal:use-macro="here/widgets/macros/generic_header">generic_header</div>
+  	</div>
+  	<div metal:fill-slot="main" tal:omit-tag="">
+  		<div metal:define-slot="main">main slot</div>
+  	</div>
+  </body>
+
+</html>
+</metal:block>
\ No newline at end of file
diff --git a/skins/content/content_info.pt b/skins/content/content_info.pt
new file mode 100644
index 0000000..5762b84
--- /dev/null
+++ b/skins/content/content_info.pt
@@ -0,0 +1,29 @@
+<div i18n:domain="plinn"
+		 tal:define="locale_date_fmt here/locale_date_fmt;
+								 portal_url here/portal_url;
+								 ti here/getTypeInfo;
+								 icon ti/content_icon">
+	<table class="finder_preview">
+		<tr>
+			<td colspan="2">
+				<div i18n:translate="">Preview:</div>
+				<div class="thumbnail">
+					<img tal:attributes="src python:portal_url + '/' + icon.replace('.gif', '.thumb.gif'); alt here/title_or_id" width="128" height="128"/>
+				</div>
+			</td>
+		</tr>
+		<tr>
+			<th i18n:translate="">Title</th>
+			<td tal:content="here/title_or_id">File title</td>
+		</tr>
+		<tr>
+			<th i18n:translate="">Created</th>
+			<td tal:content="python:here.created().strftime(locale_date_fmt)">creation date</td>
+		</tr>
+		<tr>
+			<th i18n:translate="">Modified</th>
+			<td tal:content="python:here.modified().strftime(locale_date_fmt)">modification date</td>
+		</tr>
+	</table>
+	<em tal:define="desc here/Description" tal:condition="desc" tal:content="structure desc"></em>
+</div>
\ No newline at end of file
diff --git a/skins/content/dateCriterionResolvedDescription.py b/skins/content/dateCriterionResolvedDescription.py
new file mode 100644
index 0000000..e5b8914
--- /dev/null
+++ b/skins/content/dateCriterionResolvedDescription.py
@@ -0,0 +1,21 @@
+##parameters=
+items = context.getCriteriaItems()
+if items :
+	from Products.Plinn.utils import translate
+	_ = lambda msg: translate(msg, context)
+
+	rec = items[0][1]
+	
+	query = rec['query']
+	range = rec['range']
+	
+	strftime = lambda d : d.strftime(context.locale_date_fmt())
+	
+	if range == 'max' :
+		return _("search from the beginning of the world until %s") % strftime(query)
+	elif range == 'min' :
+		return _("search from %s and the end of the world") % strftime(query)
+	elif range == 'min:max' :
+		return _("search between %s and %s") % (strftime(query[0]), strftime(query[1]))
+else :
+	return context.Description()
\ No newline at end of file
diff --git a/skins/content/file_info.pt b/skins/content/file_info.pt
new file mode 100644
index 0000000..07ee911
--- /dev/null
+++ b/skins/content/file_info.pt
@@ -0,0 +1,29 @@
+<div i18n:domain="plinn" tal:define="locale_date_fmt here/locale_date_fmt; portal_url here/portal_url">
+	<table class="finder_preview">
+		<tr>
+			<td colspan="2">
+				<div i18n:translate="">Preview:</div>
+				<div class="thumbnail">
+					<img tal:attributes="src string:$portal_url/application.thumb.gif; alt here/title_or_id" width="128" height="128"/>
+				</div>
+			</td>
+		</tr>
+		<tr>
+			<th i18n:translate="">Title</th>
+			<td tal:content="here/title_or_id">File title</td>
+		</tr>
+		<tr>
+			<th i18n:translate="">Type</th>
+			<td tal:content="here/content_type">text/plain</td>
+		</tr>
+		<tr>
+			<th i18n:translate="">Created</th>
+			<td tal:content="python:here.created().strftime(locale_date_fmt)">creation date</td>
+		</tr>
+		<tr>
+			<th i18n:translate="">Modified</th>
+			<td tal:content="python:here.modified().strftime(locale_date_fmt)">modification date</td>
+		</tr>
+	</table>
+	<em tal:define="desc here/Description" tal:condition="desc" tal:content="structure desc"></em>
+</div>
\ No newline at end of file
diff --git a/skins/content/file_preview.pt b/skins/content/file_preview.pt
new file mode 100644
index 0000000..a7daed0
--- /dev/null
+++ b/skins/content/file_preview.pt
@@ -0,0 +1,21 @@
+<tal:block tal:define="preview here/preview">
+  <tal:block condition="preview">
+  	<span tal:replace="structure preview"></span>
+  </tal:block>
+  <tal:block condition="not:preview">
+		<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+		
+		<html xmlns="http://www.w3.org/1999/xhtml" tal:define="global dummy python:request.RESPONSE.setHeader('Content-Type', 'text/html;;charset=utf-8');">
+		
+		  <head>
+		    <meta http-equiv="content-type" content="text/html;charset=UTF-8" />
+		  </head>
+		
+		  <body i18n:domain="plinn">
+		    <h2 i18n:translate="">No preview available for this file</h2>
+		  </body>
+		
+		</html>
+ </tal:block>
+
+</tal:block>
\ No newline at end of file
diff --git a/skins/content/folder_edit_form.pt b/skins/content/folder_edit_form.pt
new file mode 100644
index 0000000..f73eb87
--- /dev/null
+++ b/skins/content/folder_edit_form.pt
@@ -0,0 +1,53 @@
+<html metal:use-macro="here/main_template/macros/master">
+  <head>
+    <title>Folder edit form</title>
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
+  </head>
+<body>
+<div metal:fill-slot="header">
+  <div metal:use-macro="here/widgets/macros/generic_header"></div>
+</div>
+<div metal:fill-slot="main" i18n:domain="cmf_default">
+<div class="Desktop">
+
+<form action="folder_edit" method="post"
+      tal:attributes="action string:${here/absolute_url}/folder_edit">
+
+<table class="FormLayout">
+ <tr valign="top">
+  <th align="right" i18n:translate="">Title</th>
+  <td colspan="3">
+   <input type="text"
+          name="title"
+          value=""
+          tal:attributes="value here/Title"
+          size="65" />
+  </td>
+ </tr>
+
+ <tr valign="top">
+  <th align="right" i18n:translate="">Description</th>
+  <td colspan="3">
+   <textarea name="description:text" rows="5"
+             cols="65" wrap="soft"
+             tal:content="here/Description">
+   </textarea>
+  </td>
+ </tr>
+
+ <tr>
+  <td> <br /> </td>
+              <td>
+   <input type="submit" name="change" value=" Change "
+          i18n:attributes="value" />
+   <input type="submit" name="change_and_view" value=" Change and View "
+          i18n:attributes="value" />
+  </td>
+            </tr>
+
+</table>
+</form>
+</div>
+</div>
+</body>
+</html>
diff --git a/skins/content/folder_factories.pt b/skins/content/folder_factories.pt
new file mode 100644
index 0000000..1171473
--- /dev/null
+++ b/skins/content/folder_factories.pt
@@ -0,0 +1,49 @@
+<html xmlns="http://www.w3.org/1999/xhtml"
+    metal:use-macro="here/main_template/macros/master">
+  <head>        
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
+    <title>folder_factories</title>
+    <link href="zpt_stylesheet.css" rel="stylesheet" media="screen"/>
+    <link href="../content/plinn_style.css" rel="stylesheet" media="screen"/>
+  </head>
+
+  <body>
+
+    <div metal:fill-slot="main" i18n:domain="cmf_default">
+      <div tal:condition="python: not(here.portal_membership.checkPermission('Access contents information', here))">
+        <span tal:define="dummy here/unauthRedirect"></span>
+      </div>
+      <form action="." method="post" tal:attributes="action string:${here/absolute_url}/add_content">
+      <table cellspacing="0" tal:define="ucn here/getUntitledContentName" class="FolderFactories">
+        <tr>
+          <th><br /></th>
+          <th i18n:translate="">Type</th>
+            <th i18n:translate="">Name</th>
+            <th><br /></th>
+          </tr>
+        <div tal:repeat="item here/allowedContentTypes" tal:omit-tag="">
+          <tr tal:define="icon python:here.restrictedTraverse(item.getIcon())">
+            <td class="ListName">
+              <img tal:attributes="src icon/absolute_url ; alt item/Title ; height icon/height ; width icon/width" i18n:attributes="alt"/>
+            </td>
+            <td tal:content="item/Title" i18n:translate="" class="ListName">Content name</td>
+              <td tal:condition="python:not item.listActionInfos('object/create', check_visibility=0)">
+                <input type="text" name="id" size="24" tal:attributes="name string:${item/id}.id:record; value ucn" />
+              </td>
+              <td tal:condition="python:item.listActionInfos('object/create', check_visibility=0)">
+                <input type="hidden" value="1" tal:attributes="name string:${item/id}.create_form:record"/>
+              </td>
+              <td>
+                <input type="submit" value="Add" tal:attributes="name string:${item/id}.type:record" i18n:attributes="value" />
+              </td>
+            </tr>
+          <tr>
+              <td colspan="4" class="spacing"></td>
+            </tr>
+        </div>
+      </table>
+      </form>
+    </div>
+  </body>
+
+</html>
\ No newline at end of file
diff --git a/skins/content/folder_notifications_form.py b/skins/content/folder_notifications_form.py
new file mode 100755
index 0000000..5736b49
--- /dev/null
+++ b/skins/content/folder_notifications_form.py
@@ -0,0 +1,17 @@
+##parameters=save=''
+options = {}
+from Products.Plinn.utils import getAdapterByInterface
+
+settings = getAdapterByInterface(context, 'Products.Plinn.interfaces.IEmailNotificationSettings')
+if save :
+	form = context.REQUEST.form
+	for interface in settings.getManagedEvents() :
+		register = form.get(interface, False)
+		settings.subscribeToEvent(interface, register)
+	context.setStatus(True, 'Paramètres enregistrés')
+	return context.setRedirect(context, 'object/view', ajax=form.get('ajax'))
+		
+		
+
+options['notifications'] = settings.myNotifications()
+return context.folder_notifications_template(**options)
\ No newline at end of file
diff --git a/skins/content/folder_notifications_template.pt b/skins/content/folder_notifications_template.pt
new file mode 100644
index 0000000..46949e9
--- /dev/null
+++ b/skins/content/folder_notifications_template.pt
@@ -0,0 +1,27 @@
+<html metal:use-macro="here/main_template/macros/master"
+      xmlns:tal="http://xml.zope.org/namespaces/tal"
+      xmlns:metal="http://xml.zope.org/namespaces/metal"
+      xmlns:i18n="http://xml.zope.org/namespaces/i18n">
+  <head>
+    <title>notification settings</title>
+    <meta http-equiv="content-type" content="text/html;charset=utf-8" />
+    
+  </head>
+  <body i18n:domain="plinn">
+    <div metal:fill-slot="header" tal:replace="nothing">header</div>
+    <div metal:fill-slot="main" tal:omit-tag="">
+      <h2>Souscrire aux notifications d'événements</h2>
+      <form tal:attributes="action string:${context/absolute_url}/folder_notifications_form">
+        <div tal:repeat="notification options/notifications">
+          <label>
+            <input type="checkbox"
+              tal:attributes="name string:${notification/interface}:boolean;
+                              checked notification/registered"/>
+            <span tal:replace="notification/title"></span>
+          </label>
+        </div>
+        <input type="submit" name="save" value="Save" i18n:attributes="value"/>
+      </form>
+    </div>
+  </body>
+</html>
diff --git a/skins/content/list_pending_contents.pt b/skins/content/list_pending_contents.pt
new file mode 100644
index 0000000..04ea27f
--- /dev/null
+++ b/skins/content/list_pending_contents.pt
@@ -0,0 +1,69 @@
+<html metal:use-macro="here/main_template/macros/master">
+
+  <head>
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8">
+    <title>list_pending_contents</title>
+  </head>
+
+  <body metal:fill-slot="main_no_tabs" tal:omit-tag="" i18n:domain="plinn"
+  			tal:define="b_start string:0;
+                    checkPerm nocall: mtool/checkPermission;
+                    b_start request/b_start | b_start;
+                    items here/getPendingDocuments;
+	                  psf python:['title', 'actor', 'submitTime'] ;
+	                  rsorted_field request/form/sorted_field|nothing ;
+			       				sorted_field python: here.getOrSetSessionVar('sorted_field', rsorted_field, 'title');
+			       				sorted_field python: sorted_field in psf and sorted_field or here.getOrSetSessionVar('sorted_field', 'title');
+			       				rsorted_dir request/form/sorted_dir|nothing ;
+			       				sorted_dir python: here.getOrSetSessionVar('sorted_dir', rsorted_dir, 'up') ;
+			  						arrow python:test(sorted_dir=='up', 'arrowUp.gif', 'arrowDown.gif');
+							      sortedItems python: here.sort_folder_contents(items, sorted_field, sorted_dir);
+                    Batch python:modules['Products.Plinn'].Batch;
+                    batch python:Batch(sortedItems, 50, request.get('b_start', 0), orphan=0)">
+    <h2 i18n:translate="">Pending documents</h2>
+    <div metal:use-macro="here/batch_macros/macros/navigation">batch navigation</div>
+    <table class="listing" cellspacing="0">
+      <tr>
+        <th><br/></th>
+        <th tal:define="col string:title;
+				                dir python:test(sorted_field==col and sorted_dir=='up',
+						                'down', 'up')" nowrap="nowrap">
+					<a tal:attributes="href string:$portal_url/list_pending_contents?sorted_field=$col&sorted_dir=$dir" i18n:translate="">Title</a>
+					<img tal:condition="python:sorted_field == col" tal:attributes="src arrow" />
+				</th>
+        <th tal:define="col string:actor;
+				                dir python:test(sorted_field==col and sorted_dir=='up',
+						                'down', 'up')" nowrap="nowrap">
+					<a href="." tal:attributes="href string:$portal_url/list_pending_contents?sorted_field=$col&sorted_dir=$dir" i18n:translate="">Submit by:</a>
+					<img tal:condition="python:sorted_field == col" tal:attributes="src arrow" />
+				</th>
+        <th tal:define="col string:submitTime;
+				                dir python:test(sorted_field==col and sorted_dir=='up', 'down', 'up')" nowrap="nowrap">
+					<a tal:attributes="href string:$portal_url/list_pending_contents?sorted_field=$col&sorted_dir=$dir" i18n:translate="">Date</a>
+					<img tal:condition="python:sorted_field == col" tal:attributes="src arrow" />
+				</th>
+      </tr>
+      
+      <div tal:repeat="item batch" tal:omit-tag="">
+        <tr valign="top" tal:define="icon python:here.restrictedTraverse(item.getIcon());
+												date python:wtool.getInfoFor(item, 'time').strftime(locale_date_fmt);
+												oddrow repeat/item/odd" tal:attributes="class python:test(oddrow, 'even', 'odd')">
+          <td>
+            <a tal:condition="icon" href="#" tal:attributes="href string:${item/getId}"><img alt="" border="0" tal:attributes="src icon/absolute_url; height icon/height; width icon/width; alt item/Type|nothing;" i18n:attributes="alt" /></a>
+          </td>
+          <td>
+            <div>
+            	<a tal:attributes="href string:${item/absolute_url}" tal:content="item/title_or_id">ID</a>
+            </div>
+            <div tal:content="python:wtool.getInfoFor(item, 'comments')">comments</div>
+          </td>
+          <td tal:content="python:mtool.getMemberFullNameById(wtool.getInfoFor(item, 'actor'))"></td>
+          <td tal:content="date">
+            Date
+          </td>
+        </tr>
+      </div>
+    </table>
+  </body>
+
+</html>
diff --git a/skins/content/no_preview.pt b/skins/content/no_preview.pt
new file mode 100644
index 0000000..6756b39
--- /dev/null
+++ b/skins/content/no_preview.pt
@@ -0,0 +1,14 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+<html xmlns="http://www.w3.org/1999/xhtml">
+
+  <head>
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8" />
+    <title></title>
+  </head>
+
+  <body>
+    <p i18n:translate="">No preview available for this file</p>
+  </body>
+
+</html>
\ No newline at end of file
diff --git a/skins/content/plinn_folder_view.py b/skins/content/plinn_folder_view.py
new file mode 100755
index 0000000..09af73d
--- /dev/null
+++ b/skins/content/plinn_folder_view.py
@@ -0,0 +1,11 @@
+##parameters=*arg, **kw
+reqOther = context.REQUEST.other
+if hasattr(context, 'index_html') :
+	homePath = context.index_html.getPhysicalPath()
+	folderPath = context.getPhysicalPath()
+	if len(homePath) == len(folderPath) + 1 and homePath[:-1] == folderPath:
+		reqOther['forceTab'] = 'view'
+		return context.index_html(*arg, **kw)
+
+reqOther['forceTab'] = 'folderContents'
+return context.folder_contents(*arg, **kw)
\ No newline at end of file
diff --git a/skins/content/topic_edit_form.py b/skins/content/topic_edit_form.py
new file mode 100644
index 0000000..722f3d0
--- /dev/null
+++ b/skins/content/topic_edit_form.py
@@ -0,0 +1,20 @@
+##parameters=addCriterion='', deleteCriteria='', editCriteria='', ajax=''
+form = context.REQUEST.form
+
+if addCriterion and \
+	context.topic_add_criterion_control(**form) and \
+	context.setRedirect(context, 'object/edit', ajax=ajax) :
+	return
+	
+elif deleteCriteria and \
+	context.topic_delete_criteria_control(**form) and \
+	context.setRedirect(context, 'object/edit', ajax=ajax) :
+	return
+	
+elif editCriteria and \
+	context.topic_edit_criteria_control(**form) and \
+	context.setRedirect(context, 'object/edit', ajax=ajax) :
+	return
+
+options = {'showAcCriteria' : same_type(context.aq_parent, context)}
+return context.topic_edit_template(**options)
\ No newline at end of file
diff --git a/skins/content/topic_edit_template.pt b/skins/content/topic_edit_template.pt
new file mode 100644
index 0000000..02991fc
--- /dev/null
+++ b/skins/content/topic_edit_template.pt
@@ -0,0 +1,59 @@
+<html xmlns:tal="http://xml.zope.org/namespaces/tal" xmlns:metal="http://xml.zope.org/namespaces/metal" metal:use-macro="container/main_template/macros/master">
+  <head>
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
+    <title>Topic edit template</title>
+  </head>
+
+  <body i18n:domain="plinn">
+  	<div metal:fill-slot="header">
+  		<div metal:use-macro="here/widgets/macros/generic_header"/>
+  	</div>
+    <div metal:fill-slot="main" tal:omit-tag="">
+      <form tal:define="criteria here/listCriteria" method="post"
+      			tal:condition="criteria"
+       			tal:attributes="action string:${here/absolute_url}/topic_edit_form" >
+       	<div tal:condition="options/showAcCriteria">
+	       	<span i18n:translate="" tal:omit-tag="">Reuse criteria from parent:</span>
+	       	<label><input type="radio" name="acquireCriteria:boolean" tal:attributes="checked here/acquireCriteria" value="True"/><span i18n:translate="" tal:omit-tag="">yes</span></label>
+	       	<label><input type="radio" name="acquireCriteria:boolean" tal:attributes="checked not:here/acquireCriteria" value="False"/><span i18n:translate="" tal:omit-tag="">no</span></label>
+	      </div>
+       	<span tal:repeat="criterion criteria" tal:omit-tag="">
+       		<span tal:define="editform string:criterion/${criterion/getEditForm}" tal:replace="structure python:path(editform)">
+       			criterion edit form
+       		</span>
+       	</span>
+       	<br />
+        <input type="submit" name="editCriteria" value="Save" i18n:attributes="value" />
+        <input type="submit" name="deleteCriteria" value="Remove selected" i18n:attributes="value" />
+      </form>
+      <form action="." method="post" tal:attributes="action string:${here/absolute_url}/topic_edit_form">
+        <h2 i18n:translate="">New criterion:</h2>
+        <table class="TwoColumnForm">
+          <tr>
+            <th i18n:translate="">Name:</th>
+            <td>
+              <select name="field" tal:define="fields here/listAvailableFields">
+                <option value="" tal:attributes="value field" tal:content="string:catalog_index_$field" tal:repeat="field fields" i18n:translate="">Field</option>
+              </select>
+            </td>
+          </tr>
+          <tr>
+            <th i18n:translate="">Type:</th>
+            <td>
+              <select name="criterion_type" tal:define="types here/listCriteriaTypes">
+                <option value="" tal:attributes="value type/name" tal:content="type/name" tal:repeat="type types" i18n:translate="">Type</option>
+              </select>
+            </td>
+          </tr>
+          <tr>
+            <td><br/></td>
+            <td>
+              <input type="submit" name="addCriterion" value="Add" i18n:attributes="value" />
+            </td>
+          </tr>
+        </table>
+      </form>
+    </div>
+  </body>
+
+</html>
\ No newline at end of file
diff --git a/skins/control/add_content.py b/skins/control/add_content.py
new file mode 100644
index 0000000..c168112
--- /dev/null
+++ b/skins/control/add_content.py
@@ -0,0 +1,44 @@
+##parameters=
+from Products.Plinn.utils import makeValidId
+form = context.REQUEST.form
+
+for k in form.keys() :
+	item = form[k]
+	if hasattr(item, 'keys') and item.has_key('type') :
+		typeDic = item.copy()
+		typeDic['type'] = k
+		break
+
+if typeDic.has_key('id') :
+	title = typeDic['id']
+	newid = makeValidId(context, title)
+
+	context.invokeFactory( typeDic['type'], newid, title=title)
+	newOb = getattr(context, newid)
+	ti = newOb.getTypeInfo()
+	immediate_view = ti.immediate_view
+
+	if immediate_view.find('/') > 0 :
+		newOb.setStatus('True', 'Object created.')
+		return newOb.setRedirect(newOb, immediate_view, syncFragments = ['Breadcrumbs', 'rightCell'], **form)
+	else :
+		from ZTUtils import make_query
+		ob_url = newOb.absolute_url()
+		query = make_query(portal_status_message = 'Object created.', ajax = form.get('ajax'), syncFragments = ['Breadcrumbs', 'rightCell'])
+		url = "%s/%s?%s" % (ob_url, immediate_view, query)
+		response = context.REQUEST.RESPONSE
+		return response.redirect(url)
+		
+elif typeDic.has_key('create_form') :
+	from Products.CMFCore.utils import getToolByName
+	ttool = getToolByName(context, 'portal_types')
+	typeName = typeDic['type']
+	ti = getattr(ttool, typeName)
+	ai = ti.getActionInfo('object/create', object=context)
+	url = ai['url']
+
+	from ZTUtils import make_query
+	query = make_query(ajax=form.get('ajax'))
+	url = '%s?%s' % (url, query)
+	response = context.REQUEST.RESPONSE
+	return response.redirect(url)
diff --git a/skins/control/add_event.py b/skins/control/add_event.py
new file mode 100644
index 0000000..9cdca7d
--- /dev/null
+++ b/skins/control/add_event.py
@@ -0,0 +1,21 @@
+##parameters=ajax=''
+from DateTime import DateTime
+from Products.CMFCore.utils import getToolByName
+
+eventId = DateTime().strftime("%Y%m%d_%H%M%S")
+newOb = getattr(context, context.invokeFactory('Event', eventId, title=' '))
+
+ttool = getToolByName(context, 'portal_types')
+ti = ttool.Event
+immediate_view = ti.immediate_view
+
+immediate_view = ti.immediate_view
+if immediate_view.find('/') > 0 :
+	newOb.setStatus('True', 'Object created.')
+	return newOb.setRedirect(newOb, immediate_view, ajax=ajax)
+else :
+	from ZTUtils import make_query
+	ob_url = newOb.absolute_url()
+	query = make_query(portal_status_message = 'Object created.', ajax = ajax)
+	url = "%s/%s?%s" % (ob_url, immediate_view, query)
+	return response.redirect(url)
\ No newline at end of file
diff --git a/skins/control/add_group.py b/skins/control/add_group.py
new file mode 100755
index 0000000..73e0b45
--- /dev/null
+++ b/skins/control/add_group.py
@@ -0,0 +1,13 @@
+##parameters=groupname, ajax=''
+from Products.Plinn.utils import desacc
+groupname = desacc(groupname).replace(' ', '-')
+gp = context.acl_users.getGroupPrefix()
+while groupname.startswith(gp) :
+	groupname = groupname[len(gp):]
+
+gtool = context.portal_groups
+gtool.addGroup(groupname, **context.REQUEST.form)
+
+from ZTUtils import make_query as mq
+url = context.portal_url()
+return context.REQUEST.RESPONSE.redirect('%s/portal_all_groups?%s' % (url, mq(portal_status_message = 'Group created.', ajax=ajax)))
\ No newline at end of file
diff --git a/skins/control/add_member.py b/skins/control/add_member.py
new file mode 100755
index 0000000..74277b9
--- /dev/null
+++ b/skins/control/add_member.py
@@ -0,0 +1,17 @@
+##parameters=username, password, confirm, ajax=''
+REQUEST = context.REQUEST
+rtool = context.portal_registration
+from ZTUtils import make_query as mq
+url = context.portal_url()
+red = REQUEST.RESPONSE.redirect
+
+failMessage = rtool.testPasswordValidity(password, confirm)
+if failMessage :
+	return red('%s/portal_members?%s' % (url, mq(portal_status_message = failMessage, ajax=ajax)))
+
+failMessage = rtool.testPropertiesValidity(REQUEST.form)
+if failMessage :
+	return red('%s/portal_members?%s' % (url, mq(portal_status_message = failMessage, ajax=ajax)))
+
+context.portal_registration.addMember(username, password, roles=[], properties=REQUEST)
+red('%s/portal_members?%s' % (url, mq(portal_status_message = 'Member created.', ajax=ajax)))
\ No newline at end of file
diff --git a/skins/control/append_group_role.py b/skins/control/append_group_role.py
new file mode 100755
index 0000000..750e9bb
--- /dev/null
+++ b/skins/control/append_group_role.py
@@ -0,0 +1,21 @@
+##parameters=groupId, role, ajax='', REQUEST=None
+
+aclu = context.aq_inner.acl_users
+prefix = aclu.getGroupPrefix()
+group = context.portal_groups.getGroupById(groupId)
+roles = list(group.getUserRoles()[:])
+roles.append(role)
+
+try :
+	prefixLen = len(prefix)
+	groups = [ g[prefixLen:] for g in group.getGroups(no_recurse = 1) ]
+except :
+	groups = []
+
+aclu.changeUser(groupId, groups = groups, roles = roles )
+
+if REQUEST is not None :
+	from ZTUtils import make_query as mq
+	url = context.portal_url()
+	red = REQUEST.RESPONSE.redirect
+	return red('%s/group_data?%s' % (url, mq(group=groupId, ajax=ajax)))
diff --git a/skins/control/append_groups_in_group.py b/skins/control/append_groups_in_group.py
new file mode 100755
index 0000000..6f79266
--- /dev/null
+++ b/skins/control/append_groups_in_group.py
@@ -0,0 +1,13 @@
+##parameters=groupId, append_groups=[], ajax='', REQUEST=None
+
+gtool = context.portal_groups
+group = gtool.getGroupById(groupId)
+
+for id in append_groups :
+	group.addGroup(id)
+
+if REQUEST is not None :
+	from ZTUtils import make_query as mq
+	url = context.portal_url()
+	red = REQUEST.RESPONSE.redirect
+	return red('%s/groups_members?%s#assign_groups' % (url, mq(group=groupId, ajax=ajax)))
\ No newline at end of file
diff --git a/skins/control/append_users_in_group.py b/skins/control/append_users_in_group.py
new file mode 100755
index 0000000..1121b73
--- /dev/null
+++ b/skins/control/append_users_in_group.py
@@ -0,0 +1,12 @@
+##parameters=groupId, append_members=[], ajax='', REQUEST=None
+
+groupsTool = context.portal_groups
+group = groupsTool.getGroupById(groupId)
+
+for memberId in append_members :
+	group.addMember(memberId)
+if REQUEST is not None :
+	from ZTUtils import make_query as mq
+	red = REQUEST.RESPONSE.redirect
+	url = context.portal_url()
+	return red('%s/groups_members?%s#assign_members' % (url, mq(group=groupId, ajax=ajax)))
\ No newline at end of file
diff --git a/skins/control/append_users_in_local_role.py b/skins/control/append_users_in_local_role.py
new file mode 100755
index 0000000..8e2e78d
--- /dev/null
+++ b/skins/control/append_users_in_local_role.py
@@ -0,0 +1,15 @@
+##parameters=role, redirect, append_members=[], ajax=''
+from ZTUtils import make_query as mq
+red = context.REQUEST.RESPONSE.redirect
+url = context.absolute_url()
+
+if append_members :
+	try :
+		context.portal_membership.setLocalRoles(context, append_members, role)
+	except :
+		msg = "You are not allowed to manage this role in this context."
+		sd = context.session_data_manager.getSessionData(create = 1)
+		sd.update({'roleToManage' : None})
+		return red('%s/%s?%s' % (url, redirect, mq(portal_status_message = msg, ajax=ajax)))
+
+return red('%s/%s?%s' % (url, redirect, mq(roleToManage=role, ajax=ajax)))
diff --git a/skins/control/change_group.py b/skins/control/change_group.py
new file mode 100755
index 0000000..d8cb65e
--- /dev/null
+++ b/skins/control/change_group.py
@@ -0,0 +1,13 @@
+##parameters=groupId, title='', description='', createSharedFolder=None, ajax='', REQUEST=None
+
+groupsTool = context.portal_groups
+wGroup = groupsTool.getGroupById(groupId)
+wGroup.setGroupProperties({'title' : title, 'description' : description})
+if createSharedFolder :
+	groupsTool.createGrouparea(groupId)
+
+if REQUEST is not None :
+	from ZTUtils import make_query as mq
+	url = context.portal_url()
+	red = context.REQUEST. RESPONSE.redirect
+	return red('%s/group_data?%s' % (url, mq(group=groupId, ajax=ajax, portal_status_message='Group modified.')))
\ No newline at end of file
diff --git a/skins/control/checkRoles.py b/skins/control/checkRoles.py
new file mode 100644
index 0000000..8d5707c
--- /dev/null
+++ b/skins/control/checkRoles.py
@@ -0,0 +1,8 @@
+##parameters=roles
+member = context.portal_membership.getAuthenticatedMember()
+for role in roles :
+	if member.allowed(context, [role,]) :
+		continue
+	else :
+		return False
+return True
diff --git a/skins/control/content_status_modify.py b/skins/control/content_status_modify.py
new file mode 100644
index 0000000..b8818d0
--- /dev/null
+++ b/skins/control/content_status_modify.py
@@ -0,0 +1,32 @@
+## Script (Python) "content_status_modify"
+##parameters=workflow_action, REQUEST=None, **kw
+##title=Modify the status of a content object
+
+from ZTUtils import make_query as mq
+from Products.CMFCore.utils import getToolByName
+from Products.CMFCore.exceptions import zExceptions_Unauthorized
+
+wftool = getToolByName(context, 'portal_workflow')
+mtool = getToolByName(context, 'portal_membership')
+utool = getToolByName(context, 'portal_url')
+
+if REQUEST :
+	kw.update(REQUEST.form)
+	
+try :
+	target = context.getActionInfo('object/history')['url']
+except ValueError :
+	target = context.getActionInfo('object/view')['url']
+
+res = wftool.doActionFor(context, workflow_action, **kw)
+if res :
+	# by (Plinn) convention
+	# occurs when a ObjectMoved is raised
+	kw.update({'syncFragments' : ['Breadcrumbs', 'rightCell']})
+	return REQUEST.RESPONSE.redirect('%s?%s' % (res.absolute_url(), mq(**kw)))
+
+
+kw.update({'portal_status_message' : 'Status changed.'})
+try : context.id # touch something in context
+except zExceptions_Unauthorized : target = utool()
+return REQUEST.RESPONSE.redirect('%s?%s' % (target, mq(**kw)))
\ No newline at end of file
diff --git a/skins/control/createHugePlinnFolder.py b/skins/control/createHugePlinnFolder.py
new file mode 100644
index 0000000..c103734
--- /dev/null
+++ b/skins/control/createHugePlinnFolder.py
@@ -0,0 +1,4 @@
+## Script (Python) "createPlinnFolder"
+##title=mkdir hook script for Plinn Folder
+##parameters=id
+context.invokeFactory(type_name='Huge Plinn Folder', id=id)
\ No newline at end of file
diff --git a/skins/control/createPlinnFolder.py b/skins/control/createPlinnFolder.py
new file mode 100644
index 0000000..ed09c7f
--- /dev/null
+++ b/skins/control/createPlinnFolder.py
@@ -0,0 +1,4 @@
+## Script (Python) "createPlinnFolder"
+##title=mkdir hook script for Plinn Folder
+##parameters=id
+context.invokeFactory(type_name='Plinn Folder', id=id)
\ No newline at end of file
diff --git a/skins/control/delete_members.py b/skins/control/delete_members.py
new file mode 100755
index 0000000..e47050a
--- /dev/null
+++ b/skins/control/delete_members.py
@@ -0,0 +1,11 @@
+##parameters=memberIds=[], ajax=''
+if memberIds :
+	context.portal_membership.removeMembers(memberIds)
+	psm = len(memberIds) == 1 and 'Member deleted.' or 'Members deleted.'
+else :
+	psm = 'Please select one or more members.'
+
+from ZTUtils import make_query as mq
+url = context.portal_url()
+red = context.REQUEST.RESPONSE.redirect
+return red('%s/portal_members?%s' % (url, mq(portal_status_message=psm, ajax=ajax)))
\ No newline at end of file
diff --git a/skins/control/delete_object.py b/skins/control/delete_object.py
new file mode 100755
index 0000000..7b8b4c4
--- /dev/null
+++ b/skins/control/delete_object.py
@@ -0,0 +1,13 @@
+##parameters=
+parent = context.aq_parent
+req = context.REQUEST
+assert req.method == 'POST', "This script works only in POST http method"
+
+req.RESPONSE.setHeader('Content-Type', 'text/xml;charset=utf-8')
+
+try :
+	parent.manage_delObjects(context.id)
+except Exception, e :
+	return '<error>%s</error>' % str(e)
+
+return '<done/>'
\ No newline at end of file
diff --git a/skins/control/discussionItemDelete.py b/skins/control/discussionItemDelete.py
new file mode 100644
index 0000000..ee1b272
--- /dev/null
+++ b/skins/control/discussionItemDelete.py
@@ -0,0 +1,21 @@
+## Script (Python) "discussionItemDelete"
+##title=Add item to favourites
+##parameters=
+from Products.CMFCore.utils import getToolByName
+disTool = getToolByName(context, 'portal_discussion')
+thread = context.parentsInThread()
+content = thread[0]
+talk = disTool.getDiscussionFor(context)
+
+if talk.hasReplies(context) :
+	context.setStatus(True, 'Discussion thread deleted.')
+else :
+	if len(thread) == 1:
+		context.setStatus(True, 'Comment deleted.')
+	else :
+		context.setStatus(True, 'Reply deleted.')
+
+
+talk.deleteReply(context.id)
+
+return context.setRedirect(content, 'object/view', **context.REQUEST.form)
diff --git a/skins/control/doFormSearch.py b/skins/control/doFormSearch.py
new file mode 100644
index 0000000..0128475
--- /dev/null
+++ b/skins/control/doFormSearch.py
@@ -0,0 +1,44 @@
+## Script (Python) "doFormSearch"
+##parameters=REQUEST
+##title=Pre-process form variables, then return catalog query results.
+##
+vars = REQUEST.form
+form_vars = {}
+skip_vars = ['strCreator']
+select_vars = ( 'review_state'
+			  , 'Subject'
+			  , 'portal_type'
+			  )
+date_vars = ('created',
+			 )
+epoch = DateTime("1970/01/01 00:00:00 GMT")
+
+for k, v in vars.items():
+
+	if k in select_vars:
+		if same_type( v, [] ):
+			v = filter( None, v )
+		if not v:
+			continue
+
+	if k in date_vars:
+		if v == epoch and vars.get(k+'_usage') == 'range:min':
+			skip_vars.append(k+'_usage')
+			continue
+
+	form_vars[ k ] = v
+
+if form_vars.has_key('portal_type') :
+	try : form_vars['portal_type'].remove('Member Data')
+	except ValueError : pass
+else :
+	form_vars['portal_type'] = context.portal_types.objectIds()
+
+for k in skip_vars:
+	if form_vars.has_key(k) :
+		del form_vars[k]
+
+if vars.has_key('strCreator') :
+	form_vars['listCreators'] = [ m.getId() for m in context.portal_membership.looseSearchMembers(vars['strCreator']) ]
+
+return context.portal_catalog( form_vars )
diff --git a/skins/control/edit_member_settings.py b/skins/control/edit_member_settings.py
new file mode 100644
index 0000000..c9ffe49
--- /dev/null
+++ b/skins/control/edit_member_settings.py
@@ -0,0 +1,29 @@
+##parameters=username, password='', confirm='', ajax=''
+
+from ZTUtils import make_query as mq
+portal_url = context.portal_url()
+rtool = context.portal_registration
+req=context.REQUEST
+resp = req.RESPONSE
+member = context.portal_membership.getMemberById(username)
+
+failMessage = rtool.testPropertiesValidity(req, member)
+if failMessage:
+	return resp.redirect(portal_url + '/portal_members?%s' % mq(portal_status_message=failMessage,
+																member_id=username,
+																macroName='member_properties_form',
+																ajax=ajax))
+
+member.setMemberProperties(req.form)
+
+if password :
+	failMessage = rtool.testPasswordValidity(password, confirm=confirm)
+	if failMessage:
+		return resp.redirect(portal_url + '/portal_members?%s' % mq(portal_status_message=failMessage,
+																	member_id=username,
+																	macroName='member_properties_form',
+																	ajax=ajax))
+	else :
+		member.setMemberPassword(password)
+
+return resp.redirect(portal_url + '/portal_members?%s' % mq(portal_status_message='Member modified.', ajax=ajax))
\ No newline at end of file
diff --git a/skins/control/emptyClipboard.py b/skins/control/emptyClipboard.py
new file mode 100644
index 0000000..0d306d8
--- /dev/null
+++ b/skins/control/emptyClipboard.py
@@ -0,0 +1,24 @@
+##parameters=delete='', empty='', indexes=[], ajax=''
+from ZTUtils import make_query
+request = context.REQUEST
+response = request.RESPONSE
+
+if empty :
+	message = 'Clipboard emptied.'
+	response.expireCookie('__cp', path=request['BASEPATH1'] or "/")
+elif delete :
+	if not indexes :
+		message = 'Please select one or more items first.'
+	elif len(indexes) == 1 :
+		message = 'Item removed from clipboard.'
+	else :
+		message = 'Items removed from clipboard.'
+	context.popCP(indexes)
+
+
+if not ajax:
+	redirUrl = request['HTTP_REFERER'].split('?')[0] + \
+		   '?' + make_query(portal_status_message=message)
+	response.redirect(redirUrl)
+else :
+	return "..."
\ No newline at end of file
diff --git a/skins/control/getOrSetSessionVar.py b/skins/control/getOrSetSessionVar.py
new file mode 100644
index 0000000..5964c04
--- /dev/null
+++ b/skins/control/getOrSetSessionVar.py
@@ -0,0 +1,11 @@
+##parameters=key, value=None, default=None
+sd = context.session_data_manager.getSessionData(create = 1)
+if value is None :
+	sVar = sd.get(key, None)
+	if sVar is None and default is not None :
+		sVar = default
+else :
+	sVar = value
+
+sd[key] = sVar
+return sVar
diff --git a/skins/control/getRecipients.py b/skins/control/getRecipients.py
new file mode 100644
index 0000000..7977f15
--- /dev/null
+++ b/skins/control/getRecipients.py
@@ -0,0 +1,19 @@
+##parameters=object=None
+if object is None :
+	object = context
+roles = context.valid_roles()
+
+# todo : sort by role
+
+recipientIds = []
+rolesAndMembers = []
+for role in roles :
+	membersInRole = []
+	for member in object.getAllMembersInRole(role) :
+		if (member.id not in recipientIds) and member.getProperty('email') :
+			membersInRole.append(member)
+			recipientIds.append(member.id)
+	if membersInRole :
+		rolesAndMembers.append( (role, membersInRole) )
+
+return rolesAndMembers
\ No newline at end of file
diff --git a/skins/control/getUntitledContentName.py b/skins/control/getUntitledContentName.py
new file mode 100644
index 0000000..58a8094
--- /dev/null
+++ b/skins/control/getUntitledContentName.py
@@ -0,0 +1,22 @@
+##parameters=
+
+#TODO : translate messages
+#from Products.PlacelessTranslationService.MessageID import MessageIDFactory
+#_ = MessageIDFactory('plinn')
+_ = lambda x : lambda : x
+
+translate = lambda msg : _(msg)().decode('iso-8859-1').encode('utf-8')
+portal = context.portal_url.getPortalObject()
+ucn = translate(portal.getProperty('untitled_content_name', 'Untitled-'))
+ucnl = len(ucn)
+
+untitledNumbers = [ id[ucnl:] for id in context.objectIds() if id.startswith(ucn) ]
+nMax = 0
+for strN in untitledNumbers :
+	try :
+		n = int(strN)
+		if n > nMax : nMax = n
+	except :
+		pass
+
+return ucn + str(nMax + 1)
\ No newline at end of file
diff --git a/skins/control/lazy_edit_metadata.py b/skins/control/lazy_edit_metadata.py
new file mode 100644
index 0000000..1560836
--- /dev/null
+++ b/skins/control/lazy_edit_metadata.py
@@ -0,0 +1,8 @@
+##parameters=
+form = context.REQUEST.form.copy()
+form.pop('ajax', None)
+pathAndpropName, value = form.popitem()
+path, propName = pathAndpropName.split('//')
+ob = context.restrictedTraverse(path)
+ob.editMetadata(**{propName:value})
+return getattr(ob, propName)
\ No newline at end of file
diff --git a/skins/control/member_registration_modify.py b/skins/control/member_registration_modify.py
new file mode 100755
index 0000000..1515e5e
--- /dev/null
+++ b/skins/control/member_registration_modify.py
@@ -0,0 +1,58 @@
+## Script (Python) "member_registration_modify"
+##parameters=members=[], register=None, reject=None, ajax=''
+##title=Modify the status of a content object
+
+from Products.CMFCore.utils import getToolByName
+from ZTUtils import make_query as mq
+req = context.REQUEST
+resp = req.RESPONSE
+
+utool = getToolByName(context, 'portal_url')
+portal = utool.getPortalObject()
+mtool = getToolByName(portal, 'portal_membership')
+
+workflow_action = ''
+wfkw = {}
+
+if register :
+	members = [ mtool.getMemberById(entry['id']) for entry in members if entry.has_key('checked') ]
+	workflow_action = 'register'
+	nbMembers = len(members)
+	if not nbMembers :
+		message = 'Please select at least one member.'
+	elif nbMembers == 1 :
+		message = 'Member registered.'
+	else :
+		message = 'Members registered.'
+
+elif reject :
+	# handle form from reject_member_form
+	members = [ mtool.getMemberById(entry['id']) for entry in members if entry.has_key('checked') ]
+	workflow_action = 'reject'
+	form = req.form
+	wfkw['subject'] = form.get('subject', '')
+	wfkw['body'] = form.get('body', '')
+	message = 'Registration rejected.'
+
+else :
+	for m in members :
+		if m.has_key('reject') :
+			resp.redirect('%s/reject_member_form?%s' % ( portal.absolute_url(),
+																	 mq(id=m['id'], ajax=ajax) ))
+			return
+	raise ValueError, 'No action selected.'
+
+wtool = getToolByName(portal, 'portal_workflow')
+
+for m in members:
+	wtool.doActionFor(m, workflow_action, wf_id = 'member_workflow', **wfkw)
+
+
+
+if ajax :
+	query = mq(portal_status_message=message, ajax='1', syncFragments=['rightCell'] )
+else :
+	query = mq(portal_status_message=message)
+redirect_url =	portal.absolute_url() + '/pending_members?'+ query
+
+resp.redirect( redirect_url )
\ No newline at end of file
diff --git a/skins/control/moveObjectIdToPosition.py b/skins/control/moveObjectIdToPosition.py
new file mode 100644
index 0000000..1aae1be
--- /dev/null
+++ b/skins/control/moveObjectIdToPosition.py
@@ -0,0 +1,5 @@
+## Script (Python) "moveObjectIdToPosition"
+##title=Move object id to position
+##parameters=object_id, position
+
+context.moveObjectToPosition(object_id, position)
diff --git a/skins/control/remove_group_roles.py b/skins/control/remove_group_roles.py
new file mode 100755
index 0000000..d64394c
--- /dev/null
+++ b/skins/control/remove_group_roles.py
@@ -0,0 +1,20 @@
+##parameters=groupId, roles=[], ajax='', REQUEST=None
+
+aclu = context.aq_inner.acl_users
+prefix = aclu.getGroupPrefix()
+group = context.portal_groups.getGroupById(groupId)
+newRoles = [role for role in group.getUserRoles() if role not in roles]
+
+try :
+	prefixLen = len(prefix)
+	groups = [ g[prefixLen:] for g in group.getGroups(no_recurse = 1) ]
+except :
+	groups = []
+
+aclu.changeUser(groupId, groups = groups, roles = newRoles )
+
+if REQUEST is not None :
+	from ZTUtils import make_query as mq
+	url = context.portal_url()
+	red = REQUEST.RESPONSE.redirect
+	return red('%s/group_data?%s' % (url, mq(group=groupId, ajax=ajax)))
\ No newline at end of file
diff --git a/skins/control/remove_groups.py b/skins/control/remove_groups.py
new file mode 100755
index 0000000..9e8909f
--- /dev/null
+++ b/skins/control/remove_groups.py
@@ -0,0 +1,15 @@
+##parameters=groups=[], ajax=''
+sd = context.session_data_manager.getSessionData()
+groupPrefix = context.acl_users.getGroupPrefix()
+prefixLenght = len(groupPrefix)
+
+if sd is not None :
+	if sd.has_key('requestedGroup') and sd['requestedGroup'] in groups :
+		sd['requestedGroup'] = None
+
+context.portal_groups.removeGroups([ groupId[prefixLenght:] for groupId in groups], keep_workspaces=1)
+from ZTUtils import make_query as mq
+url = context.portal_url()
+red = context.REQUEST.RESPONSE.redirect
+msg = not groups and 'Please select one or more groups before.' or (len(groups) == 1 and 'Group deleted.' or 'Groups deleted.')
+return red('%s/portal_all_groups?%s' % (url, mq(portal_status_message=msg, ajax=ajax)))
diff --git a/skins/control/remove_groups_in_group.py b/skins/control/remove_groups_in_group.py
new file mode 100755
index 0000000..10353c6
--- /dev/null
+++ b/skins/control/remove_groups_in_group.py
@@ -0,0 +1,10 @@
+##parameters=groupId, remove_groups=[], ajax='', REQUEST=None
+
+gtool = context.portal_groups
+group = gtool.getGroupById(groupId)
+
+for id in remove_groups :
+	group.removeGroup(id)
+
+if REQUEST is not None :
+	return context.REQUEST. RESPONSE.redirect('%s/groups_members?group=%s&ajax=%s#assign_groups' % (context.portal_url(), groupId, ajax))
\ No newline at end of file
diff --git a/skins/control/remove_object.py b/skins/control/remove_object.py
new file mode 100644
index 0000000..f50b751
--- /dev/null
+++ b/skins/control/remove_object.py
@@ -0,0 +1,7 @@
+##parameters=ajax=''
+parent = context.aq_parent
+parent.manage_delObjects(context.id)
+
+context.getOrSetSessionVar('slink_mode', 'view')
+context.setStatus(True, 'Object deleted.')
+return context.setRedirect(parent, 'object/view', ajax=ajax)
\ No newline at end of file
diff --git a/skins/control/remove_users_in_group.py b/skins/control/remove_users_in_group.py
new file mode 100755
index 0000000..0d1a353
--- /dev/null
+++ b/skins/control/remove_users_in_group.py
@@ -0,0 +1,8 @@
+##parameters=groupId, remove_members=[], ajax='', REQUEST=None
+groupsTool = context.portal_groups
+group = groupsTool.getGroupById(groupId)
+
+for memberId in remove_members :
+	group.removeMember(memberId)
+if REQUEST is not None :
+	return context.REQUEST. RESPONSE.redirect('%s/groups_members?group=%s&ajax=%s#assign_members' % (context.portal_url(), groupId, ajax))
\ No newline at end of file
diff --git a/skins/control/remove_users_in_local_role.py b/skins/control/remove_users_in_local_role.py
new file mode 100755
index 0000000..c24c237
--- /dev/null
+++ b/skins/control/remove_users_in_local_role.py
@@ -0,0 +1,15 @@
+##parameters=role, redirect, remove_members=[], ajax=''
+from ZTUtils import make_query as mq
+red = context.REQUEST.RESPONSE.redirect
+url = context.absolute_url()
+
+if remove_members :
+	try :
+		context.portal_membership.setLocalRoles(context, remove_members, role, remove=1)
+	except :
+		msg = "You are not allowed to manage this role in this context."
+		sd = context.session_data_manager.getSessionData(create = 1)
+		sd.update({'roleToManage' : None})
+		return red('%s/%s?%s' % (url, redirect, mq(portal_status_message = msg, ajax=ajax)))
+
+return red('%s/%s?%s' % (url, redirect, mq(roleToManage=role, ajax=ajax)))
diff --git a/skins/control/reply_add_control.py b/skins/control/reply_add_control.py
new file mode 100644
index 0000000..1bd2c69
--- /dev/null
+++ b/skins/control/reply_add_control.py
@@ -0,0 +1,11 @@
+##parameters=title, text, **kw
+title = title.strip()
+text = text.strip()
+
+if title and text :
+	try : talkback = context.talkback
+	except : talkback = context.portal_discussion.getDiscussionFor(context)
+	replyId = talkback.createReply(title=title, text=text)
+	return context.setStatus(replyId, 'Comment added.')
+else :
+	return context.setStatus(False, 'You must enter a title and body.')
\ No newline at end of file
diff --git a/skins/control/restore_revision.py b/skins/control/restore_revision.py
new file mode 100755
index 0000000..16eb3f8
--- /dev/null
+++ b/skins/control/restore_revision.py
@@ -0,0 +1,10 @@
+##parameters=key, ajax=''
+from Products.Plinn.utils import getAdapterByInterface, translate
+def _(message) : return translate(message, context).encode('utf-8')
+req = context.REQUEST
+
+history = getAdapterByInterface(context, 'Products.Plinn.interfaces.IContentHistory')
+history.restore(key)
+
+req.other['portal_status_message'] = _("%(type)s restored.") % {'type':context.getPortalTypeName()}
+context.setRedirect(context, 'object/view', ajax=ajax, syncFragments = ['Breadcrumbs'])
\ No newline at end of file
diff --git a/skins/control/save_search_as_topic.py b/skins/control/save_search_as_topic.py
new file mode 100755
index 0000000..ec9c355
--- /dev/null
+++ b/skins/control/save_search_as_topic.py
@@ -0,0 +1,25 @@
+##parameters=
+from Products.CMFCore.utils import getToolByName
+from Products.Plinn.utils import makeValidId
+from Products.Plinn.utils import translate
+_ = lambda msg: translate(msg, context)
+mtool = getToolByName(context, 'portal_membership')
+homedir = mtool.getHomeFolder()
+
+form = context.REQUEST.form.copy()
+for k, v in form.items() :
+	if hasattr(v, 'has_key') :
+		form[k] = dict(v)
+
+title = form.pop('topic_title')
+topic_id = makeValidId(homedir, title)
+id = homedir.invokeFactory('Topic', topic_id, title=title)
+topic = getattr(homedir, id)
+topic.loadSearchQuery(form)
+
+context.setStatus(True, _('Topic added.'))
+try :
+	ajax = form.pop('ajax')
+except KeyError :
+	ajax = ''
+return context.setRedirect(topic, 'object/view', ajax=ajax, syncFragments = ['Breadcrumbs', 'rightCell'])
diff --git a/skins/control/send_email.py b/skins/control/send_email.py
new file mode 100644
index 0000000..35b3d82
--- /dev/null
+++ b/skins/control/send_email.py
@@ -0,0 +1,77 @@
+##parameters= other_adr=[], batchM=[], customized_batch={}, expand='', collapse='', subject='', text_body='', wfid=None, send_fields={}, ajax=''
+recipients = {'to':[], 'cc':[], 'bcc':[]}
+if expand or collapse :
+	if expand :
+		expand = expand.keys()[0]
+	return context.send_email_form(other_adr=other_adr, expand=expand,
+								   batchM=batchM, customized_batch=customized_batch,
+								   subject=subject, text_body=text_body,
+								   send_fields=send_fields)
+if batchM :
+	rolesAndMembers = dict(context.getRecipients())
+	for role in batchM :
+		field = send_fields[role]
+		recipients[field].extend( [m.id for m in rolesAndMembers[role]] )
+
+for role, b in customized_batch.items() :
+	field = send_fields[role]
+	recipients[field].extend( b )
+
+
+other_adr = filter(None, other_adr)
+if not (reduce(lambda a, b : a+b, recipients.values()) or other_adr)  :
+	context.setStatus(False, 'No email sent : no recipient specified.')
+	return context.setRedirect(context, 'object/view')
+
+portal = context.portal_url.getPortalObject()
+mtool = portal.portal_membership
+MailHost = portal.MailHost
+
+from quopri import encodestring
+
+def encodeAdr(member) :
+	name = member.getMemberFullName(nameBefore=0)
+	email = member.getProperty('email')
+	qpName = encodestring(name).replace('=\n', '')
+	return '''"=?utf-8?q?%s?=" <%s>''' % (qpName, email)
+
+sender = mtool.getAuthenticatedMember()
+sender = encodeAdr(sender)
+
+if other_adr :
+	recipients['to'].extend(other_adr)
+
+recipientsFormated = {'to':'', 'cc':'', 'bcc':''}
+for field, b in recipients.items() :
+	formated = map(encodeAdr, mtool.getMembers(b))
+	formated = filter(None, formated)
+	formated = ', '.join(formated)
+	recipientsFormated[field] = formated
+	
+recipientsHeader = []
+for field in ['to', 'cc', 'bcc'] :
+	value = recipientsFormated[field]
+	if value :
+		recipientsHeader.append('%s: %s' % (field.capitalize(), value))
+
+recipientsHeader = '\n'.join(recipientsHeader)	
+
+message = context.echange_mail_template(  From = sender
+										, recipients = recipientsHeader
+										, Subject = "=?utf-8?q?%s?=" % encodestring(subject).replace('=\n', '')
+										, ContentType = 'text/plain'
+										, charset = 'UTF-8'
+										, body=text_body)
+
+MailHost.send( message.encode('utf-8') )
+
+if wfid is not None :
+	wtool = portal.portal_workflow
+	email_sent = reduce(lambda a, b : a+b, recipients.values())
+	email_sent.extend(other_adr)
+	wtool.doActionFor(context, 'send_email', wf_id=wfid,
+					  email_sent=email_sent,
+					  comment=text_body)
+
+context.setStatus(True, 'Email sent.')
+return context.setRedirect(context, 'object/view', ajax=ajax)
\ No newline at end of file
diff --git a/skins/control/setAndGetSessionVar.py b/skins/control/setAndGetSessionVar.py
new file mode 100755
index 0000000..9a4eb15
--- /dev/null
+++ b/skins/control/setAndGetSessionVar.py
@@ -0,0 +1,9 @@
+##parameters=key, value, allowFalse = 1
+sd = context.session_data_manager.getSessionData(create = 1)
+if allowFalse :
+	sd[key] = value
+	return value
+else :
+	if value :
+		sd[key] = value
+	return sd.get(key, None)
\ No newline at end of file
diff --git a/skins/control/topic_add_criterion_control.py b/skins/control/topic_add_criterion_control.py
new file mode 100644
index 0000000..0c0406f
--- /dev/null
+++ b/skins/control/topic_add_criterion_control.py
@@ -0,0 +1,15 @@
+## Script (Python) "topic_addCriterion"
+##bind container=container
+##bind context=context
+##bind namespace=
+##bind script=script
+##bind subpath=traverse_subpath
+##parameters=field, criterion_type, **kw
+##title=
+##
+
+try :
+	context.addCriterion(field=field, criterion_type=criterion_type)
+	return context.setStatus(True, 'Criterion added.')
+except :
+	return context.setStatus(False, 'Criterion adding canceled.')
\ No newline at end of file
diff --git a/skins/control/topic_delete_criteria_control.py b/skins/control/topic_delete_criteria_control.py
new file mode 100644
index 0000000..9602d36
--- /dev/null
+++ b/skins/control/topic_delete_criteria_control.py
@@ -0,0 +1,11 @@
+##parameters=criterion_ids=[], **kw
+
+if criterion_ids :
+	for cid in criterion_ids :
+		context.deleteCriterion(cid)
+	if len(criterion_ids) > 1 :
+		return context.setStatus(True, 'Criteria deleted.')
+	else :
+		return context.setStatus(True, 'Criterion deleted.')
+else :
+	return context.setStatus(False, 'Please select one ore more criteria first.')
diff --git a/skins/control/topic_edit_criteria_control.py b/skins/control/topic_edit_criteria_control.py
new file mode 100644
index 0000000..d4ee1da
--- /dev/null
+++ b/skins/control/topic_edit_criteria_control.py
@@ -0,0 +1,27 @@
+##parameters=criteria, **kw
+
+"""\
+Save changes to the list of criteria.  This is done by going over
+the submitted criteria records and comparing them against the
+criteria object's editable attributes. A 'command' object is
+built to send to the Criterion objects 'apply' method, which in turn
+applies the command to the Criterion objects 'edit' method.
+"""
+
+for rec in criteria:
+	crit = context.getCriterion(rec.id)
+	command = {}
+	for attr in crit.editableAttributes():
+		tmp = getattr(rec, attr, None)
+		# Due to having multiple radio buttons on the same page
+		# with the same name but belonging to different records,
+		# they needed to be associated with different records with ids
+		if tmp is None:
+			tmp = getattr(rec, '%s__%s' % (attr, rec.id), None)
+		command[attr] = tmp
+	crit.apply(command)
+
+if kw.has_key('acquireCriteria') :
+	context.edit(kw['acquireCriteria'])
+
+return context.setStatus(True, "Changes saved.")
\ No newline at end of file
diff --git a/skins/custom_content/content_status_history.pt b/skins/custom_content/content_status_history.pt
new file mode 100644
index 0000000..48cdd85
--- /dev/null
+++ b/skins/custom_content/content_status_history.pt
@@ -0,0 +1,20 @@
+<html metal:use-macro="here/main_template/macros/master">
+
+  <head>
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8" />
+    <title>content_status_history</title>
+  </head>
+
+  <body metal:fill-slot="main" tal:omit-tag="" i18n:domain="plinn">
+  	<h2 i18n:translate="">Reviewing history</h2>
+  	<table>
+  		<tr>
+  			<th i18n:translate="">Current state:</th>
+			  <td tal:content="python:wtool.getInfoFor(here, 'review_state')" i18n:translate=""></td>
+  		</tr>
+  	</table>
+  	<br />
+  	<div metal:use-macro="here/wf_macros/macros/default_workflow">default_workflow history</div>
+  </body>
+
+</html>
\ No newline at end of file
diff --git a/skins/custom_content/discussionitem_view.pt b/skins/custom_content/discussionitem_view.pt
new file mode 100644
index 0000000..5de6c65
--- /dev/null
+++ b/skins/custom_content/discussionitem_view.pt
@@ -0,0 +1,35 @@
+<html metal:use-macro="here/main_template/macros/master">
+<head>
+  <meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
+ <metal:slot fill-slot="base"
+ ><tal:span tal:replace="structure here/getBaseTag"
+/></metal:slot>
+</head>
+<body>
+
+<metal:slot metal:fill-slot="header">
+
+  <h1 id="DesktopTitle"
+      tal:content="here/Title">Document Title</h1>
+
+  <div id="DesktopDescription" tal:content="here/Description">
+      Document Description goes here.
+  </div>
+
+</metal:slot>
+
+<div metal:fill-slot="main" i18n:domain="plinn" tal:omit-tag="">
+
+  <div id="DiscussionAbove" tal:define="parents context/parentsInThread">
+   <span i18n:translate="" tal:omit-tag="">Above in thread:</span>
+   <span tal:repeat="p parents" tal:omit-tag=""><a tal:attributes="href p/absolute_url" tal:content="p/title_or_id">parent</a><span><img tal:attributes="src string:${portal_url}/fleche_bc.gif" tal:condition="not:repeat/p/end" width="11" height="14" /></span></span>
+  </div>
+
+  <div tal:replace="structure here/CookedBody">Body</div>
+  <div class="Discussion">
+    <div metal:use-macro="here/viewThreadsAtBottom/macros/threadsDisplay" />
+  </div>
+</div>
+
+</body>
+</html>
diff --git a/skins/custom_content/document_edit_form.py b/skins/custom_content/document_edit_form.py
new file mode 100644
index 0000000..82602ec
--- /dev/null
+++ b/skins/custom_content/document_edit_form.py
@@ -0,0 +1,34 @@
+##parameters=change='', change_and_view='', ajax=''
+##
+form = context.REQUEST.form
+text = form.get('text')
+if text and same_type(text, []) :
+	# when javascript is disabled,
+	# there's a hidden textarea from epoz
+	# and an other from <noscript> tag
+	form.update({'text' : text[1]}) 
+
+if change and \
+		context.validateTextFile(**form) and \
+		context.validateHTML(**form) and \
+		context.document_edit_control(**form) and \
+		context.setRedirect(context, 'object/edit', **{'ajax':ajax}):
+	return
+elif change_and_view and \
+		context.validateTextFile(**form) and \
+		context.validateHTML(**form) and \
+		context.document_edit_control(**form) and \
+		context.setRedirect(context, 'object/view', **{'ajax':ajax}):
+	return
+
+
+options = {}
+
+buttons = []
+target = context.getActionInfo('object/edit')['url']
+buttons.append( {'name': 'change', 'value': 'Change'} )
+buttons.append( {'name': 'change_and_view', 'value': 'Change and View'} )
+options['form'] = { 'action': target,
+					'listButtonInfos': tuple(buttons) }
+
+return context.document_edit_template(**options)
diff --git a/skins/custom_content/document_edit_template.pt b/skins/custom_content/document_edit_template.pt
new file mode 100755
index 0000000..f02bd14
--- /dev/null
+++ b/skins/custom_content/document_edit_template.pt
@@ -0,0 +1,58 @@
+<html xmlns="http://www.w3.org/1999/xhtml" metal:use-macro="here/main_template/macros/master">
+
+  <head>
+    <title>Document edit form</title>
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8" />
+    <link href="zpt_stylesheet.css" rel="stylesheet" media="screen"/>
+  </head>
+
+  <body>
+    <div i18n:domain="cmf_default">
+      <div metal:fill-slot="header">
+        <div metal:use-macro="here/widgets/macros/generic_header">
+          generic_header macro
+        </div>
+      </div>
+      <div id="Desktop">
+        <div metal:fill-slot="main">
+          <form action="document_edit_form" method="post" enctype="multipart/form-data"
+          			tal:attributes="action string:${here/absolute_url}/document_edit_form">
+            <table class="FormLayout">
+              <tr>
+                <td class="TextField" colspan="2" i18n:translate="">
+                  <div tal:define="inputname string:text; formname string:edit_form; inputvalue here/text" tal:omit-tag="">
+                    <div metal:use-macro="here/wysiwyg_support/macros/wysiwygEditorBox">
+                      Wysiwig Code
+                    </div>
+                  </div>
+                </td>
+              </tr>
+              <tr>
+                <td colspan="2">
+                  <div metal:use-macro="here/wysiwyg_support/macros/textFormatSelector">
+                    Format box, if needed
+                  </div>
+                </td>
+              </tr>
+              <!--
+              <tr>
+                <th nowrap="nowrap" i18n:translate="">External file</th>
+                <td width="100%">
+                  <input type="file" name="file" size="25" />
+                </td>
+              </tr>
+              -->
+              <tr>
+              	<td><br /></td>
+                <td width="100%">
+                  <input type="submit" name="change_and_view" value="Change and View" i18n:attributes="value" />
+                </td>
+              </tr>
+            </table>
+          </form>
+        </div>
+      </div>
+    </div>
+  </body>
+
+</html>
\ No newline at end of file
diff --git a/skins/custom_content/document_view.pt b/skins/custom_content/document_view.pt
new file mode 100755
index 0000000..7f95af7
--- /dev/null
+++ b/skins/custom_content/document_view.pt
@@ -0,0 +1,14 @@
+<html metal:use-macro="here/main_template_view/macros/master">
+  <head>
+    <title>Document view</title>
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
+    <base href="." metal:fill-slot="base" tal:attributes="href python: here.absolute_url() + '/'" />
+  </head>
+<body>
+
+<div metal:fill-slot="main" tal:omit-tag="">
+  <div tal:replace="structure here/CookedBody">Cooked Body</div>
+</div>
+
+</body>
+</html>
diff --git a/skins/custom_content/event_edit_form.py b/skins/custom_content/event_edit_form.py
new file mode 100644
index 0000000..6a53a9f
--- /dev/null
+++ b/skins/custom_content/event_edit_form.py
@@ -0,0 +1,51 @@
+##parameters=change='', change_and_view='', ajax=''
+##
+form = context.REQUEST.form
+if change and \
+		context.event_edit_control(**form) and \
+		context.setRedirect(context, 'object/edit', ajax=ajax):
+	return
+elif change_and_view and \
+		context.event_edit_control(**form) and \
+		context.setRedirect(context, 'object/view', ajax=ajax):
+	return
+
+
+options = {}
+buttons = []
+formFields = {}
+
+formFields['title']			= form.get('title', context.Title()).strip()
+formFields['location']		= form.get('location', context.location)
+formFields['contact_name']	= form.get('contact_name', context.contact_name)
+formFields['contact_email']	= form.get('contact_email', context.contact_email)
+formFields['contact_phone']	= form.get('contact_phone', context.contact_phone)
+formFields['event_type']	= form.get('event_type', context.Subject())
+formFields['description']	= form.get('description', context.Description())
+formFields['event_url']		= form.get('event_url', context.event_url)
+
+start_date = context.start_date and context.start_date or context.end_date
+formFields['start_date'] = {'year'	: start_date.year(),
+							'month'	: str(start_date.month()).zfill(2),
+							'day'	: str(start_date.day()).zfill(2),
+							'hour'	: str(start_date.hour()).zfill(2),
+							'minute': str(start_date.minute()).zfill(2)}
+
+end_date = context.end_date
+formFields['end_date'] = {'year'	: end_date.year(),
+						  'month'	: str(end_date.month()).zfill(2),
+						  'day'		: str(end_date.day()).zfill(2),
+						  'hour'	: str(end_date.hour()).zfill(2),
+						  'minute'	: str(end_date.minute()).zfill(2)}
+
+
+
+target = context.getActionInfo('object/edit')['url']
+buttons.append( {'name': 'change', 'value': 'Change'} )
+buttons.append( {'name': 'change_and_view', 'value': 'Change and View'} )
+options['form'] = { 'action': target,
+					'listButtonInfos': tuple(buttons),
+					'fields' : formFields }
+
+#return options['form']['fields']
+return context.event_edit_template(**options)
diff --git a/skins/custom_content/event_edit_template.pt b/skins/custom_content/event_edit_template.pt
new file mode 100644
index 0000000..7c6f1d6
--- /dev/null
+++ b/skins/custom_content/event_edit_template.pt
@@ -0,0 +1,143 @@
+<html xmlns="http://www.w3.org/1999/xhtml" metal:use-macro="container/main_template/macros/master">
+
+  <head>
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8" />
+		<div metal:fill-slot="javascript_head_slot">
+			<script type="text/javascript" tal:attributes="src string:$portal_url/calendar.js"></script>
+			<script type="text/javascript" tal:attributes="src string:$portal_url/lang/calendar-fr.js"></script>
+			<script type="text/javascript" tal:attributes="src string:$portal_url/calendar-setup.js"></script>
+			<script type="text/javascript" tal:attributes="src string:$portal_url/generic_header_script.js"></script>
+		</div>
+  </head>
+
+  <body i18n:domain="plinn">
+    <div metal:fill-slot="main"
+    		 tal:define="form options/form;
+    		 			 fields form/fields">
+      <form method="post" tal:attributes="action form/action">
+        <table class="TwoColumnForm" cellspacing="0">
+          <tr>
+            <th i18n:translate="" nowrap="nowrap">Event Name</th>
+            <td nowrap="nowrap">
+              <input type="text" name="title" value="Title" size="35" tal:attributes="value fields/title" maxlength="100" />
+            </td>
+            <th nowrap="nowrap" style="text-align:left" i18n:translate="">Event type</th>
+          </tr>
+          <tr>
+            <th i18n:translate="">Location</th>
+            <td nowrap="nowrap">
+              <input type="text" name="location" value="location" size="35" tal:attributes="value fields/location" maxlength="100" />
+            </td>
+            <td rowspan="4" nowrap="nowrap">
+              <select name="event_type:list" size="5" multiple="multiple" tal:define="contentSubject fields/event_type; allowedSubjects python:here.portal_metadata.listAllowedSubjects(here)">
+                <option value="subj" tal:repeat="subj allowedSubjects" tal:attributes="value subj; selected python:subj in contentSubject" tal:content="subj" i18n:translate="">Event Type N</option>
+              </select>
+            </td>
+          </tr>
+          <tr>
+            <th nowrap="nowrap" i18n:translate="">Contact Name</th>
+            <td nowrap="nowrap">
+              <input type="text" name="contact_name" value="contact_name" size="35" tal:attributes="value fields/contact_name" maxlength="100" />
+            </td>
+          </tr>
+          <tr>
+            <th nowrap="nowrap" i18n:translate="">Contact Email</th>
+            <td nowrap="nowrap">
+              <input type="text" name="contact_email" value="contact_email" size="35" tal:attributes="value fields/contact_email" maxlength="100" />
+            </td>
+          </tr>
+          <tr>
+            <th nowrap="nowrap" i18n:translate="">Contact Phone</th>
+            <td nowrap="nowrap">
+              <input id="cb_contact_phone" type="text" name="contact_phone" value="contact_phone" size="35" tal:attributes="value fields/contact_phone" maxlength="100" />
+            </td>
+          </tr>
+          <tr>
+            <th></th>
+            <td colspan="2">
+              <table>
+                <tr>
+                  <td>
+										<fieldset tal:define="start_date fields/start_date;
+										year start_date/year ;
+										month python:str(start_date['month']).zfill(2) ;
+										day python:str(start_date['day']).zfill(2) ;
+										hour python:str(start_date['hour']).zfill(2) ;
+										minute python:str(start_date['minute']).zfill(2) ">
+										<legend i18n:translate="">Beginning</legend>
+										<div id="start_date_fields">
+											<input id="start_date" type="hidden" /><span i18n:translate="" tal:omit-tag=""
+											><span i18n:name="month"
+											><input id="start_date_month" type="text" name="start_date.month:record" size="2" tal:attributes="value month"
+											/></span>&nbsp;/&nbsp;<span i18n:name="day"
+											><input id="start_date_day" type="text" name="start_date.day:record" size="2" tal:attributes="value day"
+											/></span>&nbsp;/&nbsp;<span i18n:name="year"
+											><input id="start_date_year" type="text" name="start_date.year:record" size="4" tal:attributes="value year"
+											/></span>&nbsp;&nbsp;<span i18n:name="hour"
+											><input id="start_date_hour" type="text" name="start_date.hour:record" size="2" tal:attributes="value hour"
+											/></span>&nbsp;:&nbsp;<span i18n:name="minute"
+											><input id="start_date_minute" type="text" name="start_date.minute:record" size="2" tal:attributes="value minute"
+											/></span></span>
+											<input id="show_start_date_cal" type="button" value="..." /><br />
+										</div>
+										</fieldset>
+                  </td>
+                  <td>
+                    <fieldset tal:define="end_date fields/end_date;
+										year end_date/year ;
+										month python:str(end_date['month']).zfill(2) ;
+										day python:str(end_date['day']).zfill(2) ;
+										hour python:str(end_date['hour']).zfill(2) ;
+										minute python:str(end_date['minute']).zfill(2) ">
+										<legend i18n:translate="">End</legend>
+										<div id="end_date_fields">
+											<input id="end_date" type="hidden" /><span i18n:translate="" tal:omit-tag=""
+											><span i18n:name="month"
+											><input id="end_date_month" type="text" name="end_date.month:record" size="2" tal:attributes="value month"
+											/></span>&nbsp;/&nbsp;<span i18n:name="day"
+											><input id="end_date_day" type="text" name="end_date.day:record" size="2" tal:attributes="value day"
+											/></span>&nbsp;/&nbsp;<span i18n:name="year"
+											><input id="end_date_year" type="text" name="end_date.year:record" size="4" tal:attributes="value year"
+											/></span>&nbsp;&nbsp;<span i18n:name="hour"
+											><input id="end_date_hour" type="text" name="end_date.hour:record" size="2" tal:attributes="value hour"
+											/></span>&nbsp;:&nbsp;<span i18n:name="minute"
+											><input id="end_date_minute" type="text" name="end_date.minute:record" size="2" tal:attributes="value minute"
+											/></span></span>
+											<input id="show_end_date_cal" type="button" value="..." /><br />
+										</div>
+										</fieldset>
+                  </td>
+                </tr>
+              </table>
+            </td>
+          </tr>
+          <tr>
+            <th i18n:translate="">Description</th>
+            <td colspan="2" nowrap="nowrap">
+              <textarea name="description" rows="6" cols="55" tal:content="fields/description">Description</textarea>
+            </td>
+          </tr>
+          <tr>
+            <th i18n:translate="">Event URL</th>
+            <td colspan="2">
+              <input type="text" name="event_url" value="event_url" size="55" tal:attributes="value fields/event_url" maxlength="100" />
+            </td>
+          </tr>
+          <tr>
+            <th colspan="3">
+            	<script type="text/javascript">
+							//<!--
+							new MetadataDateManager('start_date', new Date("1969/12/31"));
+							new MetadataDateManager('end_date', new Date("1969/12/31"));
+            	//-->
+            	</script>
+            	<br />
+              <input type="submit" value="Save" name="change_and_view" i18n:attributes="value" />
+            </th>
+          </tr>
+        </table>
+      </form>
+    </div>
+  </body>
+
+</html>
\ No newline at end of file
diff --git a/skins/custom_content/event_view.pt b/skins/custom_content/event_view.pt
new file mode 100644
index 0000000..77c22b5
--- /dev/null
+++ b/skins/custom_content/event_view.pt
@@ -0,0 +1,69 @@
+<html metal:use-macro="container/main_template_view/macros/master">
+  <head>
+    <title>event view</title>
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
+  </head>
+
+  <body>
+    <div metal:fill-slot="main" i18n:domain="plinn">
+                      <table class="FormLayout">
+                <tr>
+                    <th i18n:translate="" nowrap="nowrap">Event Name</th>
+                    <td nowrap="nowrap" tal:content="here/Title">Title</td>
+                    <th nowrap="nowrap" i18n:translate="">Contact Name</th>
+                    <td nowrap="nowrap" tal:content="here/contact_name">contact_name</td>
+                </tr>
+                <tr>
+                    <th nowrap="nowrap" i18n:translate="">Location</th>
+                    <td nowrap="nowrap" tal:content="here/location">location</td>
+                    <th nowrap="nowrap" i18n:translate="">Contact Email</th>
+                    <td nowrap="nowrap"                         tal:condition="here/contact_email">
+                        <a tal:attributes="href python:'mailto:' + here.contact_email"
+                        tal:content="here/contact_email"
+                        href="mailto:contact_email">contact_email</a>
+                    </td>
+                </tr>
+                <tr>
+                    <th nowrap="nowrap" i18n:translate="">Event type</th>
+                    <td valign="top" nowrap="nowrap"><span tal:repeat="s here/Subject" tal:omit-tag=""><span tal:content="s" i18n:translate="" tal:omit-tag="">subject</span><span tal:condition="not:repeat/s/end" tal:omit-tag="">, </span></span></td>
+                    <th nowrap="nowrap" i18n:translate="">Contact Phone</th>
+                    <td nowrap="nowrap" tal:content="here/contact_phone">contact_phone</td>
+                </tr>
+                <tr tal:condition="here/event_url|nothing">
+                    <th nowrap="nowrap" i18n:translate="">Event URL</th>
+                    <td colspan="3" nowrap="nowrap"><a href="event_url"
+        tal:attributes="href here/event_url"
+        tal:content="here/event_url">event_url</a></td>
+                </tr>
+                <tr>
+                    <td colspan="4">
+                    <hr>
+                    </td>
+                </tr>
+        <tr>
+                    <th nowrap="nowrap" i18n:translate="">Start Date</th>
+                    <td tal:content="python:here.start().strftime(locale_date_fmt)">
+                    start
+                    </td>
+
+                    <th nowrap="nowrap" i18n:translate=""> Stop Date </th>
+                    <td tal:content="python:here.end().strftime(locale_date_fmt)">
+                    end
+                    </td>
+                </tr>
+        <tr>
+                    <td colspan="4"><hr></td></tr>
+        <tr>
+                    <th i18n:translate="">Description</th>
+                    <td colspan="3"
+                        tal:content="here/Description">Description</td>
+                </tr>
+                <tr>
+                    <td colspan="4">&nbsp;</td>
+                </tr>
+                </table>
+
+    </div>
+    </body>
+
+</html>
diff --git a/skins/custom_content/favorite_view.pt b/skins/custom_content/favorite_view.pt
new file mode 100755
index 0000000..737ffbb
--- /dev/null
+++ b/skins/custom_content/favorite_view.pt
@@ -0,0 +1,20 @@
+<html metal:use-macro="here/main_template_view/macros/master">
+  <head>
+    <title>Favorite view</title>
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
+    <base href="" metal:fill-slot="base" tal:attributes="href python: here.absolute_url() + '/'" />
+  </head>
+<body>
+
+<div metal:fill-slot="main" i18n:domain="cmf_default">
+
+ <p i18n:translate="">Link: <a href=""
+              tal:attributes="href here/getRemoteUrl"
+              tal:content="here/getRemoteUrl"
+              i18n:name="link"
+           >/index_html</a></p>
+</div>
+
+</body>
+</html>
+
diff --git a/skins/custom_content/file_edit_template.pt b/skins/custom_content/file_edit_template.pt
new file mode 100755
index 0000000..042fcc0
--- /dev/null
+++ b/skins/custom_content/file_edit_template.pt
@@ -0,0 +1,48 @@
+<html metal:use-macro="here/main_template/macros/master">
+
+  <head>
+    <title>File Edit Form</title>
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
+  </head>
+
+  <body>
+    <div i18n:domain="cmf_default">
+      <div metal:fill-slot="header">
+        <div metal:use-macro="here/widgets/macros/generic_header">
+          generic_header
+        </div>
+      </div>
+
+      <div class="Desktop" metal:fill-slot="main">
+        <form action="file_edit_form" method="post" enctype="multipart/form-data" tal:attributes="action options/form/action">
+        	<input type="hidden" name="noAjax" value="1" />
+          <table class="FormLayout">
+            <tr>
+              <th i18n:translate="">Size</th>
+              <td tal:define="sizeHr python:here.sizehr(here.size)">
+              	<span tal:replace="sizeHr/value">12.34</span> <span tal:replace="sizeHr/unit">Ko</span>
+              </td>
+            </tr>
+            <tr>
+              <th i18n:translate="">Content type</th>
+              <td tal:content="here/Format">html/text</td>
+            </tr>
+            <tr>
+              <th i18n:translate="">Upload file</th>
+              <td>
+                <input type="file" name="file" size="35" />
+              </td>
+            </tr>
+            <tr>
+              <td><br /></td>
+              <td>
+                <input type="submit" name="change_and_view" value="Change and View" i18n:attributes="value" />
+              </td>
+            </tr>
+          </table>
+        </form>
+      </div>
+    </div>
+  </body>
+
+</html>
\ No newline at end of file
diff --git a/skins/custom_content/file_view.pt b/skins/custom_content/file_view.pt
new file mode 100755
index 0000000..50045ab
--- /dev/null
+++ b/skins/custom_content/file_view.pt
@@ -0,0 +1,59 @@
+<html xmlns="http://www.w3.org/1999/xhtml" metal:use-macro="here/main_template_view/macros/master">
+
+  <head>
+  <base metal:fill-slot="base" tal:attributes="href python: here.absolute_url() + '/'" />
+    <title>File document view</title>
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
+  </head>
+  <body>
+    <div metal:fill-slot="main" i18n:domain="cmf_default">
+      <h2 i18n:translate="">File Properties</h2>
+      <table>
+        <tr>
+          <th align="right" i18n:translate="">
+            Size
+          </th>
+          <td tal:define="sizeHr python:here.sizehr(here.size)">
+          	<span tal:replace="sizeHr/value">12.34</span> <span tal:replace="sizeHr/unit">Ko</span>
+          </td>
+        </tr>
+        <tr>
+          <th align="right" i18n:translate="">
+            Content-type
+          </th>
+          <td tal:content="here/content_type">
+            application/gzip
+          </td>
+        </tr>
+        <tr>
+          <td>
+            <br />
+          </td>
+          <td></td>
+        </tr>
+      </table>
+      <table>
+       <col width="50%" span="2" />
+        <tr>
+          <td>
+            <h2 i18n:translate="">Download File</h2>
+          </td>
+          <td>
+            <h2 i18n:translate="">Web Preview</h2>
+          </td>
+        </tr>
+          <tr>
+          <td style="padding-right:3em;">
+            <a title="Download File" href="." tal:attributes="href file; title here/Title" tal:define="file string:${here/absolute_url}/download" target="_blank" i18n:translate="">Download : &laquo;&nbsp;<span tal:content="here/title_or_id" tal:omit-tag="" i18n:name="file_title">File title</span>&nbsp;&raquo;</a>
+          </td>
+          <td>
+            <a href="." tal:attributes="href string:${here/absolute_url}/file_preview" target="_blank" i18n:translate="">Preview</a>
+          </td>
+        </tr>
+        
+        
+      </table>
+    </div>
+  </body>
+
+</html>
\ No newline at end of file
diff --git a/skins/custom_content/friendlydatec_editform.pt b/skins/custom_content/friendlydatec_editform.pt
new file mode 100644
index 0000000..7eb56a2
--- /dev/null
+++ b/skins/custom_content/friendlydatec_editform.pt
@@ -0,0 +1,50 @@
+<table class="TwoColumnForm" i18n:domain="plinn"
+			 tal:define="bgcolor here/base_properties/contentBackgroundColor"
+			 tal:attributes="style string:background-color:$bgcolor">
+  <tr>
+  	<td>
+      <input id="" type="checkbox" name="criterion_ids:list" value=""
+      			 tal:attributes="value here/getId; id string:cb_${here/getId}"/>
+      <input type="hidden" name="criteria.id:records" value="" tal:attributes="value here/getId"/>
+    </td>
+    <td>
+    	<fieldset>
+    		<legend tal:content="string:catalog_index_${here/Field}" i18n:translate="">Field name</legend>
+		    <select name="criteria.operation:records">
+		     <option value="min"
+		             tal:attributes="selected python:here.operation=='min'"
+		             i18n:translate="">At the least:</option>
+		     <option value="max"
+		             tal:attributes="selected python:here.operation=='max'"
+		             i18n:translate="">At the most:</option>
+		     <option value="within_day"
+		             tal:attributes="selected python:here.operation=='within_day'"
+		             i18n:translate="">Within the day:</option>
+		    </select>
+		
+		   <select name="criteria.value:records"
+		           tal:define="dateoptions here/defaultDateOptions">
+		     <option value=""
+		        tal:repeat="doption dateoptions"
+		        tal:attributes="value python:doption[0];
+		                        selected python:here.value == doption[0];
+		                       "
+		        tal:content="python:doption[1]"
+		        i18n:translate="">Date Option</option>
+		   </select>
+		
+		    <select name="criteria.daterange:records">
+		     <option value="old"
+		             tal:attributes="selected python:here.daterange == 'old'"
+		             i18n:translate="daterange_old">old</option>
+		     <option value="ahead"
+		             tal:attributes="selected python:here.daterange == 'ahead'"
+		             i18n:translate="daterange_ahead">ahead</option>
+		    </select>
+    		<dl class="FieldHelp">
+			    <dd tal:content="here/dateCriterionResolvedDescription|here/Description" i18n:translate="">Criterion description</dd>
+				</dl>
+    	</fieldset>
+    </td>
+  </tr>
+</table>
\ No newline at end of file
diff --git a/skins/custom_content/image_edit_template.pt b/skins/custom_content/image_edit_template.pt
new file mode 100644
index 0000000..43b6630
--- /dev/null
+++ b/skins/custom_content/image_edit_template.pt
@@ -0,0 +1,38 @@
+<html xmlns="http://www.w3.org/1999/xhtml" metal:use-macro="context/main_template/macros/master">
+  <head>
+    <title>image edit template</title>
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
+  </head>
+  <body>
+    <div metal:fill-slot="header">
+      <div metal:use-macro="here/widgets/macros/generic_header">
+        generic_header macro
+      </div>
+    </div>
+    <div metal:fill-slot="main" i18n:domain="cmf_default" tal:define="form options/form" tal:omit-tag="">
+      <div class="Desktop">
+        <form action="image_edit_form" method="post" enctype="multipart/form-data" tal:attributes="action form/action">
+          <table class="FormLayout">
+            <tr>
+              <th i18n:translate="">
+                Upload image
+              </th>
+              <td>
+                <input type="file" name="file" size="25" />
+              </td>
+            </tr>
+            <tr>
+              <td>
+                 
+              </td>
+              <td>
+                <metal:macro metal:use-macro="context/form_widgets/macros/buttons" />
+              </td>
+            </tr>
+          </table>
+        </form>
+      </div>
+    </div>
+  </body>
+
+</html>
\ No newline at end of file
diff --git a/skins/custom_content/image_view.pt b/skins/custom_content/image_view.pt
new file mode 100755
index 0000000..33c0aac
--- /dev/null
+++ b/skins/custom_content/image_view.pt
@@ -0,0 +1,12 @@
+<html metal:use-macro="here/main_template_view/macros/master">
+  <head>
+    <title>Image View</title>
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
+    <base metal:fill-slot="base" href="" tal:attributes="href python: here.absolute_url() + '/'" />
+  </head>
+<body>
+  <div metal:fill-slot="main">
+   <span tal:replace="structure here/tag">Tag</span>
+  </div>
+</body>
+</html>
diff --git a/skins/custom_content/link_edit_form.py b/skins/custom_content/link_edit_form.py
new file mode 100755
index 0000000..cac3ae5
--- /dev/null
+++ b/skins/custom_content/link_edit_form.py
@@ -0,0 +1,25 @@
+##parameters=change='', change_and_view='', ajax=''
+##
+form = context.REQUEST.form
+if change and \
+		context.link_edit_control(**form) and \
+		context.setRedirect(context, 'object/edit', ajax=ajax):
+	return
+elif change_and_view and \
+		context.link_edit_control(**form) and \
+		context.setRedirect(context, 'object/view', ajax=ajax):
+	return
+
+
+options = {}
+
+buttons = []
+target = context.getActionInfo('object/edit')['url']
+#buttons.append( {'name': 'change', 'value': 'Change'} )
+buttons.append( {'name': 'change_and_view', 'value': 'Change and View'} )
+options['form'] = { 'action': target,
+					'listButtonInfos': tuple(buttons) }
+
+options['ajax'] = ajax
+
+return context.link_edit_template(**options)
diff --git a/skins/custom_content/link_edit_template.pt b/skins/custom_content/link_edit_template.pt
new file mode 100644
index 0000000..6fd5ee5
--- /dev/null
+++ b/skins/custom_content/link_edit_template.pt
@@ -0,0 +1,39 @@
+<html metal:use-macro="here/main_template/macros/master">
+  <head>
+    <title>link_edit form</title>
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
+  </head>
+<body>
+<div metal:fill-slot="header">
+  <div metal:use-macro="here/widgets/macros/generic_header">generic_header</div>
+</div>
+<div metal:fill-slot="main" i18n:domain="cmf_default">
+<div class="Desktop">
+<div class="Link">
+
+<form action="." method="post" tal:define="form options/form"
+      tal:attributes="action string:${here/absolute_url}/link_edit_form">
+<table class="FormLayout">
+ <tr>
+  <th i18n:translate="">URL</th>
+  <td>
+   <input type="text" name="remote_url" value=""
+          tal:attributes="value here/remote_url" />
+  </td>
+ </tr>
+ <tr>
+  <td> <br /> </td>
+  <td>
+    <div metal:use-macro="context/form_widgets/macros/buttons">
+      buttons here
+    </div>
+  </td>
+ </tr>
+</table>
+</form>
+
+</div>
+</div>
+</div>
+</body>
+</html>
diff --git a/skins/custom_content/link_icon.gif b/skins/custom_content/link_icon.gif
new file mode 100644
index 0000000..4b33f11
Binary files /dev/null and b/skins/custom_content/link_icon.gif differ
diff --git a/skins/custom_content/link_view.pt b/skins/custom_content/link_view.pt
new file mode 100755
index 0000000..c089edb
--- /dev/null
+++ b/skins/custom_content/link_view.pt
@@ -0,0 +1,17 @@
+<html metal:use-macro="here/main_template_view/macros/master">
+  <head>
+    <title>Link view</title>
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
+    <base href="" metal:fill-slot="base" tal:attributes="href python: here.absolute_url() + '/'" />
+  </head>
+  <body>
+    <div metal:fill-slot="main" i18n:domain="cmf_default">
+
+     <p i18n:translate="">Link: <a href=""
+                  tal:attributes="href here/remote_url"
+                  tal:content="here/remote_url"
+                  i18n:name="link"
+               >http://www.zope.org</a></p>
+    </div>
+  </body>
+</html>
diff --git a/skins/custom_content/listc_edit.pt b/skins/custom_content/listc_edit.pt
new file mode 100644
index 0000000..810628c
--- /dev/null
+++ b/skins/custom_content/listc_edit.pt
@@ -0,0 +1,31 @@
+<table class="TwoColumnForm" i18n:domain="plinn"
+			 tal:define="bgcolor here/base_properties/contentBackgroundColor"
+			 tal:attributes="style string:background-color:$bgcolor">
+	<tr>
+		<td>
+      <input type="checkbox" value="" name="criterion_ids:list" id=""
+          tal:attributes="value here/getId; id string:cb_${here/getId}" />
+      <input type="hidden" name="criteria.id:records" value=""
+          tal:attributes="value here/getId" />
+    </td>
+		<td>
+			<fieldset>
+				<legend tal:content="string:catalog_index_${here/Field}" i18n:translate="">Field name</legend>
+				<textarea name="criteria.value:lines:records" rows="5" cols="40"
+									tal:content="python:modules['string'].join(here.value, '\n')"></textarea><br />
+		   	<span i18n:translate="" tal:omit-tag="">Operator:</span>
+        <select name="criteria.operator:records">
+          <option value="or"
+            tal:attributes="selected python:here.operator == 'or'"
+            i18n:translate="">or</option>
+          <option value="and" 
+            tal:attributes="selected python:here.operator == 'and'"
+            i18n:translate="">and</option>
+        </select>
+    		<dl class="FieldHelp">
+			    <dd tal:content="here/Description" i18n:translate="">Criterion description</dd>
+				</dl>
+      </fieldset>
+		</td>
+	</tr>
+</table>
\ No newline at end of file
diff --git a/skins/custom_content/metadata_edit_control.py b/skins/custom_content/metadata_edit_control.py
new file mode 100644
index 0000000..05e1928
--- /dev/null
+++ b/skins/custom_content/metadata_edit_control.py
@@ -0,0 +1,79 @@
+##parameters=allow_discussion=None, title=None, subject=None, description=None, contributors=None, effective_date=None, expiration_date=None, format=None, language=None, rights=None, ajax='', **kw
+##
+from Products.CMFCore.utils import getToolByName
+from Products.CMFDefault.exceptions import ResourceLockedError
+
+dtool = getToolByName(script, 'portal_discussion')
+
+def tuplify( value ):
+
+	if not same_type( value, () ):
+		value = tuple( value )
+
+	temp = filter( None, value )
+	return tuple( temp )
+
+if title is None:
+	title = context.Title()
+
+if subject is None:
+	subject = context.Subject()
+else:
+	subject = tuplify( subject )
+
+if description is None:
+	description = context.Description()
+
+if contributors is None:
+	contributors = context.Contributors()
+else:
+	contributors = tuplify( contributors )
+
+if effective_date is None:
+	effective_date = context.effective()
+else :
+	if dict(effective_date) == {'year':'1969', 'month':'12', 'day':'31', 'hour':'00', 'minute':'00'} :
+		effective_date = None
+	else :
+		effective_date = '%(year)s/%(month)s/%(day)s %(hour)s:%(minute)s' % effective_date
+
+if expiration_date is None:
+	expiration_date = context.expires()
+else :
+	expiration_date = '%(year)s/%(month)s/%(day)s %(hour)s:%(minute)s' % expiration_date
+
+
+if format is None:
+	format = context.Format()
+
+if language is None:
+	language = context.Language()
+
+if rights is None:
+	rights = context.Rights()
+
+if allow_discussion is not None :
+	if allow_discussion == 'default':
+		allow_discussion = None
+	if allow_discussion == 'off':
+		allow_discussion = False
+	elif allow_discussion == 'on':
+		allow_discussion = True
+	dtool.overrideDiscussionFor(context, allow_discussion)
+
+try:
+	context.editMetadata( title=title
+						, description=description
+						, subject=subject
+						, contributors=contributors
+						, effective_date=effective_date
+						, expiration_date=expiration_date
+						, format=format
+						, language=language
+						, rights=rights
+						)
+	if ajax : return '...'
+	context.setStatus(True, 'Metadata changed.')
+	return context.setRedirect(context, 'object/edit')
+except ResourceLockedError, errmsg:
+	return False
diff --git a/skins/custom_content/newsitem_edit_control.py b/skins/custom_content/newsitem_edit_control.py
new file mode 100644
index 0000000..ef68d5a
--- /dev/null
+++ b/skins/custom_content/newsitem_edit_control.py
@@ -0,0 +1,13 @@
+##parameters=text, text_format, SafetyBelt='', **kw
+##
+from Products.CMFDefault.exceptions import EditingConflict
+from Products.CMFDefault.exceptions import ResourceLockedError
+
+if text_format != context.text_format or text != context.text:
+    try:
+        context.edit(text, text_format = text_format)#, safety_belt=SafetyBelt)
+        return context.setStatus(True, 'Document changed.')
+    except (ResourceLockedError, EditingConflict), errmsg:
+        return context.setStatus(False, errmsg)
+else:
+    return context.setStatus(False, 'Nothing to change.')
diff --git a/skins/custom_content/newsitem_edit_form.py b/skins/custom_content/newsitem_edit_form.py
new file mode 100644
index 0000000..1d0a2a8
--- /dev/null
+++ b/skins/custom_content/newsitem_edit_form.py
@@ -0,0 +1,33 @@
+##parameters=change='', change_and_view='', ajax=''
+##
+form = context.REQUEST.form
+description = form.get('description')
+if description and same_type(description, []) :
+	# when javascript is disabled,
+	# there's a hidden textarea from epoz
+	# and an other from <noscript> tag
+	form.update({'description' : description[1],
+				 'text' : form['text'][1]})
+ 
+if change and \
+		context.validateHTML(**form) and \
+		context.newsitem_edit_control(**form) and \
+		context.setRedirect(context, 'object/edit', **{'ajax':ajax}):
+	return
+elif change_and_view and \
+		context.validateHTML(**form) and \
+		context.newsitem_edit_control(**form) and \
+		context.setRedirect(context, 'object/view', **{'ajax':ajax}):
+	return
+
+
+options = {}
+
+buttons = []
+target = context.getActionInfo('object/edit')['url']
+buttons.append( {'name': 'change', 'value': 'Change'} )
+buttons.append( {'name': 'change_and_view', 'value': 'Change and View'} )
+options['form'] = { 'action': target,
+					'listButtonInfos': tuple(buttons) }
+
+return context.newsitem_edit_template(**options)
diff --git a/skins/custom_content/newsitem_edit_template.pt b/skins/custom_content/newsitem_edit_template.pt
new file mode 100644
index 0000000..67b3908
--- /dev/null
+++ b/skins/custom_content/newsitem_edit_template.pt
@@ -0,0 +1,60 @@
+<html xmlns="http://www.w3.org/1999/xhtml" metal:use-macro="here/main_template/macros/master">
+
+  <head>
+    <title>Document edit form</title>
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8" />
+    <link href="zpt_stylesheet.css" rel="stylesheet" media="screen"/>
+  </head>
+
+  <body>
+    <div i18n:domain="cmf_default">
+      <div metal:fill-slot="header">
+        <div metal:use-macro="here/widgets/macros/generic_header">
+          generic_header macro
+        </div>
+      </div>
+      <div id="Desktop">
+        <div metal:fill-slot="main">
+          <form action="document_edit_form" method="post" enctype="multipart/form-data"
+          			tal:attributes="action string:${here/absolute_url}/newsitem_edit_form">
+            <input type="hidden" name="SafetyBelt" value="" tal:attributes="value here/SafetyBelt" />
+						<input type="hidden" name="onBeforeSubmit" value="SyncEpoz" />
+            <table class="FormLayout">
+              <tr>
+                <td class="TextField" colspan="2" i18n:translate="">
+                  <div tal:define="inputname string:text; formname string:edit_form; inputvalue here/text" tal:omit-tag="">
+                    <div metal:use-macro="here/wysiwyg_support/macros/wysiwygEditorBox">
+                      Wysiwig Code
+                    </div>
+                  </div>
+                </td>
+              </tr>
+              <tr>
+                <td colspan="2">
+                  <div metal:use-macro="here/wysiwyg_support/macros/textFormatSelector">
+                    Format box, if needed
+                  </div>
+                </td>
+              </tr>
+              <!--
+              <tr>
+                <th nowrap="nowrap" i18n:translate="">External file</th>
+                <td width="100%">
+                  <input type="file" name="file" size="25" />
+                </td>
+              </tr>
+              -->
+              <tr>
+              	<td><br /></td>
+                <td width="100%">
+                  <input type="submit" name="change_and_view" value="Change and View" i18n:attributes="value" />
+                </td>
+              </tr>
+            </table>
+          </form>
+        </div>
+      </div>
+    </div>
+  </body>
+
+</html>
\ No newline at end of file
diff --git a/skins/custom_content/newsitem_icon.gif b/skins/custom_content/newsitem_icon.gif
new file mode 100644
index 0000000..0bb9a0b
Binary files /dev/null and b/skins/custom_content/newsitem_icon.gif differ
diff --git a/skins/custom_content/newsitem_view.pt b/skins/custom_content/newsitem_view.pt
new file mode 100644
index 0000000..77ba8e0
--- /dev/null
+++ b/skins/custom_content/newsitem_view.pt
@@ -0,0 +1,15 @@
+<html xmlns:tal="http://xml.zope.org/namespaces/tal"
+      xmlns:metal="http://xml.zope.org/namespaces/metal"
+      metal:use-macro="here/main_template_view/macros/master">
+  <head>
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
+   <metal:block fill-slot="base"
+   ><tal:span tal:replace="structure here/getBaseTag"
+  /></metal:block>
+  </head>
+  <body>
+    <div metal:fill-slot="main">
+     <div tal:replace="structure here/CookedBody">Body</div>
+    </div>
+  </body>
+</html>
diff --git a/skins/custom_content/sic_edit.pt b/skins/custom_content/sic_edit.pt
new file mode 100644
index 0000000..ff8f3a2
--- /dev/null
+++ b/skins/custom_content/sic_edit.pt
@@ -0,0 +1,28 @@
+<table class="TwoColumnForm" i18n:domain="plinn"
+			 tal:define="bgcolor here/base_properties/contentBackgroundColor"
+			 tal:attributes="style string:background-color:$bgcolor">
+  <tr>
+    <td>
+      <input id="" type="checkbox" name="criterion_ids:list" value="" tal:attributes="value here/getId; id string:cb_${here/getId}"/><input type="hidden" name="criteria.id:records" value="" tal:attributes="value here/getId"/>
+    </td>
+    <td>
+      <fieldset>
+        <legend tal:content="string:catalog_index_${here/Field}" i18n:translate="">Field name</legend>
+         <input type="text" name="criteria.value:records" value="" size="40" tal:attributes="value here/getValueString" /><br/>
+         <input id="" type="radio" name="" value="min" tal:attributes="checked python:here.direction=='min';
+                          id string:${here/getId}_min;
+                          name string:criteria.direction__${here/getId}:records;
+                         " /><label for="" tal:attributes="for string:${here/getId}_min" i18n:translate="">Minimum</label> <input id="" type="radio" name="" value="max" tal:attributes="checked python:here.direction=='max';
+                          id string:${here/getId}_max;
+                          name string:criteria.direction__${here/getId}:records;
+                         " /><label for="" tal:attributes="for string:${here/getId}_max" i18n:translate="">Maximum</label> <input id="" type="radio" name="" value="min:max" tal:attributes="checked python:here.direction=='min:max';
+                          id string:${here/getId}_minmax;
+                          name string:criteria.direction__${here/getId}:records;
+                         " /><label for="" tal:attributes="for string:${here/getId}_minmax" i18n:translate="">Min/Max</label>
+        <dl class="FieldHelp">
+          <dd tal:content="here/Description" i18n:translate="">Criterion description</dd>
+        </dl>
+      </fieldset>
+    </td>
+  </tr>
+</table>
\ No newline at end of file
diff --git a/skins/custom_content/sort_edit.pt b/skins/custom_content/sort_edit.pt
new file mode 100644
index 0000000..0344098
--- /dev/null
+++ b/skins/custom_content/sort_edit.pt
@@ -0,0 +1,28 @@
+<table class="TwoColumnForm" i18n:domain="plinn"
+			 tal:define="bgcolor here/base_properties/contentBackgroundColor"
+			 tal:attributes="style string:background-color:$bgcolor">
+  <tr>
+  	<td>
+      <input id="" type="checkbox" name="criterion_ids:list" value=""
+      			 tal:attributes="value here/getId; id string:cb_${here/getId}"/>
+      <input type="hidden" name="criteria.id:records" value="" tal:attributes="value here/getId"/>
+    </td>
+    <td>
+    	<fieldset>
+    		<legend tal:content="string:catalog_index_${here/Field}" i18n:translate="">Field name</legend>
+  			<input type="hidden" name="criteria.reversed:int:default:records" value="0" />
+  			<label>
+  				<input type="radio" name="criteria.reversed:int:records" value="0" tal:attributes="checked not:here/reversed" />
+  				<span i18n:translate="" tal:omit-tag="">Regular sort</span>
+  			</label>
+  			<label>
+  				<input type="radio" name="criteria.reversed:int:records" value="1" tal:attributes="checked here/reversed"/>
+  				<span i18n:translate="" tal:omit-tag="">Reversed sort</span>
+  			</label>
+    		<dl class="FieldHelp">
+			    <dd tal:content="here/Description" i18n:translate="">Criterion description</dd>
+				</dl>
+    	</fieldset>
+    </td>
+  </tr>
+</table>
\ No newline at end of file
diff --git a/skins/custom_content/ssc_edit.pt b/skins/custom_content/ssc_edit.pt
new file mode 100644
index 0000000..c30afed
--- /dev/null
+++ b/skins/custom_content/ssc_edit.pt
@@ -0,0 +1,20 @@
+<table class="TwoColumnForm" i18n:domain="plinn"
+			 tal:define="bgcolor here/base_properties/contentBackgroundColor"
+			 tal:attributes="style string:background-color:$bgcolor">
+  <tr>
+  	<td>
+      <input id="" type="checkbox" name="criterion_ids:list" value=""
+      			 tal:attributes="value here/getId; id string:cb_${here/getId}"/>
+      <input type="hidden" name="criteria.id:records" value="" tal:attributes="value here/getId"/>
+    </td>
+    <td>
+    	<fieldset>
+    		<legend tal:content="string:catalog_index_${here/Field}" i18n:translate="">Field name</legend>
+    		<input type="text" name="criteria.value:records" value="" size="40" tal:attributes="value here/value | nothing" />
+    		<dl class="FieldHelp">
+			    <dd tal:content="here/Description" i18n:translate="">Criterion description</dd>
+				</dl>
+    	</fieldset>
+    </td>
+  </tr>
+</table>
\ No newline at end of file
diff --git a/skins/custom_content/topic_view.pt b/skins/custom_content/topic_view.pt
new file mode 100755
index 0000000..495b40c
--- /dev/null
+++ b/skins/custom_content/topic_view.pt
@@ -0,0 +1,64 @@
+<html xmlns="http://www.w3.org/1999/xhtml" metal:use-macro="container/main_template_view/macros/master">
+
+  <head>
+    <title>Topic view</title>
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
+    <base href="." tal:attributes="href python: here.absolute_url() + '/'" metal:fill-slot="base" />
+  </head>
+
+  <body i18n:domain="plinn">
+    <div metal:fill-slot="header" tal:omit-tag="">
+      <h1 id="DesktopTitle">
+        <span tal:replace="here/title_or_id">Page Title</span>
+      </h1>
+      <div id="DesktopDescription" tal:content="structure here/Description">
+        Description of the resource goes here, perhaps even wrapping lines; this is to make it long enough to test.
+      </div>
+    </div>
+    <div metal:fill-slot="main" tal:omit-tag="">
+      <table tal:define="
+            b_start string:0;b_start request/b_start | b_start;
+            results here/queryCatalog;
+            Batch python:modules['Products.Plinn'].Batch;
+            global batch python:Batch(results, 20, int(b_start), orphan=1)" class="listing" cellspacing="0">
+          <tr>
+            <td colspan="2"><span metal:use-macro="here/batch_macros/macros/navigation">batch navigation</span></td>
+          </tr>
+<tbody tal:condition="batch" tal:omit-tag="" tal:repeat="match batch">
+          <tr tal:define="ob match/getObject ;
+                   url match/getURL;
+                   title python:match.Title or ob.id;
+                   icon python:here.restrictedTraverse(ob.getIcon())"
+              tal:attributes="class python:repeat['match'].odd() and 'odd' or 'even'">
+            <td width="20">
+              <img src="." alt="icon" height="16" width="16" tal:attributes="src icon/absolute_url|ob/getIcon ; alt ob/getPortalTypeName|ob/meta_type; height icon/height|string:16; width icon/width|string:16" i18n:attributes="alt" />
+            </td>
+            <td>
+              <a href="." tal:attributes="href url" tal:content="title">Object title</a>
+            </td>
+          </tr>
+          <tr tal:condition="match/Description">
+            <td>
+              <br />
+            </td>
+            <td tal:content="structure match/Description">
+              description
+            </td>
+          </tr>
+</tbody>
+        <tr tal:condition="not:batch">
+          <td colspan="2" i18n:translate="">No result</td>
+        </tr>
+      </table>
+      <div tal:define="topics python:here.listNearestFolderContents(contentFilter={'portal_type':'Topic'})" tal:condition="topics" tal:omit-tag="">
+        <h4 i18n:translate="">Subtopics</h4>
+        <div tal:repeat="topic topics">
+        	<a href="." tal:attributes="href topic/absolute_url" tal:define="topictitle python:topic.Title() or topic.getId()">
+          	<img height="16" width="16" border="0" alt="Topic" tal:attributes="src here/topic_icon.gif/absolute_url" i18n:attributes="alt" />
+          <span tal:replace="topictitle">Topic Title</span></a>
+        </div>
+      </div>
+    </div>
+  </body>
+
+</html>
\ No newline at end of file
diff --git a/skins/custom_content/transition_form.pt b/skins/custom_content/transition_form.pt
new file mode 100644
index 0000000..677b322
--- /dev/null
+++ b/skins/custom_content/transition_form.pt
@@ -0,0 +1,56 @@
+<metal:block metal:define-macro="master">
+<html xmlns:tal="http://xml.zope.org/namespaces/tal"
+      xmlns:metal="http://xml.zope.org/namespaces/metal"
+      metal:use-macro="here/main_template/macros/master">
+<head>
+  <meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
+</head>
+<body i18n:domain="plinn">
+<div metal:fill-slot="main">
+<div class="Desktop"
+     tal:define="wtool here/portal_workflow;
+                 review_state python: wtool.getInfoFor(here, 'review_state')">
+
+<div metal:define-slot="main">
+	<h1 i18n:translate="">Transition of <span tal:replace="here/getId"
+                             i18n:name="objectid">Item</span>.</h1>
+
+	<p i18n:translate="">Transition description.</p>
+</div>
+<br />
+<form method="post" action="content_status_modify"
+      tal:attributes="action string:${here/absolute_url}/content_status_modify">
+ <table class="FormLayout">
+  <tr>
+   <th i18n:translate="">Current state:</th>
+   <td tal:content="review_state" i18n:translate="">Private</td>
+  </tr>
+  <tr>
+   <td valign="top" align="left" colspan="2">
+    <strong><em i18n:translate="">Comments</em></strong>
+    <br />
+    <textarea name="comment" cols="60" rows="5" style="width: 100%"></textarea>
+   </td>
+  </tr>
+  <tr>
+   <td colspan="2">
+		<input type="hidden" name="syncFragments:tokens" value="rightCell" />
+    <div metal:define-slot="form">
+     <input type="hidden" name="workflow_action" value="transition" />
+     <input type="submit" value="Transition" i18n:attributes="value" />
+    </div>
+   </td>
+  </tr>
+ </table>
+</form>
+<h2 i18n:translate="">Reviewing history</h2>
+<div metal:use-macro="here/wf_macros/macros/default_workflow">
+	default_workflow history
+</div>
+
+
+</div>
+</div>
+</body>
+</html>
+</metal:block>
\ No newline at end of file
diff --git a/skins/custom_control/addtoFavorites.py b/skins/custom_control/addtoFavorites.py
new file mode 100644
index 0000000..2816b6f
--- /dev/null
+++ b/skins/custom_control/addtoFavorites.py
@@ -0,0 +1,23 @@
+## Script (Python) "addtoFavorites"
+##title=Add item to favourites
+##parameters=ajax=''
+
+#TODO : translate messages
+#from Products.PlacelessTranslationService.MessageID import MessageIDFactory
+#_ = MessageIDFactory('plinn')
+_ = lambda x : lambda : x
+
+portal = context.portal_url.getPortalObject()
+ttool = portal.portal_types
+homeFolder = portal.portal_membership.getHomeFolder()
+
+if not hasattr(homeFolder, 'Favorites'):
+	ttool.constructContent( 'Plinn Folder', homeFolder, 'Favorites', title=str(_('Favorites')) )
+
+targetFolder = getattr( homeFolder, 'Favorites' )
+new_id='fav_' + str(int( context.ZopeTime()))
+myPath=context.portal_url.getRelativeUrl(context)
+targetFolder.invokeFactory( 'Favorite', id=new_id, title=context.TitleOrId(), remote_url=myPath)
+
+context.setStatus(True, 'Favorite added.')
+context.setRedirect(context, 'object/view', ajax=ajax)
diff --git a/skins/custom_control/change_password.py b/skins/custom_control/change_password.py
new file mode 100755
index 0000000..ac613d7
--- /dev/null
+++ b/skins/custom_control/change_password.py
@@ -0,0 +1,14 @@
+##parameters=password, confirm, domains=None, ajax=''
+from ZTUtils import make_query as mq
+url = context.portal_url()
+red = context.REQUEST.RESPONSE.redirect
+
+mt = context.portal_membership
+failMessage=context.portal_registration.testPasswordValidity(password, confirm)
+if failMessage:
+	return red('%s/password_form?%s' % (url, mq(portal_status_message=failMessage, ajax=ajax)))
+
+member = mt.getAuthenticatedMember()
+mt.setPassword(password, domains)
+mt.credentialsChanged(password)
+return red('%s/personalize_form?%s' % (url, mq(portal_status_message='Password changed.', ajax=ajax)))
\ No newline at end of file
diff --git a/skins/custom_control/event_edit_control.py b/skins/custom_control/event_edit_control.py
new file mode 100644
index 0000000..ee84fd5
--- /dev/null
+++ b/skins/custom_control/event_edit_control.py
@@ -0,0 +1,53 @@
+##parameters=title='', description='', event_type=[], start_date={}, end_date={}, location='', contact_name='', contact_email='', contact_phone='', event_url='', **kw
+##
+from Products.CMFCalendar.exceptions import ResourceLockedError
+from Products.Plinn.exceptions import DateTimeError
+from DateTime import DateTime
+
+try :
+	startDate = DateTime('%s/%s/%s %s %s' % (start_date['year'],
+											 start_date['month'],
+											 start_date['day'],
+											 start_date['hour'],
+											 start_date['minute']) )
+	context.setStartDate(startDate)
+except DateTimeError:
+	return context.setStatus(False, "Start date is not valid.")
+
+
+try :
+	endDate = DateTime('%s/%s/%s %s %s' % (end_date['year'],
+										   end_date['month'],
+										   end_date['day'],
+										   end_date['hour'],
+										   end_date['minute']) )
+	context.setEndDate(endDate)
+except DateTimeError:
+	return context.setStatus(False, "End date is not valid.")
+
+try:
+	context.edit( title=title
+				, description	= description
+				, location		= location
+				, contact_name	= contact_name
+				, contact_email	= contact_email
+				, contact_phone	= contact_phone
+				, event_url		= event_url
+				, eventType		= event_type
+				
+				, effectiveDay	= startDate.day()
+				, effectiveMo	= startDate.month()
+				, effectiveYear	= startDate.year()
+				, start_time	= startDate.AMPM()
+				, startAMPM=''
+
+				, expirationDay		= endDate.day()
+				, expirationMo		= endDate.month()
+				, expirationYear	= endDate.year()
+				, stop_time			= endDate.AMPM()
+				, stopAMPM=''
+
+				)
+	return context.setStatus(True, 'Event changed.')
+except ResourceLockedError, errmsg:
+	return context.setStatus(False, errmsg)
diff --git a/skins/custom_control/folder_bottom_control.py b/skins/custom_control/folder_bottom_control.py
new file mode 100755
index 0000000..b2c4b19
--- /dev/null
+++ b/skins/custom_control/folder_bottom_control.py
@@ -0,0 +1,24 @@
+##parameters=ids, **kw
+##
+
+#TODO : translate messages
+#from Products.PlacelessTranslationService.MessageID import MessageIDFactory
+#_ = MessageIDFactory('default', as_unicode=True)
+_ = lambda x : lambda : x
+
+subset_ids = [ obj.getId() for obj in context.listFolderContents() ]
+try:
+	try:
+		attempt = context.moveObjectsToBottom(ids, subset_ids=subset_ids)
+	except TypeError:
+		# Zope 2.7.0
+		attempt = context.moveObjectsToBottom(ids)
+	if attempt:
+		msg = _(attempt == 1 and \
+		'%d item moved to bottom.' or \
+		'%d items moved to bottom.')().encode('utf-8') % attempt
+		return context.setStatus( True, msg)
+	else:
+		return context.setStatus(False, 'Nothing to change.')
+except ValueError, errmsg:
+	return context.setStatus(False, 'ValueError: %s' % errmsg)
diff --git a/skins/custom_control/folder_delete_control.py b/skins/custom_control/folder_delete_control.py
new file mode 100644
index 0000000..28feabd
--- /dev/null
+++ b/skins/custom_control/folder_delete_control.py
@@ -0,0 +1,47 @@
+##parameters=ids, **kw
+##title=Delete objects from a folder
+##
+request = context.REQUEST
+response = request.RESPONSE
+
+if request.cookies.has_key('__cp'):
+	contextPath = context.getPhysicalPath()
+	depth = len(contextPath) + 1
+	strContextPath = ''.join(contextPath)
+
+	cp = context.getCPInfo()
+	
+	deletedObPaths = {}
+	for id in ids :
+		deletedObPaths[strContextPath + id] = True
+	
+	indexes, paths = [], cp[1]
+	
+	for i in range(len(paths)) :
+		path = paths[i]
+		try :
+			firstPart = path[:depth]
+			if deletedObPaths.has_key(''.join(firstPart)) :
+				indexes.append(i)
+		except IndexError : continue
+
+	context.popCP(indexes)
+	
+
+ret = context.manage_delObjects( list(ids) )
+msg=''
+if ret :
+	ignored = []
+	for id in ret :
+		o = getattr(context, id, None)
+		if o :
+			ignored.append(o.title_or_id())
+	#TODO : translate messages
+	#from Products.PlacelessTranslationService.MessageID import MessageIDFactory
+	#_ = MessageIDFactory('plinn')
+	_ = lambda x : lambda : x
+	translate = lambda msg : _(msg)().decode('iso-8859-1').encode('utf-8')
+	msg = translate('You are not allowed to delete: ') + ', '.join(ignored)
+
+msg = msg or 'Item%s deleted.' % ( len(ids) != 1 and 's' or '' )
+return context.setStatus( True,  msg)
diff --git a/skins/custom_control/folder_down_control.py b/skins/custom_control/folder_down_control.py
new file mode 100755
index 0000000..668bf1f
--- /dev/null
+++ b/skins/custom_control/folder_down_control.py
@@ -0,0 +1,25 @@
+##parameters=ids, delta, **kw
+##
+
+#TODO : translate messages
+#from Products.PlacelessTranslationService.MessageID import MessageIDFactory
+#_ = MessageIDFactory('default', as_unicode=True)
+_ = lambda x : lambda : x
+
+
+subset_ids = [ obj.getId() for obj in context.listFolderContents() ]
+try:
+	try:
+		attempt = context.moveObjectsDown(ids, delta, subset_ids=subset_ids)
+	except TypeError:
+		# Zope 2.7.0
+		attempt = context.moveObjectsDown(ids, delta)
+	if attempt:
+		msg = _(attempt == 1 and \
+		'%d item moved down.' or \
+		'%d items moved down.')().encode('utf-8') % attempt
+		return context.setStatus( True, msg)
+	else:
+		return context.setStatus(False, 'Nothing to change.')
+except ValueError, errmsg:
+	return context.setStatus(False, 'ValueError: %s' % errmsg)
diff --git a/skins/custom_control/folder_paste_control.py b/skins/custom_control/folder_paste_control.py
new file mode 100755
index 0000000..f302d9f
--- /dev/null
+++ b/skins/custom_control/folder_paste_control.py
@@ -0,0 +1,19 @@
+##parameters=**kw
+##title=Paste objects to a folder from the clipboard
+##
+from Products.CMFDefault.exceptions import CopyError
+from Products.CMFDefault.exceptions import zExceptions_Unauthorized
+
+if context.cb_dataValid:
+	try:
+		result = context.manage_pasteObjects(context.REQUEST['__cp'])
+		return context.setStatus( True, 'Item%s pasted.' %
+										( len(result) != 1 and 's' or '' ) )
+	except CopyError:
+		return context.setStatus(False, 'CopyError: Paste failed.')
+	except zExceptions_Unauthorized:
+		return context.setStatus(False, 'Unauthorized: Paste failed.')
+	except KeyError :
+		return context.setStatus(False, 'Please copy or cut one or more items to paste first.')
+else:
+	return context.setStatus(False, 'Please copy or cut one or more items to paste first.')
diff --git a/skins/custom_control/folder_top_control.py b/skins/custom_control/folder_top_control.py
new file mode 100755
index 0000000..1f0b54c
--- /dev/null
+++ b/skins/custom_control/folder_top_control.py
@@ -0,0 +1,24 @@
+##parameters=ids, **kw
+##
+
+#TODO : translate messages
+#from Products.PlacelessTranslationService.MessageID import MessageIDFactory
+#_ = MessageIDFactory('default', as_unicode=True)
+_ = lambda x : lambda : x
+
+subset_ids = [ obj.getId() for obj in context.listFolderContents() ]
+try:
+	try:
+		attempt = context.moveObjectsToTop(ids, subset_ids=subset_ids)
+	except TypeError:
+		# Zope 2.7.0
+		attempt = context.moveObjectsToTop(ids)
+	if attempt:
+		msg = _(attempt == 1 and \
+		'%d item moved to top.' or \
+		'%d items moved to top.')().encode('utf-8') % attempt
+		return context.setStatus( True, msg)
+	else:
+		return context.setStatus(False, 'Nothing to change.')
+except ValueError, errmsg:
+	return context.setStatus(False, 'ValueError: %s' % errmsg)
diff --git a/skins/custom_control/folder_up_control.py b/skins/custom_control/folder_up_control.py
new file mode 100755
index 0000000..8589de6
--- /dev/null
+++ b/skins/custom_control/folder_up_control.py
@@ -0,0 +1,24 @@
+##parameters=ids, delta, **kw
+##
+
+#TODO : translate messages
+#from Products.PlacelessTranslationService.MessageID import MessageIDFactory
+#_ = MessageIDFactory('default', as_unicode=True)
+_ = lambda x : lambda : x
+
+subset_ids = [ obj.getId() for obj in context.listFolderContents() ]
+try:
+	try:
+		attempt = context.moveObjectsUp(ids, delta, subset_ids=subset_ids)
+	except TypeError:
+		# Zope 2.7.0
+		attempt = context.moveObjectsUp(ids, delta)
+	if attempt:
+		msg = _(attempt == 1 and \
+		'%d item moved up.' or \
+		'%d items moved up.')().encode('utf-8') % attempt
+		return context.setStatus( True, msg)
+	else:
+		return context.setStatus(False, 'Nothing to change.')
+except ValueError, errmsg:
+	return context.setStatus(False, 'ValueError: %s' % errmsg)
diff --git a/skins/custom_control/logout.py b/skins/custom_control/logout.py
new file mode 100644
index 0000000..594e617
--- /dev/null
+++ b/skins/custom_control/logout.py
@@ -0,0 +1,8 @@
+## Script (Python) "logout"
+##title=Logout handler
+##parameters=ajax=''
+REQUEST = context.REQUEST
+if REQUEST.has_key('portal_skin'):
+	context.portal_skins.clearSkinCookie()
+REQUEST.RESPONSE.expireCookie('__ac', path='/')
+return REQUEST.RESPONSE.redirect(REQUEST.URL1+'/logged_out')
diff --git a/skins/custom_control/members_add_control.py b/skins/custom_control/members_add_control.py
new file mode 100644
index 0000000..459a350
--- /dev/null
+++ b/skins/custom_control/members_add_control.py
@@ -0,0 +1,26 @@
+##parameters=member_id, given_name, name, password, member_email, send_password=False, **kw
+##title=Add a member
+##
+from Products.CMFCore.utils import getToolByName
+from Products.CMFDefault.permissions import ManageUsers
+from Products.Plinn.RegistrationTool import MODE_REVIEWED
+
+mtool = getToolByName(script, 'portal_membership')
+ptool = getToolByName(script, 'portal_properties')
+rtool = getToolByName(script, 'portal_registration')
+
+try:
+	rtool.addMember( id=member_id, password=password,
+					 properties={'username': member_id,
+								 'given_name' : given_name,
+								 'name' : name,
+								 'email': member_email} )
+except ValueError, errmsg:
+	return context.setStatus(False, errmsg)
+else:
+	if send_password or (ptool.getProperty('validate_email') and rtool.getMode() != MODE_REVIEWED):
+		rtool.registeredNotify(member_id)
+	if mtool.checkPermission(ManageUsers, mtool):
+		return context.setStatus(True, 'Member registered.')
+	else:
+		return context.setStatus(False, 'Success!')
diff --git a/skins/custom_control/personalize.py b/skins/custom_control/personalize.py
new file mode 100644
index 0000000..2e929a6
--- /dev/null
+++ b/skins/custom_control/personalize.py
@@ -0,0 +1,27 @@
+## Script (Python) "personalize"
+##title=Personalization Handler.
+##parameters=
+REQUEST=context.REQUEST
+member = context.portal_membership.getAuthenticatedMember()
+
+failMessage = context.portal_registration.testPropertiesValidity(REQUEST,
+																 member)
+if failMessage:
+	REQUEST.set('portal_status_message', failMessage)
+	return context.personalize_form(context, REQUEST,
+									portal_status_message=failMessage)
+
+member.setProperties(REQUEST)
+#photo_width = REQUEST['photo_width']
+#context.getOrSetSessionVar(key = 'preferedImageSize', value=(photo_width, photo_width))
+
+if REQUEST.has_key('portal_skin'):
+	context.portal_skins.updateSkinCookie()
+
+from ZTUtils import make_query as mq
+params = {'portal_status_message' : 'Saved changes.'}
+if REQUEST.has_key('ajax') :
+	params['ajax'] = '1'
+qs = mq(**params)
+
+context.REQUEST.RESPONSE.redirect('%s/personalize_form?%s' % (context.portal_url(), qs))
diff --git a/skins/custom_control/portal_config_control.py b/skins/custom_control/portal_config_control.py
new file mode 100644
index 0000000..01386ca
--- /dev/null
+++ b/skins/custom_control/portal_config_control.py
@@ -0,0 +1,12 @@
+##parameters=**kw
+##
+from Products.CMFCore.utils import getUtilityByInterfaceName
+ptool = getUtilityByInterfaceName('Products.CMFCore.interfaces.IPropertiesTool')
+
+ajax_config = (kw.get('ajax_rootClickHandler', 0) and 1) + \
+              (kw.get('ajax_autoFormManager', 0) and 2)
+
+kw['ajax_config'] = ajax_config
+ptool.editProperties(kw)
+
+return context.setStatus(True, 'CMF Settings changed.')
diff --git a/skins/custom_control/setStatus.py b/skins/custom_control/setStatus.py
new file mode 100755
index 0000000..07d3ffd
--- /dev/null
+++ b/skins/custom_control/setStatus.py
@@ -0,0 +1,9 @@
+##parameters=success, message='', **kw
+
+if message:
+    context.REQUEST.other['portal_status_message'] = message
+if kw:
+    for k, v in kw.items():
+        context.REQUEST.form[k] = v
+
+return success
diff --git a/skins/custom_control/synPropertiesForm.pt b/skins/custom_control/synPropertiesForm.pt
new file mode 100755
index 0000000..9919c20
--- /dev/null
+++ b/skins/custom_control/synPropertiesForm.pt
@@ -0,0 +1,146 @@
+<html xmlns="http://www.w3.org/1999/xhtml" metal:use-macro="here/main_template/macros/master">
+  <head>
+  <meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
+  </head>
+
+  <body>
+    <div metal:fill-slot="main" i18n:domain="cmf_default">
+      <div class="Desktop" tal:define="s_tool here/portal_syndication;
+                 s_site_allowed s_tool/isSiteSyndicationAllowed;
+                 s_here_allowed python:s_tool.isSyndicationAllowed(here);
+                 s_allowed python:s_site_allowed and s_here_allowed;
+                ">
+        <h2 i18n:translate="">Default Syndication Properties</h2>
+        <p>
+          <span i18n:translate="">Syndication is the process by which a site is able to share information out to other sites. When syndication is enabled, this folder items summary will be provided on <strong>RSS</strong> xml format at :</span>
+          <a href="." tal:omit-tag="not:s_allowed"
+											tal:define="rssUrl string:${here/absolute_url}/RSS"
+											tal:content="rssUrl"
+											tal:attributes="href string:$rssUrl?noajax=1">this folder url/RSS</a>.
+				</p>
+        <div tal:condition="python:s_allowed">
+          <form action="editSynProperties" method="post" tal:attributes="action string:${here/absolute_url}/editSynProperties">
+            <table width="100%" border="0">
+              <tr>
+                <th colspan="2" align="left" valign="top" i18n:translate="">Channel Properties</th>
+              </tr>
+              <tr>
+                <td colspan="2">
+                  <table width="90%" border="1">
+                    <tr>
+                      <td>
+                        <table>
+                          <tr>
+                            <td valign="top" height="30" i18n:translate="">
+                              Channel Title:
+                            </td>
+                            <td valign="top" tal:content="here/Title" height="30">
+                              Title
+                            </td>
+                          </tr>
+                          <tr>
+                            <td valign="top" height="30" i18n:translate="">
+                              Channel Description:
+                            </td>
+                            <td valign="top" tal:content="here/Description" height="30">
+                              Description
+                            </td>
+                          </tr>
+                        </table>
+                      </td>
+                    </tr>
+                  </table>
+                </td>
+              </tr>
+            </table>
+            <table width="100%" border="0">
+              <tr>
+                <th align="left" valign="top" i18n:translate="">Sy Module Properties</th>
+                <td></td>
+              </tr>
+              <tr>
+                <td colspan="2">
+                  <table width="90%" border="1">
+                    <tr>
+                      <td>
+                        <table>
+                          <tr>
+                            <th align="left" i18n:translate="">Element</th>
+                            <th align="left" i18n:translate="">Default Value</th>
+                          </tr>
+                          <tr>
+                            <td i18n:translate="">
+                              UpdatePeriod
+                            </td>
+                            <td>
+                              <select name="updatePeriod">
+                                <option value="hourly" tal:attributes="value python:item[0];
+                                    selected python:item[0] == upd" tal:define="upd python:s_tool.getUpdatePeriod(here)" tal:content="python: item[1]" tal:repeat="item s_tool/buildUpdatePeriods" i18n:translate="">Hourly</option>
+                              </select>
+                            </td>
+                          </tr>
+                          <tr>
+                            <td i18n:translate="">
+                              UpdateFrequency
+                            </td>
+                            <td>
+                              <input type="text" name="updateFrequency:int" value="" size="3" tal:attributes="value python:s_tool.getUpdateFrequency(here)" />
+                            </td>
+                          </tr>
+                          <tr>
+                            <td i18n:translate="">
+                              UpdateBase
+                            </td>
+                            <td>
+                              <input type="text" name="updateBase:date" value="" size="25" tal:attributes="value python:s_tool.getUpdateBase(here)" />
+                            </td>
+                          </tr>
+                          <tr>
+                            <td i18n:translate="">
+                              Max Syndicated Items
+                            </td>
+                            <td>
+                              <input type="text" name="max_items:int" value="" size="3" tal:attributes="value python:s_tool.getMaxItems(here)" />
+                            </td>
+                          </tr>
+                          <tr>
+                            <td colspan="2">
+                              <input type="hidden" name="noAjax" value="1" />
+                              <input type="submit" name="edit" value="Save" i18n:attributes="value" />
+                            </td>
+                          </tr>
+                        </table>
+                      </td>
+                    </tr>
+                  </table>
+                </td>
+              </tr>
+              <tr>
+                <td>
+                  <br />
+                </td>
+                <td></td>
+              </tr>
+            </table>
+          </form>
+          <form action="disableSyndication" method="post" tal:attributes="action string:${here/absolute_url}/disableSyndication">
+            <input type="submit" value="Disable Syndication" i18n:attributes="value" /> <input type="hidden" name="isAllowed:int" value="0" /><input type="hidden" name="noAjax" value="1" />
+          </form>
+        </div>
+        <!--  s_allowed -->
+        <div tal:condition="python:not(s_allowed)">
+          <h4 i18n:translate="">Syndication is Disabled</h4>
+        </div>
+        <div tal:condition="python: s_site_allowed and not(s_here_allowed)">
+          <form action="enableSyndication" method="post" tal:attributes="action string:${here/absolute_url}/enableSyndication">
+            <input type="hidden" name="isAllowed:int" value="1" /><input type="hidden" name="noAjax" value="1" /><input type="submit" value="Enable Syndication" i18n:attributes="value" />
+          </form>
+        </div>
+        <!-- s_site_allowed and not s_here_allowed -->
+      </div>
+      <!-- class="Desktop -->
+    </div>
+    <!-- metal:fill-slot="main" -->
+  </body>
+
+</html>
\ No newline at end of file
diff --git a/skins/custom_control/undo.py b/skins/custom_control/undo.py
new file mode 100644
index 0000000..c74e77b
--- /dev/null
+++ b/skins/custom_control/undo.py
@@ -0,0 +1,7 @@
+## Script (Python) "undo"
+##title=Undo transactions
+##parameters=transaction_info, ajax=''
+context.portal_undo.undo(context, transaction_info)
+
+return context.REQUEST.RESPONSE.redirect(
+    'undo_form?portal_status_message=Transaction(s)+undone&ajax=%s' % ajax )
diff --git a/skins/custom_generic/RSS.py b/skins/custom_generic/RSS.py
new file mode 100755
index 0000000..020238a
--- /dev/null
+++ b/skins/custom_generic/RSS.py
@@ -0,0 +1,47 @@
+##parameters=
+##
+from ZTUtils import Batch
+from ZTUtils import LazyFilter
+from Products.CMFCore.utils import getUtilityByInterfaceName
+from Products.CMFDefault.utils import decode
+
+stool = getUtilityByInterfaceName('Products.CMFCore.interfaces.ISyndicationTool')
+
+
+if not stool.isSyndicationAllowed(context):
+    context.REQUEST.RESPONSE.redirect(context.absolute_url() +
+             '/rssDisabled?portal_status_message=Syndication+is+Disabled')
+    return
+
+
+options = {}
+
+options['channel_info'] = { 'base': stool.getHTML4UpdateBase(context),
+                            'description': context.Description(),
+                            'frequency': stool.getUpdateFrequency(context),
+                            'period': stool.getUpdatePeriod(context),
+                            'title': context.Title(),
+                            'url': context.absolute_url() }
+
+#key, reverse = context.getDefaultSorting()
+# TODO: have an independant sorting rule for syndication.
+# for the moment, RSS may always report recent changes.
+key, reverse = 'modified', True
+items = stool.getSyndicatableContent(context)
+items = sequence.sort( items, ((key, 'cmp', reverse and 'desc' or 'asc'),) )
+items = LazyFilter(items, skip='View')
+b_size = stool.getMaxItems(context)
+batch_obj = Batch(items, b_size, 0, orphan=0)
+items = []
+for item in batch_obj:
+    items.append( { 'date': item.modified().HTML4(),
+                    'description': item.Description(),
+                    'listCreators': item.listCreators(),
+                    'listSubjects': item.Subject(),
+                    'publisher': item.Publisher(),
+                    'rights': item.Rights(),
+                    'title': item.Title(),
+                    'url': item.absolute_url() } )
+options['listItemInfos'] = tuple(items)
+
+return context.RSS_template(**decode(options, script))
diff --git a/skins/custom_generic/breadcrumbs.py b/skins/custom_generic/breadcrumbs.py
new file mode 100755
index 0000000..4d1df9f
--- /dev/null
+++ b/skins/custom_generic/breadcrumbs.py
@@ -0,0 +1,31 @@
+##parameters=include_root=1
+##title=Return breadcrumbs
+##
+from string import join
+
+result = []
+portal_url = context.portal_url()
+
+if include_root:
+	result.append( { 'id'	   : 'root'
+				   , 'title'   : context.portal_properties.title()
+				   , 'url'	   : portal_url
+				   }
+				 )
+
+relative = context.portal_url.getRelativeContentPath( context )
+portal = context.portal_url.getPortalObject()
+checkPermission = context.portal_membership.checkPermission
+from Products.CMFCore.permissions import View
+
+for i in range( len( relative ) ):
+	now = relative[ :i+1 ]
+	obj = portal.restrictedTraverse( now )
+	if not now[ -1 ] == 'talkback':
+		result.append( { 'id'	   : now[ -1 ]
+					   , 'title'   : obj.title_or_id()
+					   , 'url'	   : checkPermission(View, obj) and (portal_url + '/' + join( now, '/' )) or None
+					   }
+					)
+
+return result
diff --git a/skins/custom_generic/expanded_title.py b/skins/custom_generic/expanded_title.py
new file mode 100644
index 0000000..8fce45f
--- /dev/null
+++ b/skins/custom_generic/expanded_title.py
@@ -0,0 +1,11 @@
+## Script (Python) "expanded_title"
+##parameters=
+##title=Build title which includes site title
+##
+site_title = context.portal_url.getPortalObject().title_or_id()
+page_title = context.title_or_id()
+
+if page_title != site_title:
+	page_title = site_title + ": " + page_title
+
+return page_title
diff --git a/skins/custom_generic/folder_contents.py b/skins/custom_generic/folder_contents.py
new file mode 100644
index 0000000..1735b4d
--- /dev/null
+++ b/skins/custom_generic/folder_contents.py
@@ -0,0 +1,248 @@
+##parameters=b_start=0, key='', reverse=0, ids=(), items_copy='', items_cut='', items_delete='', items_new='', items_paste='', items_rename='', items_up='', items_down='', items_top='', items_bottom='', items_sort='', template='', macro='', ajax='',**others
+##
+from Products.Plinn.PloneMisc import Batch
+from DateTime import DateTime
+locale_date_fmt = context.locale_date_fmt()
+from ZTUtils import make_query
+from Products.CMFCore.utils import getToolByName
+from Products.CMFDefault.permissions import AddPortalContent
+from Products.CMFDefault.permissions import DeleteObjects
+from Products.CMFDefault.permissions import ListFolderContents
+from Products.CMFDefault.permissions import ManageProperties
+from Products.CMFDefault.permissions import ViewManagementScreens
+from Products.CMFDefault.permissions import ModifyPortalContent
+from Products.CMFDefault.utils import html_marshal
+
+mtool = getToolByName(script, 'portal_membership')
+checkPermission = mtool.checkPermission
+utool = getToolByName(script, 'portal_url')
+portal_url = utool()
+
+
+form = context.REQUEST.form
+default_target = 'object/folderContents'
+default_kw = {'b_start': b_start, 'key': key, 'reverse': reverse, 'ajax' : ajax}
+if items_copy :
+	if ajax : default_kw['syncFragments']=['rightCell']
+	if context.validateItemIds(**form) and \
+			context.folder_copy_control(**form) and \
+			context.setRedirect(context, default_target, **default_kw):
+		return
+elif items_cut :
+	if ajax : default_kw['syncFragments']=['rightCell']
+	if context.validateItemIds(**form) and \
+			context.folder_cut_control(**form) and \
+			context.setRedirect(context, default_target, **default_kw):
+			return
+elif items_delete and \
+		context.validateItemIds(**form) and \
+		context.folder_delete_control(**form) and \
+		context.setRedirect(context, default_target, **default_kw):
+	return
+elif items_new and \
+		context.setRedirect(context, 'object/new', **default_kw):
+	return
+elif items_paste :
+	if ajax : default_kw['syncFragments']=['rightCell']
+	if context.folder_paste_control(**form) and \
+			context.setRedirect(context, default_target, **default_kw):
+			return
+elif items_rename and \
+		context.validateItemIds(**form) and \
+		context.setRedirect(context, 'object/rename_items', ids=ids,
+							**default_kw):
+	return
+elif items_sort and \
+		context.folder_sort_control(**form) and \
+		context.setRedirect(context, default_target, b_start=b_start):
+	return
+elif items_up and \
+		context.validateItemIds(**form) and \
+		context.folder_up_control(**form) and \
+		context.setRedirect(context, default_target, **default_kw):
+	return
+elif items_down and \
+		context.validateItemIds(**form) and \
+		context.folder_down_control(**form) and \
+		context.setRedirect(context, default_target, **default_kw):
+	return
+elif items_top and \
+		context.validateItemIds(**form) and \
+		context.folder_top_control(**form) and \
+		context.setRedirect(context, default_target, **default_kw):
+	return
+elif items_bottom and \
+		context.validateItemIds(**form) and \
+		context.folder_bottom_control(**form) and \
+		context.setRedirect(context, default_target, **default_kw):
+	return
+	
+
+options = {}
+
+items_add_allowed = checkPermission(AddPortalContent, context)
+upitems_list_allowed = checkPermission(ListFolderContents, context, 'aq_parent')
+manage_props_allowed = checkPermission(ManageProperties, context)
+
+# information pour remonter au dossier parent
+up_info = {}
+if upitems_list_allowed:
+	up_obj = context.aq_parent
+	if hasattr(up_obj, 'portal_url'):
+		up_url = up_obj.getActionInfo('object/folderContents')['url']
+		up_info = { 'icon': '%s/UpFolder_icon.gif' % portal_url,
+					'id': up_obj.getId(),
+					'url': up_url }
+	else:
+		up_info = { 'icon': '',
+					'id': 'Root',
+					'url': '' }
+options['up_info'] = up_info
+
+target = context.getActionInfo(default_target)['url']
+
+if not key:
+	(key, reverse) = context.getDefaultSorting()
+	is_default = 1
+elif (key, reverse) == context.getDefaultSorting():
+	is_default = 1
+else:
+	is_default = 0
+
+columns = ( {'key': 'Lock',
+			 'title': '',
+			 'width': '16',
+			 'colspan': None}
+			, {'key': 'Type',
+			 'title': 'Type',
+			 'width': None,
+			 'colspan': '2'}
+			, {'key': 'title_or_id',
+			 'title': 'Name',
+			 'width': None,
+			 'colspan': None}
+			, {'key': 'modified',
+			 'title': 'Last Modified',
+			 'width': None,
+			 'colspan': None}
+			, {'key': 'position',
+			 'title': 'Position',
+			 'width': None,
+			 'colspan': None }
+			)
+
+for column in columns:	
+	images = []
+	if key == column['key'] :
+		if not is_default and manage_props_allowed :
+			images.append( {'src' : getattr(context, 'set_default_sorting.gif').absolute_url(),
+							'alt' : 'Set Sorting as Default',
+							'id'	 : 'SetSortingAsDefault',
+							'href': '%s?%s' % (target, make_query(items_sort=True,
+																  key=key,
+																  reverse= (key != 'position' and [reverse] or [False])[0] )
+												  )
+							 }
+							 )
+
+		if key != 'position' :
+			if reverse :
+				toggleImg = getattr(context, 'arrowDown.gif')
+				alt = 'descending sort'
+			else :
+				toggleImg = getattr(context, 'arrowUp.gif')
+				alt = 'ascending sort'
+			query = make_query(key=column['key'], reverse = not reverse)
+		else :	
+			toggleImg = getattr(context, 'arrowUp.gif')
+			alt = 'ascending sort'
+			query = make_query(key=column['key'])
+		images.append( {'src' : toggleImg.absolute_url(), 'alt' : alt} )
+	else :
+		if key != 'position' :
+			query = make_query(key=column['key'], reverse = reverse)
+		else :
+			query = make_query(key=column['key'])
+	
+	column['url'] = '%s?%s' % (target, query)
+	column['images'] = images
+
+context.filterCookie()
+folderfilter = context.REQUEST.get('folderfilter', '')
+filter = context.decodeFolderFilter(folderfilter)
+items = context.listNearestFolderContents(contentFilter=filter)
+sort_dir = reverse and 'desc' or 'asc'
+sortFunc = key in ['Type', 'title_or_id'] and 'nocase' or 'cmp'
+items = sequence.sort( items, ((key, sortFunc, sort_dir),) )
+batch_obj = Batch(items, 20, b_start, orphan=0, quantumleap=1)
+items = []
+i = 1
+display_delete_button = False
+for item in batch_obj:
+	item_icon = item.getIcon(1)
+	item_id = item.getId()
+	item_position = key == 'position' and str(b_start + i) or '...'
+	i += 1
+	item_url = item.absolute_url()
+	try : item_delete_allowed = context.objectIdCanBeDeleted(item_id)
+	except : item_delete_allowed = checkPermission(DeleteObjects, context) # std zope perm
+	if not display_delete_button :
+		display_delete_button = item_delete_allowed
+	items.append(
+		{'lock' : not checkPermission(ModifyPortalContent, item),
+		 'checkbox': item_delete_allowed and ('cb_%s' % item_id) or '',
+		 'icon': item_icon and ( '%s/%s' % (portal_url, item_icon) ) or '',
+		 'id': item_id,
+		 'modified': item.modified().strftime(locale_date_fmt),
+		 'position': item_position,
+		 'title_or_id': item.title_or_id(),
+		 'type': item.Type() or None,
+		 'url': item_url } )
+
+options['batch'] = { 'listColumnInfos': tuple(columns),
+					 'listItemInfos': tuple(items),
+					 'sort_key' : key,
+					 'sort_dir' : sort_dir,
+					 'batch_obj': batch_obj }
+
+hidden_vars = []
+for name, value in html_marshal(**default_kw):
+	hidden_vars.append( {'name': name, 'value': value} )
+	
+# buttons
+buttons = []
+if items_add_allowed and context.allowedContentTypes():
+	buttons.append( {'name': 'items_new', 'value': 'New...'} )
+	if items:
+		buttons.append( {'name': 'items_rename', 'value': 'Rename'} )
+		
+if checkPermission(ViewManagementScreens, context) and items:
+	buttons.append( {'name': 'items_cut', 'value': 'Cut'} )
+	buttons.append( {'name': 'items_copy', 'value': 'Copy'} )
+	
+if items_add_allowed and context.cb_dataValid():
+	buttons.append( {'name': 'items_paste', 'value': 'Paste'} )
+	
+if display_delete_button and items:
+	buttons.append( {'name': 'items_delete', 'value': 'Delete'} )
+
+length = batch_obj.sequence_length
+is_orderable = manage_props_allowed and (key == 'position') and length > 1
+is_sortable = manage_props_allowed and not is_default
+options['form'] = { 'action': target,
+					'listHiddenVarInfos': tuple(hidden_vars),
+					'listButtonInfos': tuple(buttons),
+					'is_orderable': is_orderable,
+					'is_sortable': is_sortable }
+if not ajax and is_orderable :
+	deltas = range( 1, min(5, length) ) + range(5, length, 5)
+	options['form']['listDeltas'] = tuple(deltas)
+
+if template and macro :
+	options['template'] = template
+	options['macro'] = macro
+	return context.use_macro(**options)
+else :
+	options.update(others)
+	return context.folder_contents_template(**options)
+
diff --git a/skins/custom_generic/folder_contents_template.pt b/skins/custom_generic/folder_contents_template.pt
new file mode 100644
index 0000000..ba3001c
--- /dev/null
+++ b/skins/custom_generic/folder_contents_template.pt
@@ -0,0 +1,54 @@
+<html metal:use-macro="here/main_template/macros/master">
+
+  <head>
+    <title>folder_contents</title>
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8" />
+		<script metal:fill-slot="javascript_head_slot" tal:attributes="src here/folder_contents_script.js/absolute_url" type="text/javascript"></script>
+  </head>
+
+  <body>
+    <div tal:define="hideContentByLine python:1" metal:fill-slot="header">
+      <div metal:use-macro="here/widgets/macros/generic_header">generic_header</div>
+    </div>
+    <div metal:fill-slot="main" i18n:domain="cmf_default" tal:omit-tag=""
+    		 tal:define="form options/form">
+      <form method="post" tal:attributes="action string:${here/absolute_url}/folder_contents">
+	      <div id="FolderListing">
+	      	<div metal:use-macro="here/folder_contents_macros/macros/FolderListing">FolderListing macro</div>
+				</div>
+	      <br/>
+	      <div metal:use-macro="context/form_widgets/macros/buttons">
+	        buttons here
+	      </div>
+
+				<noscript>
+				<div class="FormButtons" tal:condition="form/listDeltas|nothing" i18n:domain="plinn">
+					<input type="submit" name="items_up" value="Up"
+					   i18n:attributes="value" />
+					/
+					<input type="submit" name="items_down" value="Down"
+					   i18n:attributes="value" />
+					<span i18n:translate="move_by" tal:omit-tag="">by</span>
+					<select name="delta:int">
+					 <option value=""
+					    tal:repeat="delta form/listDeltas"
+					    tal:attributes="value delta"
+					    tal:content="delta">
+					 </option>
+					</select>
+					<input type="submit" name="items_top" value="Top"
+					   i18n:attributes="value" />
+					<input type="submit" name="items_bottom" value="Bottom"
+					   i18n:attributes="value" />
+				</div>
+				</noscript>
+
+      </form>
+			<script type="text/javascript">
+			//<!--
+				initForms(document.getElementById("main_body"));
+			// -->
+			</script>
+    </div>
+  </body>
+</html>
\ No newline at end of file
diff --git a/skins/custom_generic/folder_icon.gif b/skins/custom_generic/folder_icon.gif
new file mode 100644
index 0000000..316575f
Binary files /dev/null and b/skins/custom_generic/folder_icon.gif differ
diff --git a/skins/custom_generic/folder_localrole_form.pt b/skins/custom_generic/folder_localrole_form.pt
new file mode 100755
index 0000000..82b1c84
--- /dev/null
+++ b/skins/custom_generic/folder_localrole_form.pt
@@ -0,0 +1,28 @@
+<html xmlns="http://www.w3.org/1999/xhtml" metal:use-macro="here/main_template/macros/master">
+
+  <head>
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8" />
+    <title>Local roles form</title>
+  </head>
+
+  <body metal:fill-slot="main" i18n:domain="plinn" tal:omit-tag="">
+    <table metal:use-macro="here/local_roles_macros/macros/local_roles_settings">
+      <tr>
+        <td>
+          <div metal:use-macro="here/local_roles_macros/macros/local_roles_tabs">
+            local_roles_tabs
+          </div>
+        </td>
+      </tr>
+      <tr>
+        <td tal:omit-tag="" metal:fill-slot="form">
+          <div metal:use-macro="here/local_roles_macros/macros/local_roles_summary">
+            Current local roles listing
+          </div>
+        </td>
+      </tr>
+    </table>
+    <p></p>
+  </body>
+
+</html>
\ No newline at end of file
diff --git a/skins/custom_generic/folder_rename_form.py b/skins/custom_generic/folder_rename_form.py
new file mode 100644
index 0000000..731bcf1
--- /dev/null
+++ b/skins/custom_generic/folder_rename_form.py
@@ -0,0 +1,49 @@
+##parameters=b_start=0, key='', reverse=0, ids=(), new_ids=(), rename='', cancel='', ajax=''
+##
+from Products.CMFCore.utils import getToolByName
+from Products.CMFDefault.utils import html_marshal
+
+utool = getToolByName(script, 'portal_url')
+portal_url = utool()
+
+
+form = context.REQUEST.form
+default_kw = {'b_start': b_start, 'key': key, 'reverse': reverse}
+if ajax :
+	default_kw.update({'ajax' : ajax})
+if rename and \
+		context.folder_rename_control(**form) and \
+		context.setRedirect(context, 'object/folderContents', **default_kw):
+	return
+elif cancel and \
+		context.setRedirect(context, 'object/folderContents', **default_kw):
+	return
+
+
+options = {}
+
+c = context.aq_explicit
+raw_items = [ getattr(c, id) for id in ids if hasattr(c, id) ]
+raw_items = [ item for item in raw_items if item.cb_isMoveable() ]
+items = []
+for item in raw_items:
+	item_icon = item.getIcon(1)
+	items.append( { 'icon': item_icon and ( '%s/%s' % (portal_url, item_icon) ) or '',
+					'id': item.getId(),
+					'title': item.Title(),
+					'type': item.Type() or None } )
+options['batch'] = { 'listItemInfos': tuple(items) }
+
+target = context.getActionInfo('object/rename_items')['url']
+hidden_vars = []
+default_kw.pop('ajax', None)
+for name, value in html_marshal(**default_kw):
+	hidden_vars.append( {'name': name, 'value': value} )
+buttons = []
+buttons.append( {'name': 'rename', 'value': 'Rename'} )
+buttons.append( {'name': 'cancel', 'value': 'Cancel'} )
+options['form'] = { 'action': target,
+					'listHiddenVarInfos': tuple(hidden_vars),
+					'listButtonInfos': tuple(buttons) }
+
+return context.folder_rename_template(**options)
diff --git a/skins/custom_generic/index_html_utils.pt b/skins/custom_generic/index_html_utils.pt
new file mode 100755
index 0000000..e14c13f
--- /dev/null
+++ b/skins/custom_generic/index_html_utils.pt
@@ -0,0 +1,128 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+<html xmlns="http://www.w3.org/1999/xhtml">
+
+  <head>
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8" />
+    <title>index html utils</title>
+  </head>
+
+  <body bgcolor="#ffffff">
+    <div metal:define-macro="index_header">
+      <h1 id="DesktopTitle" tal:content="here/Title">Document Title</h1>
+      <div id="DesktopDescription" tal:content="here/Description">
+        Document Description goes here.
+      </div>
+    </div>
+    <div metal:define-macro="index_content" i18n:domain="cmf_default">
+      <div tal:define="auth_filter nocall: modules/ZTUtils/LazyFilter;
+                   types python:here.getTypeInfo().allowed_content_types ;
+                   raw_items python: here.contentValues(filter={'portal_type': types } );
+                   items python: auth_filter( raw_items, skip='View' );
+                  ">
+        <div tal:condition="items">
+          <h4 i18n:translate="">Content</h4>
+          <ul>
+            <li tal:repeat="item items">
+              <a href="." tal:attributes="href item/absolute_url">
+                <img src="." alt="title" align="middle" border="0"
+                     tal:attributes="src   string:${item/portal_url}/${item/getIcon};
+                                     alt   string:${item/Type};
+                                     title string:${item/Type}"
+                     i18n:attributes="alt; title" />
+              </a>
+              <a href="." tal:attributes="href item/absolute_url" tal:content="item/Title">Title </a>
+            </li>
+            <blockquote tal:condition="exists: item/Description" tal:content="item/Description">
+              Description <!--fmt="structured-text'--></blockquote>
+          </ul>
+        </div>
+      </div>
+    </div>
+    <div metal:define-macro="index_links" i18n:domain="cmf_default">
+      <div tal:define="auth_filter nocall: modules/ZTUtils/LazyFilter;
+                   default_types python:( 'Link', 'Favorite', 'Topic');
+                   types types | here/show_link_types | default_types;
+                   raw_items python: here.contentValues(filter={ 'portal_type': types } );
+                   items python: auth_filter( raw_items, skip='View' );
+                  ">
+        <div tal:condition="items">
+          <h4 i18n:translate="">Related Resources</h4>
+          <ul>
+            <li tal:repeat="item items">
+              <a href="." tal:attributes="href item/absolute_url">
+                <img src="(EmptyReference!)" alt="title" align="middle" border="0"
+                     tal:attributes="src   string:${item/portal_url}/${item/getIcon};
+                                     alt   string:${item/Type};
+                                     title string:${item/Type}"
+                     i18n:attributes="alt; title" />
+              </a>
+              <a href="." tal:attributes="href item/absolute_url" tal:content="item/Title">Title </a>
+            </li>
+            <blockquote tal:condition="exists: item/Description" tal:content="item/Description">
+              Description <!--fmt="structured-text'--></blockquote>
+          </ul>
+        </div>
+      </div>
+    </div>
+    <div metal:define-macro="index_folders" i18n:domain="cmf_default">
+      <div tal:define="auth_filter nocall: modules/ZTUtils/LazyFilter;
+                   default_types python:( 'Folder',);
+                   types types | here/show_folder_types | default_types;
+                   raw_items python: here.contentValues(filter={ 'portal_type': types } );
+                   items python: auth_filter( raw_items, skip='View' );
+                  ">
+        <div tal:condition="items">
+          <h4 i18n:translate="">Folders</h4>
+          <ul>
+            <li tal:repeat="item items">
+              <a href="." tal:attributes="href item/absolute_url">
+                <img src="(EmptyReference!)" alt="title" align="middle" border="0"
+                     tal:attributes="src   string:${item/portal_url}/${item/getIcon};
+                                     alt   string:${item/Type};
+                                     title string:${item/Type}"
+                     i18n:attributes="alt; title" />
+              </a>
+              <a href="." tal:attributes="href item/absolute_url" tal:content="item/TitleOrId">Title </a>
+            </li>
+            <blockquote tal:condition="exists: item/Description" tal:content="item/Description">
+              Description <!--fmt="structured-text'--></blockquote>
+          </ul>
+        </div>
+      </div>
+    </div>
+    <div metal:define-macro="news_box" i18n:domain="cmf_default">
+      <table class="NewsItems" width="100%" border="0" cellspacing="0" cellpadding="0">
+        <tbody tal:define="news python: here.portal_catalog( meta_type='News Item', sort_on='Date', sort_order='reverse', review_state='published');
+                    Batch python:modules['ZTUtils'].Batch;
+		            global batch python:Batch(news, 10, 0, orphan=1)">
+          <tr>
+            <td class="NewsBorder" rowspan="13" bgcolor="#6699CC" width="1">
+              <img src="spacer.gif" alt=" " height="2" width="1" border="0" />
+            </td>
+            <td class="NewsTitle" valign="top" width="100%">
+              <b i18n:translate="">News</b>
+            </td>
+          </tr>
+          <tr class="NewsItemRow" tal:condition="news" tal:repeat="news batch">
+            <td valign="top">
+              <a href="." tal:attributes="href python:news.getURL()" tal:content="news/Title"></a><br />
+              <span tal:replace="news/Date">Date</span>
+            </td>
+          </tr>
+          <tr class="NewsItemRow" tal:condition="python:not(news)">
+            <td valign="top" i18n:translate="">
+              No news is no news.
+            </td>
+          </tr>
+          <tr class="NewsItemRow">
+            <td>
+              <a href="." i18n:translate="">More...</a>
+            </td>
+          </tr>
+        </tbody>
+      </table>
+    </div>
+  </body>
+
+</html>
\ No newline at end of file
diff --git a/skins/custom_generic/join_form.py b/skins/custom_generic/join_form.py
new file mode 100644
index 0000000..1513e25
--- /dev/null
+++ b/skins/custom_generic/join_form.py
@@ -0,0 +1,63 @@
+##parameters=b_start=0, member_id='', given_name='', name='', member_email='', password='', confirm='', send_password='', add='', cancel='', ajax=''
+##
+from Products.CMFCore.utils import getToolByName
+from Products.CMFDefault.permissions import ManageUsers
+from Products.Plinn.RegistrationTool import MODE_ANONYMOUS, MODE_REVIEWED
+
+mtool = getToolByName(script, 'portal_membership')
+ptool = getToolByName(script, 'portal_properties')
+rtool = getToolByName(script, 'portal_registration')
+atool = getToolByName(script, 'portal_actions')
+utool = getToolByName(script, 'portal_url')
+portal_url = utool()
+validate_email = ptool.getProperty('validate_email')
+is_anon = mtool.isAnonymousUser()
+is_newmember = False
+is_usermanager = mtool.checkPermission(ManageUsers, mtool)
+
+
+form = context.REQUEST.form
+if add and \
+		context.validatePassword(**form) and \
+		context.members_add_control(**form) and \
+		context.setRedirect(atool, 'user/join', b_start=b_start, ajax=ajax):
+	return
+elif cancel and \
+		context.setRedirect(mtool, 'global/manage_members', b_start=b_start, ajax=ajax):
+	return
+
+
+options = {}
+
+if context.REQUEST.get('portal_status_message', '') == 'Success!':
+	is_anon = False
+	is_newmember = True
+
+options['title'] = is_usermanager and 'Register Member' or 'Become a Member'
+options['member_id'] = member_id
+options['given_name'] = given_name
+options['name'] = name
+options['member_email'] = member_email
+options['password'] = is_newmember and context.REQUEST.get('password', '') or ''
+options['send_password'] = send_password
+options['portal_url'] = portal_url
+options['isAnon'] = is_anon
+options['isAnonOrUserManager'] = is_anon or is_usermanager
+options['isNewMember'] = is_newmember
+options['isOrdinaryMember'] = not (is_anon or is_newmember or is_usermanager)
+options['validate_email'] = validate_email
+options['isAnonRegistration'] = rtool.getMode() == MODE_ANONYMOUS
+options['isReviewedRegistration'] = rtool.getMode() == MODE_REVIEWED
+
+buttons = []
+if is_newmember:
+	target = atool.getActionInfo('user/logged_in')['url']
+	buttons.append( {'name': 'login', 'value': 'Log in'} )
+else:
+	target = atool.getActionInfo('user/join')['url']
+	buttons.append( {'name': 'add', 'value': 'Register'} )
+	buttons.append( {'name': 'cancel', 'value': 'Cancel'} )
+options['form'] = { 'action': target,
+					'listButtonInfos': tuple(buttons) }
+options['ajax']=ajax
+return context.join_template(**options)
diff --git a/skins/custom_generic/join_template.pt b/skins/custom_generic/join_template.pt
new file mode 100644
index 0000000..c8aa939
--- /dev/null
+++ b/skins/custom_generic/join_template.pt
@@ -0,0 +1,134 @@
+<html metal:use-macro="context/main_template/macros/master">
+<head>
+  <meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
+</head>
+<body>
+
+
+<metal:slot metal:fill-slot="main_no_tabs" i18n:domain="cmf_default"
+   tal:define="form options/form">
+<h1 tal:content="options/title" i18n:translate="">Become a member</h1>
+<div class="Desktop">
+
+<tal:case tal:condition="options/isOrdinaryMember">
+  <p i18n:translate="">You are already a member. You may use the
+      <a href="personalize_form">personalization form</a>
+       to change your membership information.</p>
+</tal:case>
+
+<tal:case tal:condition="python:options['isNewMember'] and options['isAnonRegistration']">
+	<p i18n:translate="">You have been registered as a member.</p>
+	
+	<p tal:condition="options/validate_email" i18n:translate="">You will receive
+	  an email shortly containing your password and instructions on how to
+	  activate your membership.</p>
+	
+	<tal:case tal:condition="not: options/validate_email">
+		<p i18n:translate="">Click the button to log in immediately.</p>
+		<form tal:attributes="action form/action">
+			<input type="hidden" name="__ac_name"  value=""
+			       tal:attributes="value options/member_id" />
+			<input type="hidden" name="__ac_password" value=""
+			       tal:attributes="value options/password" />
+			<input type="hidden" name="noAjax" value="1" />
+			<metal:macro metal:use-macro="context/form_widgets/macros/buttons" />
+		</form>
+	</tal:case>
+</tal:case>
+
+<tal:case tal:condition="python:options['isNewMember'] and options['isReviewedRegistration']">
+	<p i18n:translate="">Your registration request has been taken into account.</p>
+	
+	<p tal:condition="options/validate_email" i18n:translate="">Your request will be reviewed
+		soon by a portal administrator. You will receive
+	  an email containing your password and
+	  instructions on how to activate your membership 
+	  when your registration will be approved.</p>
+	
+	<p tal:condition="not:options/validate_email" i18n:translate="">Your request will be reviewed
+		soon by a portal administrator. You will receive
+	  an email when your registration will be approved.</p>
+	
+	<p><a href="" tal:attributes="href options/portal_url"
+	      i18n:translate="">Return to homepage</a></p>
+</tal:case>
+
+<tal:case tal:condition="options/isAnon">
+  <p i18n:translate="">Becoming a member gives you the ability to personalize
+    the site and participate in the community.</p>
+
+  <p i18n:translate="">It does not cost any money to become a member and your
+    email and other personal information will remain private.</p>
+
+  <p tal:condition="options/validate_email" i18n:translate="">
+      You must submit a valid email address. This address will be used
+      to send you a randomly-generated password.  Once you have logged
+      in with this password, you may change it to anything you like.</p>
+</tal:case>
+
+<tal:case tal:condition="options/isAnonOrUserManager">
+  <form action="." method="post"
+        tal:attributes="action form/action">
+   <table class="FormLayout">
+    <tr>
+     <th i18n:translate="">Member ID</th>
+     <td>
+      <input type="text" name="member_id" size="30" value=""
+             tal:attributes="value options/member_id" />
+     </td>
+    </tr>
+    <tr>
+      <th i18n:translate="">First name</th>
+      <td>
+        <input type="text" name="given_name" size="30" value="" tal:attributes="value options/given_name|nothing" />
+      </td>
+    </tr>
+		<tr>
+		  <th i18n:translate="">Last name</th>
+		  <td>
+		    <input type="text" name="name" size="30" value="" tal:attributes="value options/name|nothing" />
+		  </td>
+		</tr>
+		<tr>
+     <th i18n:translate="">Email Address</th>
+     <td>
+      <input type="text" name="member_email" size="30" value=""
+             tal:attributes="value options/member_email" />
+     </td>
+    </tr><tal:case tal:condition="not: options/validate_email">
+    <tr>
+     <th i18n:translate="">Password</th>
+     <td>
+      <input type="password" name="password" size="30" />
+     </td>
+    </tr>
+    <tr>
+     <th i18n:translate="">Password (confirm)</th>
+     <td>
+      <input type="password" name="confirm" size="30" />
+     </td>
+    </tr>
+    <tr>
+     <th i18n:translate="">Mail Password?</th>
+     <td>
+      <input type="checkbox" name="send_password" id="cb_send_password"
+             tal:attributes="checked options/send_password" />
+      <em><label for="cb_send_password" i18n:translate="">Check this box to
+        have the password mailed.</label></em>
+     </td>
+    </tr></tal:case>
+    <tr>
+     <td>&nbsp;</td>
+     <td>
+      <metal:macro metal:use-macro="context/form_widgets/macros/buttons" />
+     </td>
+    </tr>
+   </table>
+  </form>
+</tal:case>
+
+</div>
+</metal:slot>
+
+</body>
+</html>
diff --git a/skins/custom_generic/logged_in.py b/skins/custom_generic/logged_in.py
new file mode 100755
index 0000000..c4663c4
--- /dev/null
+++ b/skins/custom_generic/logged_in.py
@@ -0,0 +1,53 @@
+##parameters=
+##
+from Products.CMFCore.utils import getUtilityByInterfaceName
+from Products.CMFCore.utils import getToolByName
+from Products.CMFDefault.utils import decode
+from ZTUtils import make_query as mq
+from Products.CMFDefault.utils import Message as _
+
+mtool = getToolByName(script, 'portal_membership')
+ptool = getUtilityByInterfaceName('Products.CMFCore.interfaces.IPropertiesTool')
+stool = getToolByName(script, 'portal_skins')
+utool = getToolByName(script, 'portal_url')
+atool = getToolByName(script, 'portal_actions')
+portal_url = utool()
+portal = utool.getPortalObject()
+
+
+if stool.updateSkinCookie():
+	context.setupCurrentSkin()
+
+
+options = {}
+
+isAnon = mtool.isAnonymousUser()
+if isAnon:
+	context.REQUEST.RESPONSE.expireCookie('__ac', path='/')
+	options['is_anon'] = True
+	options['title'] = _(u'Login failure')
+	options['admin_email'] = ptool.getProperty('email_from_address')
+else:
+	mtool.createMemberArea()
+	member = mtool.getAuthenticatedMember()
+	now = context.ZopeTime()
+	last_login = member.getProperty('login_time', None)
+	member.setProperties(last_login_time=last_login, login_time=now)
+	is_first_login = (last_login == '2000/01/01' and
+					  ptool.getProperty('validate_email'))
+	if is_first_login:
+		member.setProperties(last_login_time='1999/01/01', login_time=now)
+		target = '%s/password_form' % portal_url
+		context.REQUEST.RESPONSE.redirect(target)
+		return
+	else:
+		member.setProperties(last_login_time=last_login, login_time=now)
+		came_from = context.REQUEST.get('came_from', None)
+		if came_from:
+			return context.REQUEST.RESPONSE.redirect(came_from)
+		else :
+			url = atool.getActionInfo('user/logged_in', object=portal)['url']
+			url = '%s?%s' %(url, mq(portal_status_message=_('Login success')))
+			return context.REQUEST.RESPONSE.redirect(url)
+
+return context.logged_in_template(**decode(options, script))
diff --git a/skins/custom_generic/logged_in_template.pt b/skins/custom_generic/logged_in_template.pt
new file mode 100644
index 0000000..68a9b00
--- /dev/null
+++ b/skins/custom_generic/logged_in_template.pt
@@ -0,0 +1,77 @@
+<html metal:use-macro="here/main_template/macros/master"
+      xmlns:tal="http://xml.zope.org/namespaces/tal" xmlns:metal="http://xml.zope.org/namespaces/metal">
+  <head>
+    <title>Logged in template</title>
+  </head>
+  <body i18n:domain="cmf_default">
+    <div metal:fill-slot="main_no_tabs" tal:omit-tag="">
+      <div tal:condition="options/is_anon" tal:omit-tag="">
+        <h1 class="DesktopTitle" i18n:translate="">Login failure</h1>
+
+        <p class="Desktop" i18n:translate="">You are not currently logged in. Your
+          username and or password may be incorrect. Your browser may also not be
+          configured to accept HTTP cookies. If you need help please contact
+           <a href="mailto:admin@here.com" title="Email Admin"
+              tal:attributes="href string:mailto:${options/admin_email}"
+              tal:content="options/admin_email"
+              i18n:name="admin_email">Email Admin</a>.
+        </p>
+        
+      </div>
+      
+      <div tal:condition="options/changePassword|nothing" tal:omit-tag="">
+       <h1 class="DesktopTitle" i18n:translate="">Welcome!</h1>
+
+       <p class="Desktop" i18n:translate="">
+          This is the first time that you've logged in to
+          <span tal:replace="portal_title" i18n:name="portal_title">Here</span>.
+          Before you start exploring you need to change your original password.
+          This will ensure that the password we sent you via email cannot be
+          used in a malicious manner.</p>
+
+       <p class="Desktop" i18n:translate="">
+          Please use the form below to change your password.</p>
+
+       <form action="change_password" method="post"
+             tal:attributes="action string:${portal_url}/change_password"
+       >
+        <input type="hidden" name="user" value=""
+               tal:attributes="value member" />
+        <input type="hidden" name="domains:tokens" value="" />
+        <input type="hidden" name="redirect" value=""
+               tal:attributes="value string:${portal_url}/" />
+
+        <table>
+
+         <tr valign="top" align="left">
+          <th i18n:translate="">Username</th>
+          <td><span tal:replace="member">You</span></td>
+         </tr>
+
+         <tr valign="top"  align="left">
+          <th i18n:translate="">New password</th>
+          <td><input type="password" name="password" /></td>
+         </tr>
+
+         <tr valign="top"  align="left">
+          <th i18n:translate="">Confirm new password</th>
+          <td><input type="password" name="confirm" /></td>
+         </tr>
+
+         <tr>
+          <td><br /></td>
+          <td>
+           <input type="submit" value="Change password"
+                  i18n:attributes="value" />
+          </td>
+         </tr>
+
+        </table>
+
+       </form>
+
+      </div>
+      
+    </div>
+  </body>
+</html>
diff --git a/skins/custom_generic/logged_out.pt b/skins/custom_generic/logged_out.pt
new file mode 100644
index 0000000..1099fa4
--- /dev/null
+++ b/skins/custom_generic/logged_out.pt
@@ -0,0 +1,18 @@
+<html xmlns:tal="http://xml.zope.org/namespaces/tal"
+      xmlns:metal="http://xml.zope.org/namespaces/metal"
+      metal:use-macro="here/main_template/macros/master">
+<head>
+  <meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
+</head>
+<body>
+<div metal:fill-slot="main_no_tabs" i18n:domain="cmf_default">
+<p tal:condition="python: here.portal_membership.isAnonymousUser()"
+   tal:content="string:You have been logged out."
+   i18n:translate=""></p>
+<p tal:condition="python: not(here.portal_membership.isAnonymousUser())"
+   i18n:translate="">You are logged in outside the portal. You may need to
+<a href="/manage_zmi_logout">log out of the Zope management interface</a>.
+</p>
+</div>
+</body>
+</html>
diff --git a/skins/custom_generic/login_form.pt b/skins/custom_generic/login_form.pt
new file mode 100644
index 0000000..3d3c4bb
--- /dev/null
+++ b/skins/custom_generic/login_form.pt
@@ -0,0 +1,81 @@
+<html xmlns:tal="http://xml.zope.org/namespaces/tal"
+      xmlns:metal="http://xml.zope.org/namespaces/metal"
+      metal:use-macro="here/main_template/macros/master">
+  <head>
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
+  </head>
+<body>
+<div metal:fill-slot="main_no_tabs" i18n:domain="cmf_default">
+<div class="Desktop">
+<h1 class="Desktop" i18n:translate="">Log in</h1>
+
+<form action="" method="post" tal:attributes="action string:${here/portal_url}/logged_in">
+<input type="hidden" name="noAjax" value="1" />
+
+<!-- ****** Enable the automatic redirect ***** -->
+<span tal:condition="exists: request/came_from">
+  <input type="hidden" name="came_from" value=""
+         tal:attributes="value request/came_from" />
+</span>
+<!-- ****** Enable the automatic redirect ***** -->
+<input type="hidden" name="just_login" value="True" />
+<table class="FormLayout">
+<tr>
+  <td align="left" valign="top">
+                <strong i18n:translate="user_name">Login</strong>
+              </td>
+  <td align="left" valign="top">
+  <input type="text" name="__ac_name" size="20" value=""
+         tal:attributes="value python: request.get('__ac_name') or ''" />
+  </td>
+</tr>
+<tr>
+  <td align="left" valign="top">
+  <strong i18n:translate="">Password</strong>
+  </td>
+  <td align="left" valign="top">
+  <input type="password" name="__ac_password" size="20" />
+  </td>
+</tr>
+
+<tr valign="top" align="left">
+<td></td>
+<td><input type="checkbox" name="__ac_persistent" value="1" checked="checked"
+      id="cb_remember" />
+<label for="cb_remember" i18n:translate="">Remember my name.</label>
+</td></tr>
+
+<tr>
+  <td align="left" valign="top">
+  </td>
+  <td align="left" valign="top">
+  <input type="submit" name="submit" value=" Login "
+         i18n:attributes="value" />
+  </td>
+</tr>
+
+</table>
+</form>
+
+<p><a href=""
+    tal:attributes="href string:${here/portal_url}/mail_password_form"
+    i18n:translate=""
+   >Forgot your password?</a>
+</p>
+
+<p i18n:translate="">Having trouble logging in? Make sure to enable cookies in
+    your web browser.
+</p>
+<p i18n:translate="">Don't forget to logout or exit your browser when you're
+  done.
+</p>
+
+<p i18n:translate="">Setting the 'Remember my name' option will set a cookie
+  with your username, so that when you next log in, your user name will
+  already be filled in for you.
+</p>
+</div>
+</div>
+</body>
+</html>
+
diff --git a/skins/custom_generic/mail_password_form.pt b/skins/custom_generic/mail_password_form.pt
new file mode 100755
index 0000000..a9bdf65
--- /dev/null
+++ b/skins/custom_generic/mail_password_form.pt
@@ -0,0 +1,40 @@
+<html xmlns:tal="http://xml.zope.org/namespaces/tal"
+      xmlns:metal="http://xml.zope.org/namespaces/metal"
+      metal:use-macro="here/main_template/macros/master">
+<head>
+  <meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
+</head>
+<body>
+
+<div metal:fill-slot="main_no_tabs" i18n:domain="cmf_default">
+
+ <div class="Desktop"
+      tal:define="ptool here/portal_properties">
+
+  <h1 i18n:translate="">Don't panic!</h1>
+
+  <p i18n:translate="">Just enter your username below, click <em>Send</em>,
+    and your password will be mailed to you if you gave a valid email address
+    when you signed on.</p>
+
+  <p i18n:translate="">If this will not work for you (for example, if you
+    forget your member name or didn't enter your email address) send email to
+      <a tal:attributes="href string:mailto:${ptool/email_from_address}"
+         tal:content="ptool/email_from_address"
+         href="mailto:me@here.com"
+         i18n:name="admin_email">me@here.com</a>.</p>
+
+  <form action="mail_password"
+        tal:attributes="action string:${here/portal_url}/mail_password"
+  >
+   <input name="userid" />
+   <input type="submit" value=" Send " i18n:attributes="value" />
+  </form>
+
+ </div><!-- class="Desktop" -->
+
+</div><!-- metal:fill-slot="main" -->
+
+</body>
+</html>
+
diff --git a/skins/custom_generic/mail_password_response.pt b/skins/custom_generic/mail_password_response.pt
new file mode 100644
index 0000000..8368006
--- /dev/null
+++ b/skins/custom_generic/mail_password_response.pt
@@ -0,0 +1,15 @@
+<html xmlns:tal="http://xml.zope.org/namespaces/tal"
+      xmlns:metal="http://xml.zope.org/namespaces/metal"
+      metal:use-macro="here/main_template/macros/master">
+<head>
+  <meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
+</head>
+<body>
+<div metal:fill-slot="main_no_tabs" i18n:domain="cmf_default">
+<p id="DesktopStatusBar" i18n:translate="">Your password has been mailed.
+<br />
+It should arrive in your mailbox momentarily.</p>
+</div>
+</body>
+</html>
+
diff --git a/skins/custom_generic/mail_password_template.py b/skins/custom_generic/mail_password_template.py
new file mode 100644
index 0000000..11778d6
--- /dev/null
+++ b/skins/custom_generic/mail_password_template.py
@@ -0,0 +1,61 @@
+##parameters=rtool, request, member=None, password=''
+
+#TODO : translate messages
+#from Products.PlacelessTranslationService.MessageID import MessageIDFactory
+#_ = MessageIDFactory('cmf_default')
+_ = lambda x : lambda : x
+from quopri import encodestring
+
+portal = context.portal_url.getPortalObject()
+mtool = portal.portal_membership
+
+
+def convertMessage(msg) :
+	return msg.replace('${', '%(').replace('}', ')s')
+
+def encodeAdr(member) :
+	name = member.getMemberFullName(nameBefore=0)
+	email = member.getProperty('email')
+	qpName = encodestring(name).replace('=\n', '')
+	return '''"=?utf-8?q?%s?=" <%s>''' % (qpName, email)
+
+mfromName   = portal.email_from_name
+mfromEmail  = portal.email_from_address
+mfromQpName = encodestring(mfromName).replace('=\n', '')
+mfrom       = '''"=?utf-8?q?%s?=" <%s>''' % (mfromQpName, mfromEmail)
+
+sender = mfrom
+mto = encodeAdr(member)
+
+subject = convertMessage(_("${portal_title}: Membership reminder")()) % {'portal_title': portal.title}
+
+text = []
+pr = text.append
+
+pr(convertMessage(_("Your member id and password are: Member ID: ${member_id} Password: ${password}")()) % {'member_id':member.getId(), 'password':password})
+pr('')
+pr(_("You can use this URL to log in:")())
+pr('')
+
+login_url = mtool.getActionInfo('user/login')['url']
+pr(login_url)
+pr('')
+
+if len(login_url) > 70 :
+	pr(_("Be aware that this URL might wrap over two lines. If your browser shows an error message when you try to access the URL please make sure that you put in the complete string.")())
+
+
+time = context.ZopeTime().strftime(_("%Y/%m/%d at %I:%M:%S %p")())
+ip = request.HTTP_X_FORWARDED_FOR or request.REMOTE_ADDR
+pr(convertMessage(_("Request made by IP ${ip} at ${time}")()) % {'ip':ip, 'time':time})
+	
+text = '\n'.join(text)
+
+message = context.echange_mail_template(  From = sender
+										, To = mto
+										, Subject = "=?utf-8?q?%s?=" % encodestring(subject).replace('=\n', '')
+										, ContentType = 'text/plain'
+										, charset = 'UTF-8'
+										, body= text
+										)
+return message.encode('utf-8')
\ No newline at end of file
diff --git a/skins/custom_generic/main_template/macros/master.py b/skins/custom_generic/main_template/macros/master.py
new file mode 100644
index 0000000..f3adfe6
--- /dev/null
+++ b/skins/custom_generic/main_template/macros/master.py
@@ -0,0 +1,7 @@
+##parameters
+
+if context.REQUEST.form.get('ajax') :
+	template = context.main_template_ajax
+else :
+	template = context.main_template_standard
+return template.macros['master']
\ No newline at end of file
diff --git a/skins/custom_generic/main_template_standard.pt b/skins/custom_generic/main_template_standard.pt
new file mode 100755
index 0000000..cc512e1
--- /dev/null
+++ b/skins/custom_generic/main_template_standard.pt
@@ -0,0 +1,168 @@
+<metal:block define-macro="master">
+  <tal:block define="global main_macros here/main_template_macros/macros"/>
+  <metal:block use-macro="main_macros/global_defines"/>
+  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+  <html xmlns="http://www.w3.org/1999/xhtml">
+
+    <head>
+      <title tal:content="here/expanded_title">Title goes here</title>
+      <meta http-equiv="content-type" content="text/html;charset=utf-8" />
+      <meta name="description" tal:attributes="content portal_object/description" />
+      <meta name="keywords"
+            tal:condition="exists:portal_object/keywords"
+            tal:attributes="content python:', '.join(portal_object.getProperty('keywords', []))" />
+      <base tal:omit-tag="" metal:define-slot="base" />
+
+      <link rel="Shortcut Icon" type="image/x-icon" href="favicon.ico" tal:attributes="href string:$portal_url/favicon.ico" />
+      <link rel="alternate" type="application/rss+xml"
+      			tal:define="stool nocall:here/portal_syndication"
+      			tal:attributes="title here/title_or_id ; href string:${here/absolute_url}/RSS"
+      			tal:condition="python:stool.isSyndicationAllowed(here)" />
+			
+			<link rel="stylesheet" media="screen" tal:attributes="href here/global_plinn_style.css/absolute_url" />
+      <style type="text/css" media="all" tal:content="string:@import url(${here/calendar-system.css/absolute_url});"></style>
+
+      <link metal:define-slot="css_slot" tal:replace="nothing" />
+      <script type="text/javascript" tal:attributes="src here/epoz_script_detect.js/absolute_url"></script>
+      <script type="text/javascript" tal:attributes="src here/javascript_events_api.js/absolute_url"></script>
+      <script type="text/javascript" tal:attributes="src here/sarissa.js/absolute_url"></script>
+      <script type="text/javascript">
+      	//<!--
+				function absolute_url() {
+					var e = document.getElementById("Object_URL");
+					if (e)
+						return e.innerHTML;
+					else {
+						e = document.getElementById("BC_Object_URL");
+						if (e)
+							return e.innerHTML;
+						else
+							return document.location.href;
+					}
+				}
+
+				function portal_url() {
+					var e = document.getElementById("Portal_URL");
+					return e.innerHTML;
+				}
+
+      	var startupFunctions = new Array();
+
+				function registerStartupFunction(fct) {
+					startupFunctions.push(fct);
+				}
+
+				function runAjaxStartup() {
+					for (var i = 0 ; i < startupFunctions.length ; i++)
+						startupFunctions[i]();
+				}
+
+				addListener(window, 'load', runAjaxStartup);
+				
+				var progressImage;
+				function _initLoadingStatus() {
+					progressImage = document.getElementById('loading_progress');
+				}
+				registerStartupFunction(_initLoadingStatus);
+				
+				function showProgressImage() { progressImage.style.display = 'inline'; }
+				function hideProgressImage() { progressImage.style.display = 'none'; }
+
+
+        // -->
+      </script>
+      <script type="text/javascript" tal:attributes="src here/base_properties.js/absolute_url"></script>
+      <script type="text/javascript" tal:attributes="src here/fragment_importer.js/absolute_url"></script>
+      <script type="text/javascript" tal:attributes="src here/ajax_form_manager.js/absolute_url"></script>
+	    <script type="text/javascript" tal:attributes="src here/root_handlers.js/absolute_url"></script>
+			<script type="text/javascript" tal:attributes="src here/plinn_script_loader.js/absolute_url"></script>
+
+      <script type="text/javascript" metal:define-slot="javascript_head_slot" tal:replace="nothing"></script>
+    </head>
+
+    <body>
+    	<span style="display:none">
+	    	<span id="Portal_URL" tal:content="portal_url"></span>
+	    	<span id="ajax_config"  tal:content="python:request.get('ajaxConfig', request.SESSION.get('ajaxConfig', portal_object.getProperty('ajax_config')))"></span>
+	    	<script type="text/javascript">
+	    	// <!--
+	    	  AJAX_CONFIG = document.getElementById('ajax_config');
+					AJAX_CONFIG = parseInt(AJAX_CONFIG.innerHTML);
+	    	// -->
+	    	</script>
+	    </span>
+    	<a href="#documentContent" i18n:translate="" i18n:domain="plinn" class="hidden">Skip to content</a>
+      <div metal:use-macro="main_macros/top_bar">Top bar</div>
+      <div metal:use-macro="main_macros/user_menu_bar">User menu bar</div>
+      <div id="Breadcrumbs"><div metal:use-macro="main_macros/Breadcrumbs">Breadcrumbs</div></div>
+
+      <div id="main_body">
+        <table id="Forematter" width="100%" cellspacing="0">
+          <tr>
+          	<td id="leftCell" class="boxes_container" width="15%">
+            	<span metal:use-macro="main_macros/leftCell">Left cell</span>
+            </td>
+
+            <td id="mainCell" width="70%">
+
+	            <div class="DesktopStatusBar" tal:condition="request/portal_status_message|nothing">
+	              <img src="info.gif" alt="Information" tal:attributes="src here/info.gif/absolute_url" i18n:attributes="alt" />
+	              <span tal:content="request/portal_status_message" i18n:translate="">Status message.</span>
+	            </div>
+
+	            <a name="documentContent"></a>
+		          <div metal:define-slot="main_no_tabs" tal:omit-tag="">
+		            <div tal:condition="specialCtxHeader" tal:content="structure specialCtxHeader">special context header</div>
+								<div id="ContentTabs" tal:condition="not:specialCtxHeader">
+									<div class="tabs" metal:use-macro="here/tabs/macros/tabs">Content tabs</div>
+									<div metal:use-macro="here/tabs/macros/additional_tabs">Additional tabs</div>
+								</div>
+	              <div id="ForematterCell">
+	                <div class="header">
+	                  <div tal:omit-tag="" metal:define-slot="header">
+	                    <h1 id="DesktopTitle">
+	                      <span tal:replace="here/title_or_id">Page Title</span>
+	                    </h1>
+	                    <div id="DesktopDescription" tal:content="structure here/Description">
+	                      Description of the resource goes here, perhaps even wrapping lines; this is to make it long enough to test.
+	                    </div>
+	                  </div>
+	                </div>
+
+	                <div id="Desktop">
+	                  <div metal:define-slot="main">
+	                    <h2>Section Header</h2>
+	                    <p>The content of the object is <a href=".">rendered</a>
+	                    hre. Lorem ipsum dolorem. Nihil obstat imprimatur. Semper ubi sub ubi.
+	                    Non illegitimi carborundum. In vino veritas. E pluribus unam.
+	                    </p>
+	                  </div>
+	                </div>
+                  <div tal:condition="not:isAnon" tal:omit-tag="">
+                    <div id="ContentByLine" metal:use-macro="here/content_byline/macros/byline">
+                      Content by me
+                    </div>
+                  </div>
+	                <div metal:define-slot="footer" tal:replace="nothing">footer slot</div>
+	              </div>
+	            </div>
+
+            </td>
+            <!-- end_main_column -->
+            
+            <td id="rightCell" class="boxes_container" width="15%">
+            	<div metal:use-macro="main_macros/rightCell">Right cell</div>
+            </td>
+          </tr>
+        </table>
+        <div id="Footer" tal:content="python:getattr(portal_object, 'copyright_notice','') or '© Benoît Pin — École des mines de Paris 2006-2009'">© Benoît Pin — École des mines de Paris 2006-2009</div>
+      </div>
+      <div metal:use-macro="here/widgets/macros/debug">
+        DEBUG Information
+      </div>
+    </body>
+
+  </html>
+
+</metal:block>
\ No newline at end of file
diff --git a/skins/custom_generic/password_form.pt b/skins/custom_generic/password_form.pt
new file mode 100755
index 0000000..ce447f3
--- /dev/null
+++ b/skins/custom_generic/password_form.pt
@@ -0,0 +1,44 @@
+<html metal:use-macro="here/main_template/macros/master">
+<head>
+  <title>Password Form</title>
+  <meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
+</head>
+<body>
+<div class="config" metal:fill-slot="main_no_tabs" i18n:domain="cmf_default" tal:define="member python: here.portal_membership.getAuthenticatedMember()">
+  <h1 i18n:translate="">Change your Password</h1>
+<div class="error"
+     tal:replace="request/error"
+     tal:condition="request/error|nothing"><hr /></div>
+
+<form action="change_password" method="post"
+      tal:attributes="action string:${here/absolute_url}/change_password"
+>
+<table class="TwoColumnForm" cellspacing="0">
+ <tr>
+  <th i18n:translate="">Username</th>
+  <td><span tal:replace="member/getUserName">You</span>
+  </td>
+ </tr>
+ <tr>
+  <th i18n:translate="">New password</th>
+  <td><input type="password" name="password" />
+  </td>
+ </tr>
+          <tr>
+  <th i18n:translate="">Confirm new password</th>
+  <td><input type="password" name="confirm" />
+  </td>
+ </tr>
+          <tr>
+  <td><br /></td>
+  <td>
+   <input type="submit" value="Change" i18n:attributes="value" />
+  </td>
+ </tr>
+        </table>
+</form>
+
+</div>
+</body>
+</html>
+
diff --git a/skins/custom_generic/personalize_form.pt b/skins/custom_generic/personalize_form.pt
new file mode 100755
index 0000000..f4b2b8e
--- /dev/null
+++ b/skins/custom_generic/personalize_form.pt
@@ -0,0 +1,100 @@
+<html xmlns="http://www.w3.org/1999/xhtml" metal:use-macro="here/main_template/macros/master">
+  <head>
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8" />
+  </head>
+
+  <body>
+    <div metal:fill-slot="main_no_tabs" i18n:domain="cmf_default">
+      <div tal:define="purl here/portal_url;
+                  mtool here/portal_membership;
+                  member mtool/getAuthenticatedMember;
+                 ">
+        <div tal:condition="python: not( mtool.checkPermission( 'Set own properties'
+                                                        , here ) )">
+          <span id="dummy_for_redirect" tal:define="aurl here/absolute_url;
+                      rurl string:${purl}/login_form?came_from=${aurl};
+                      response request/RESPONSE;
+                      redirect python:response.redirect( rurl )" />
+        </div>
+        <!-- not Set own properties -->
+        <div class="config">
+          <h1 i18n:translate="">Member Preferences</h1>
+          <span tal:condition="request/msg|nothing" tal:replace="request/msg" />
+          <p i18n:translate=""><span i18n:name="link"><a href="password_form" i18n:translate="">Click here</a></span> to change your password.</p>
+          <form action="personalize" method="post" tal:attributes="action string:${purl}/personalize">
+            <table class="TwoColumnForm" cellspacing="0">
+              <tr>
+                <th i18n:translate="">Name</th>
+                <td>
+                  <input type="text" name="name" value="" tal:attributes="value member/name|nothing" />
+                </td>
+              </tr>
+              <tr>
+                <th i18n:translate="">Given Name</th>
+                <td>
+                  <input type="text" name="given_name" tal:attributes="value member/given_name|nothing" />
+                </td>
+              </tr>
+              <tr>
+                <th i18n:translate="">Email address</th>
+                <td>
+                  <input type="text" name="email" value="" tal:attributes="value member/email|nothing" />
+                </td>
+              </tr>
+              <tr>
+                <th i18n:translate="">Text editor</th>
+                <td>
+                  <select name="wysiwyg_editor" size="1">
+                    <option value="plain text" tal:repeat="editor python:portal_object.getProperty('available_editors')" tal:attributes="value editor ; selected python:member.getProperty('wysiwyg_editor', '') == editor" tal:content="editor" i18n:translate="">plain</option>
+                  </select>
+                </td>
+              </tr>
+              <!--
+              <tr>
+                <th valign="top" i18n:translate="">Photos width</th>
+                <td>
+                  <input type="text" name="photo_width" size="3" tal:attributes="value member/photo_width|nothing" />&nbsp;pixels
+                </td>
+              </tr>
+              <tr>
+                <th valign="top" i18n:translate="">Listed status</th>
+                <td tal:define="listed member/listed|nothing">
+                  <input id="cb_listed" type="radio" name="listed" value="on" tal:attributes="checked listed" /><label for="cb_listed" i18n:translate="">Listed</label>
+                  <dl class="FieldHelp">
+                    <dd i18n:translate="">You will show up on the public membership roster.</dd>
+                  </dl>
+                  <input id="cb_unlisted" type="radio" name="listed" value="" tal:attributes="checked python:( hasattr(member,'listed')
+                                  and not(member.getProperty( 'listed' ) ) )" /><label for="cb_unlisted" i18n:translate="">Unlisted</label>
+                  <dl class="FieldHelp">
+                    <dd i18n:translate="">You will <i>not</i> show up on the public membership roster. Your Member folder will still be publicly accessible unless you change its security settings.</dd>
+                  </dl>
+                </td>
+              </tr>
+              <tr tal:define="s_tool here/portal_skins" tal:condition="python:len(s_tool.getSkinSelections()) > 1">
+                <th i18n:translate="">Skin</th>
+                <td tal:define="current request/portal_skin|nothing;">
+                  <select name="portal_skin">
+                    <option value="" tal:attributes="value skin;
+                                selected python:current == skin" tal:define="skins python:s_tool.getSkinSelections()" tal:content="skin" tal:repeat="skin skins">skin</option>
+                  </select>
+                </td>
+              </tr>
+              -->
+              <tr>
+                <td><br /></td>
+                <td>
+                  <br />
+                  <input type="submit" value="Change" i18n:attributes="value" />
+                </td>
+              </tr>
+            </table>
+          </form>
+        </div>
+        <!-- class="Desktop" -->
+      </div>
+      <!-- tal:define="mtool" -->
+    </div>
+    <!-- metal:fill-slot="main" -->
+  </body>
+
+</html>
\ No newline at end of file
diff --git a/skins/custom_generic/reconfig_form.py b/skins/custom_generic/reconfig_form.py
new file mode 100644
index 0000000..8a0c540
--- /dev/null
+++ b/skins/custom_generic/reconfig_form.py
@@ -0,0 +1,38 @@
+##parameters=change='', ajax=''
+##
+from Products.CMFCore.utils import getUtilityByInterfaceName
+from Products.CMFCore.utils import getToolByName
+
+atool = getToolByName(script, 'portal_actions')
+ptool = getUtilityByInterfaceName('Products.CMFCore.interfaces.IPropertiesTool')
+
+form = context.REQUEST.form
+if change and \
+		context.portal_config_control(**form) and \
+		context.setRedirect(atool, 'global/configPortal', ajax=ajax):
+	return
+
+
+options = {}
+
+target = atool.getActionInfo('global/configPortal')['url']
+buttons = []
+buttons.append( {'name': 'change', 'value': 'Change'} )
+
+ajax_config = ptool.getProperty('ajax_config')
+options['form'] = { 'action': target,
+					'email_from_name': ptool.getProperty('email_from_name'),
+					'email_from_address': ptool.getProperty('email_from_address'),
+					'smtp_server': ptool.smtp_server(),
+					'title': ptool.title(),
+					'description': ptool.getProperty('description'),
+					'keywords': '\n'.join(ptool.getProperty('keywords', [])),
+					'copyright_notice': ptool.getProperty('copyright_notice'),
+					'validate_email': ptool.getProperty('validate_email'),
+					'default_charset': ptool.getProperty('default_charset', ''),
+					'slide_size' : ptool.getProperty('slide_size', ''),
+					'listButtonInfos': tuple(buttons),
+					'ajax_rootClickHandler' : ajax_config & 1 == 1,
+					'ajax_autoFormManager' : ajax_config & 2 == 2 }
+
+return context.reconfig_template(**options)
diff --git a/skins/custom_generic/reconfig_template.pt b/skins/custom_generic/reconfig_template.pt
new file mode 100644
index 0000000..075d511
--- /dev/null
+++ b/skins/custom_generic/reconfig_template.pt
@@ -0,0 +1,149 @@
+<html metal:use-macro="context/main_template/macros/master">
+<head>
+  <meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
+</head>
+<body metal:fill-slot="main_no_tabs" i18n:domain="cmf_default" tal:omit-tag="" tal:define="form options/form">
+
+<h1 i18n:translate="">Configure the Portal</h1>
+
+<div class="config">
+
+<p i18n:translate="">This form is used to set the portal configuration
+  options.</p>
+
+<form method="post" tal:attributes="action form/action">
+<table class="TwoColumnForm">
+ <tr>
+  <th i18n:translate="">Portal 'From' name</th>
+  <td>
+   <input name="email_from_name" value=""
+      tal:attributes="value form/email_from_name" />
+   <dl class="FieldHelp">
+    <dd i18n:translate="">When the portal generates mail, it uses this name as
+     its (apparent) sender.</dd>
+   </dl>
+  </td>
+ </tr>
+ <tr>
+  <th i18n:translate="">Portal 'From' address</th>
+  <td>
+   <input name="email_from_address" value=""
+      tal:attributes="value form/email_from_address" />
+   <dl class="FieldHelp">
+    <dd i18n:translate="">When the portal generates mail, it uses this address
+     as its (apparent) return address.</dd>
+   </dl>
+  </td>
+ </tr>
+ <tr>
+  <th i18n:translate="">SMTP server</th>
+  <td>
+   <input name="smtp_server" value=""
+      tal:attributes="value form/smtp_server" />
+   <dl class="FieldHelp">
+    <dd i18n:translate="">This is the address of your local SMTP (out-going
+     mail) server.</dd>
+   </dl>
+  </td>
+ </tr>
+ <tr>
+  <th i18n:translate="">Portal title</th>
+  <td>
+   <input name="title" value="" tal:attributes="value form/title" />
+   <dl class="FieldHelp">
+    <dd i18n:translate="">This is the title which appears at the top of every
+     portal page.</dd>
+   </dl>
+  </td>
+ </tr>
+ <tr>
+  <th i18n:translate="">Portal description</th>
+  <td class="TextField">
+   <textarea name="description" rows="3" cols="40" tal:content="form/description"></textarea>
+   <dl class="FieldHelp">
+    <dd i18n:translate=""> This description is made available via syndicated
+      content and elsewhere. It should be fairly brief.</dd>
+   </dl>
+  </td>
+ </tr>
+ <tr>
+  <th i18n:translate="">Keywords</th>
+  <td class="TextField">
+   <textarea name="keywords:lines" rows="6" cols="40" tal:content="form/keywords"></textarea>
+   <dl class="FieldHelp">
+    <dd i18n:translate="">Keywords describing the portal. Type one keyword (or expression) per line.</dd>
+   </dl>
+  </td>
+ </tr>
+ <tr i18n:domain="plinn">
+  <th i18n:translate="">Copyright notice</th>
+  <td class="TextField">
+   <input name="copyright_notice" value="" tal:attributes="value form/copyright_notice" />
+   <dl class="FieldHelp">
+    <dd i18n:translate="">Copyright notice displayed on the portal footer.</dd>
+   </dl>
+  </td>
+ </tr>
+ <tr>
+  <th i18n:translate="">Password policy</th>
+  <td><label>
+   <input type="radio" name="validate_email:boolean" value="True"
+      tal:attributes="checked form/validate_email" />
+   <tal:span i18n:translate="">Generate and email members' initial
+    password</tal:span></label>
+   <br /><label>
+   <input type="radio" name="validate_email:boolean" value="False"
+      tal:attributes="checked not:form/validate_email" />
+   <tal:span i18n:translate="">Allow members to select their initial
+    password</tal:span></label>
+  </td>
+ </tr>
+ <tr>
+  <th i18n:translate="">Portal default encoding</th>
+  <td>
+   <input name="default_charset" value="" disabled="disabled"
+      tal:attributes="value form/default_charset" />
+   <dl class="FieldHelp">
+    <dd i18n:translate="">Charset used to decode portal content strings.
+     If empty, 'ascii' is used.</dd>
+   </dl>
+  </td>
+ </tr>
+  <tr>
+    <th i18n:translate="">
+      Thumbnails size
+    </th>
+    <td>
+      <input name="slide_size:int" value="" tal:attributes="value form/slide_size" size="5" />
+      <dl class="FieldHelp">
+        <dd i18n:translate="">This is the size of the thumbnails in the photo album, in pixels.</dd>
+      </dl>
+    </td>
+  </tr>
+    <tr i18n:domain="plinn">
+      <th i18n:translate="">Default ajax options</th>
+      <td>
+        <label>
+          <input type="checkbox" name="ajax_rootClickHandler:boolean" tal:attributes="checked form/ajax_rootClickHandler" />
+          <span i18n:translate="" tal:omit-tag="">Enable handling of all clicks over links</span>
+        </label>
+        <br/>
+        <label>
+          <input type="checkbox" name="ajax_autoFormManager:boolean" tal:attributes="checked form/ajax_autoFormManager" />
+          <span i18n:translate="" tal:omit-tag="">Enable handling of all forms submissions</span>
+        </label>
+      </td>
+    </tr>
+  <tr>
+  <td>&nbsp;</td>
+  <td>
+   <metal:macro metal:use-macro="context/form_widgets/macros/buttons" />
+  </td>
+ </tr>
+</table>
+</form>
+
+</div>
+
+</body>
+</html>
diff --git a/skins/custom_generic/registered_notify_template.py b/skins/custom_generic/registered_notify_template.py
new file mode 100644
index 0000000..f82e4f3
--- /dev/null
+++ b/skins/custom_generic/registered_notify_template.py
@@ -0,0 +1,69 @@
+##parameters= rtool, request, member=None, password='', email=''
+
+#TODO : translate messages
+#from Products.PlacelessTranslationService.MessageID import MessageIDFactory
+#_ = MessageIDFactory('cmf_default')
+_ = lambda x : lambda : x
+from quopri import encodestring
+
+portal = context.portal_url.getPortalObject()
+mtool = portal.portal_membership
+
+
+def convertMessage(msg) :
+	return msg.replace('${', '%(').replace('}', ')s')
+
+def encodeAdr(member) :
+	name = member.getMemberFullName(nameBefore=0)
+	email = member.getProperty('email')
+	qpName = encodestring(name).replace('=\n', '')
+	return '''"=?utf-8?q?%s?=" <%s>''' % (qpName, email)
+
+mfromName   = portal.email_from_name
+mfromEmail  = portal.email_from_address
+mfromQpName = encodestring(mfromName).replace('=\n', '')
+mfrom       = '''"=?utf-8?q?%s?=" <%s>''' % (mfromQpName, mfromEmail)
+
+sender = mfrom
+mto = encodeAdr(member)
+
+subject = convertMessage(_("${portal_title}: Your Membership Information")()) % {'portal_title': portal.title}
+
+text = []
+pr = text.append
+
+pr(convertMessage(_("You have been registered as a member of \"${portal_title}\", which allows you to personalize your view of the website and participate in the community.")()) % {'portal_title': portal.title})
+
+if portal.description :
+	pr('')
+	pr(_("This describes the purpose of the website:")())
+	pr('')
+	pr(portal.description)
+
+pr('')
+pr(convertMessage(_("Visit us at ${portal_url}")()) % {'portal_url' : portal.absolute_url()})
+pr('')
+pr(convertMessage(_("Your member id and password are: Member ID: ${member_id} Password: ${password}")()) % {'member_id':member.getId(), 'password':password})
+pr('')
+pr(_("You can use this URL to log in:")())
+pr('')
+
+login_url = mtool.getActionInfo('user/login')['url']
+pr(login_url)
+pr('')
+
+if len(login_url) > 70 :
+	pr(_("Be aware that this URL might wrap over two lines. If your browser shows an error message when you try to access the URL please make sure that you put in the complete string.")())
+
+pr(mfromName+'.')
+	
+text = '\n'.join(text)
+
+message = context.echange_mail_template(  From = sender
+										, To = mto
+										, Subject = "=?utf-8?q?%s?=" % encodestring(subject).replace('=\n', '')
+										, ContentType = 'text/plain'
+										, charset = 'UTF-8'
+										, body= text
+										)
+return message.encode('utf-8')
\ No newline at end of file
diff --git a/skins/custom_generic/setup_talkback_tree.py b/skins/custom_generic/setup_talkback_tree.py
new file mode 100644
index 0000000..9ae9dff
--- /dev/null
+++ b/skins/custom_generic/setup_talkback_tree.py
@@ -0,0 +1,35 @@
+## Script (Python) "setup_talkback_tree"
+##parameters=tree_root, force_expand=None
+##title=Standard Tree
+##
+from ZTUtils import SimpleTreeMaker
+
+tm = SimpleTreeMaker('tb_tree')
+def getKids(object):
+	return object.talkback.getReplies()
+tm.setChildAccess(function=getKids)
+
+newReplyId = context.REQUEST.form.get('new_reply_id', None)
+if newReplyId :
+	reply = tree_root.talkback.getReply(newReplyId)
+	parents = {}
+	for p in reply.parentsInThread() : parents[p.id] = True
+	onBranch = parents.has_key
+	tm.setStateFunction( lambda o, s : onBranch(o.id) and 1 or s )
+	
+elif force_expand :
+	reply = tree_root.talkback.getReply(force_expand)
+	parents = {}
+	for p in reply.parentsInThread() : parents[p.id] = True
+	onBranch = parents.has_key
+	tm.setStateFunction( lambda o, s : onBranch(o.id) and 2 or s )
+
+tree, rows = tm.cookieTree(tree_root)
+
+resp = context.REQUEST.RESPONSE
+cookieValue = resp.cookies['tb_tree-state']['value']
+resp.setCookie('tb_tree-state', cookieValue, path = '/')
+
+
+rows.pop(0)
+return {'root': tree, 'rows': rows}
diff --git a/skins/custom_generic/talkback_tree.pt b/skins/custom_generic/talkback_tree.pt
new file mode 100644
index 0000000..dc3f731
--- /dev/null
+++ b/skins/custom_generic/talkback_tree.pt
@@ -0,0 +1,92 @@
+<html>
+<head>
+  <meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
+</head>
+<body>
+<div metal:define-macro="tree" tal:omit-tag="">
+    <table cellspacing="0"
+       tal:define="expand python:rfo_depth and (rfo.talkback.hasReplies(rfo) and rfo.talkback.getReplies()[-1].id or rfo.id) or nothing;
+                   t python:here.setup_talkback_tree(here, force_expand=expand);
+       						 rows t/rows;
+       						 insert_form_position python:here.getReplyFormPosition(rows, expand);
+                   height t/root/height;">
+ <tbody tal:repeat="row rows" tal:omit-tag="">
+ <tal:define tal:define="obj nocall:row/object">
+ <tr i18n:domain="plinn">
+  <td tal:define="indent python: row.depth - 1" tal:condition="indent" tal:attributes="colspan indent" ></td>
+  <td tal:define="state row/state ; rlink row/branch ; msg python:state > 0 and 'collapse' or 'expand'" width="16">
+		<a href="#" tal:condition="state" tal:omit-tag="python:abs(state) == 2" tal:attributes="name row/id ; href python:request['URL0']+rlink['link'] ; title msg" i18n:attributes="title">
+		  <img src="/p_/pl" alt="" tal:attributes="src python:state > 0 and (abs(state)==1 and '/p_/mi' or 'mi_dis.gif') or (abs(state)==1 and '/p_/pl' or 'pl_dis.gif') ; alt msg" i18n:attributes="alt" border="0" />
+		</a><br/>
+  </td>
+  <td colspan="1" tal:attributes="colspan python: height - row.depth" tal:define="url obj/absolute_url">
+   <span tal:attributes="class python:obj.id == rfo_id and 'outline_in_reply_to' or nothing">
+   <a tal:attributes="name obj/id"></a>
+   <img border="0" src="." tal:attributes="src string:${obj/portal_url}/${obj/getIcon}" />
+   <span tal:content="obj/Title" class="reply_title">Title</span>,
+   <span i18n:translate="" tal:omit-tag="">by</span> <tal:case tal:condition="obj/listCreators"
+  ><tal:loop tal:repeat="creator obj/listCreators"
+   ><tal:case tal:condition="not: repeat/creator/start"
+    ><tal:case tal:condition="not: repeat/creator/end">, </tal:case
+    ><tal:case tal:condition="repeat/creator/end"
+     > <span tal:omit-tag="" i18n:translate="">and</span> </tal:case
+   ></tal:case
+   ><tal:span tal:content="python:mtool.getMemberFullNameById(creator, nameBefore=False)">creator</tal:span></tal:loop></tal:case
+ ><tal:case tal:condition="not: obj/listCreators"
+  ><span tal:omit-tag="" i18n:translate="">unknown</span></tal:case>
+   <span i18n:translate="at_(date)" tal:omit-tag="">at</span> <span tal:replace="python: obj.created().strftime(locale_date_fmt)">Today</span>
+   <span tal:define="discussionActions python:atool.listFilteredActionsFor( obj ).get('discussion', [])" tal:omit-tag="" tal:condition="discussionActions">
+     [ <tal:loop tal:repeat="a discussionActions"><a tal:attributes="href a/url" tal:content="a/title" i18n:translate="">action</a><tal:case tal:condition="not:repeat/a/end"> | </tal:case></tal:loop> ]
+   </span></span>
+   <div tal:content="structure obj/CookedBody" class="reply_body">Body</div>
+  </td>
+ </tr>
+ <tr tal:condition="python:insert_form_position == obj.id">
+  <td tal:attributes="colspan rfo_depth" colspan="2"></td>
+  <td tal:attributes="colspan python: height - rfo_depth">
+   <div metal:use-macro="here/talkback_tree/macros/add_reply_form">add reply form</div>
+  </td>
+ </tr>
+ </tal:define>
+ </tbody>
+</table>
+<tal:include  tal:define="new_reply_id request/new_reply_id|nothing"
+							 tal:condition="new_reply_id"
+							 tal:replace="structure python:here.jumpToReply(reply_id=new_reply_id)" />
+</div>
+
+		<form method="post" action="."
+		  tal:attributes="action string:${rfo/absolute_url}/discussion_reply_form"
+		  metal:define-macro="add_reply_form">
+		  <a name="add_reply_form"></a>
+			<div class="DesktopStatusBar" tal:condition="request/portal_status_message|nothing">
+				<img src="info.gif" alt="Information" tal:attributes="src here/info.gif/absolute_url" i18n:attributes="alt" />
+				<span tal:content="request/portal_status_message" i18n:translate="">Status message.</span>
+			</div>		  
+		  <table class="FormLayout" i18n:domain="plinn" cellspacing="0">
+		    <tr>
+		      <th i18n:translate="" class="outline_new_reply">Title</th>
+          <td colspan="2">
+		        <input name="title" tal:attributes="value python:request.form.get('title', 'Re: %s' % options['inReplyTo'].Title())"/>
+		      </td>
+        </tr>
+		    <tr>
+		      <th i18n:translate="" class="outline_new_reply">Body</th>
+          <td colspan="2">
+		        <textarea name="text" cols="70" rows="10" style="width: 100%" tal:content="request/form/text|nothing"></textarea>
+		      </td>
+        </tr>
+		    <tr>
+		      <td><br /></td>
+		      <td>
+            <input type="submit" name="add_reply" value="Validate" i18n:attributes="value" />
+          </td>
+          <th>
+            <input type="submit" value="Cancel" name="cancel_reply" i18n:attributes="value" />
+          </th>
+        </tr>
+		  </table>
+			<tal:include tal:replace="structure python:here.jumpToReply(reply_id=rfo_id)" />
+		</form>
+  </body>
+</html>
diff --git a/skins/custom_generic/topic_icon.gif b/skins/custom_generic/topic_icon.gif
new file mode 100644
index 0000000..4e2d2f1
Binary files /dev/null and b/skins/custom_generic/topic_icon.gif differ
diff --git a/skins/custom_generic/undo_form.pt b/skins/custom_generic/undo_form.pt
new file mode 100644
index 0000000..886c63b
--- /dev/null
+++ b/skins/custom_generic/undo_form.pt
@@ -0,0 +1,116 @@
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"
+      lang="en"
+      metal:use-macro="here/main_template/macros/master"
+      i18n:domain="cmf_default">
+
+<head>
+  <meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
+</head>
+<body>
+
+<div metal:fill-slot="main_no_tabs"
+     tal:define="transactions python:container.portal_undo.listUndoableTransactionsFor(here);
+                 Batch python:modules['Products.Plinn'].Batch;
+                 DateTime python:modules['DateTime'].DateTime;
+                 b_start python:request.get('b_start',0)">
+
+    <form name="undo_form"
+          action="undo"
+          method="post"
+          tal:condition="transactions"
+          tal:define="batch python:Batch(transactions, 15, int(b_start), orphan=1)">
+
+        <input type="hidden" name="came_from" value="" tal:attributes="value request/HTTP_REFERER" />
+
+        <h1 i18n:translate="">Undo Transactions</h1>
+
+        <p i18n:translate="">
+       This application's transactional feature allows you to
+       easily undo changes made to the application's settings or data. You can
+       revert the application to a &quot;snapshot&quot; of its state
+       at a previous point in time. 
+        </p>
+
+        <p i18n:translate="">
+        Select one or more transactions below and then click on the &quot;Undo&quot;
+        button to undo the transactions.  Note that even though a transaction
+        is shown below, you will not be able to undo it if later transactions
+        modified objects that were modified by the transaction.
+        </p>
+
+        <!-- Navigation -->
+        <div metal:use-macro="here/batch_macros/macros/navigation" />
+
+        <table class="listing"
+               summary="Undo history"
+               cellpadding="0"
+               cellspacing="0">
+
+            <thead>
+                <tr>
+                    <th i18n:translate="">Undo</th>
+                    <th i18n:translate="">Action performed</th>
+                    <th i18n:translate="">Affected Item</th>
+                    <th i18n:translate="">By</th>
+                    <th i18n:translate="">Date</th>
+                </tr>
+            </thead>
+
+            <tbody>
+                <metal:block tal:repeat="trx batch">
+                    <tr class="even"
+                        tal:define="oddrow repeat/trx/odd;
+			            descriptions python:trx.get('description').split('\n');"
+                        tal:attributes="class python:test(oddrow, 'even', 'odd')" >
+
+                        <td>
+                            <input type="checkbox"
+                                   class="noborder"
+                                   name="transaction_info:list" value=""
+                                   tabindex=""
+                                   tal:attributes="value python:trx['id'];
+                                                   tabindex tabindex/next;" />
+                        </td>
+
+                        <td tal:define="has_description python:len(descriptions)>1">
+
+                            <span tal:condition="has_description"
+                                  tal:replace="python:' '.join(descriptions[1:])">Title</span>
+                            <span tal:condition="not:has_description">&nbsp;</span>
+
+                        </td>
+
+                        <td tal:content="python:descriptions[0]">
+                        Action performed
+                        </td>
+
+                        <td tal:content="python:mtool.getMemberFullNameById(trx['user_name'].split(' ', 1)[1], nameBefore=0)">
+                        username
+                        </td>
+
+                        <td tal:content="python:trx['time'].strftime(locale_date_fmt)">
+                        date/time
+                        </td>
+                    </tr>
+                </metal:block>
+            </tbody>
+        </table>
+
+        <input class="context"
+               type="submit"
+               name="undo:method"
+               value="Undo"
+               tabindex=""
+               i18n:attributes="value"
+               tal:attributes="tabindex tabindex/next;"
+               />
+
+        <!-- Navigation -->
+        <div metal:use-macro="here/batch_macros/macros/navigation" />
+
+</form>
+
+</div>
+
+</body>
+</html>
diff --git a/skins/custom_generic/viewThreadsAtBottom.pt b/skins/custom_generic/viewThreadsAtBottom.pt
new file mode 100644
index 0000000..e523853
--- /dev/null
+++ b/skins/custom_generic/viewThreadsAtBottom.pt
@@ -0,0 +1,22 @@
+<!-- <meta http-equiv="content-type" content="text/html;charset=UTF-8"/> -->
+<metal:block metal:define-macro="threadsDisplay">
+	<div tal:define="talkback here/talkback|nothing ;
+										rfo nocall:options/reply_for_ob|nothing;
+										rfo_depth python:rfo and rfo != here and len(rfo.talkback.parentsInThread()) or 0;
+										rfo_id python:rfo_depth and rfo.id or 'add_reply_form'"
+				class="Discussion">
+		<div tal:condition="talkback" tal:omit-tag="">
+			<div tal:condition="python: here.talkback.hasReplies(here)" tal:omit-tag="">
+				<h4 i18n:translate="" i18n:domain="plinn">Comments:</h4>
+  			<span metal:use-macro="here/talkback_tree/macros/tree">discussion tree</span>
+			</div>
+		</div>
+		<div tal:repeat="action actions/discussion|nothing" tal:condition="python:rfo != here" i18n:domain="plinn">
+		  <br />
+		  <a tal:attributes="href action/url" tal:content="action/title" i18n:translate="">Discussion action</a>
+		</div>
+		<div tal:condition="python:rfo == here" tal:omit-tag="">
+		  <div metal:use-macro="here/talkback_tree/macros/add_reply_form" tal:omit-tag="">Add comment form</div>
+		</div>
+	</div>
+</metal:block>
\ No newline at end of file
diff --git a/skins/custom_generic/zpt_stylesheet.css.dtml b/skins/custom_generic/zpt_stylesheet.css.dtml
new file mode 100644
index 0000000..21d62c3
--- /dev/null
+++ b/skins/custom_generic/zpt_stylesheet.css.dtml
@@ -0,0 +1,509 @@
+/* <dtml-with base_properties> */
+
+body {  
+  background-color: &dtml-backgroundColor;;
+  color: &dtml-fontColor;;
+  font-family: &dtml-fontFamily;;
+  font-size : &dtml-fontBaseSize;;
+  margin: 0 }
+
+h1, h2, h3, h4, h5, h6 {
+  font-family: &dtml-headingFontFamily;;
+}
+
+h1 { 
+  font-size:120%;
+}
+
+h2 { 
+  font-size:110%;
+}
+
+h3 { 
+  font-size:100%;
+}
+
+h4 {
+  font-style: italic;
+}
+
+a:link,
+a:visited,
+a:active { 
+  color: &dtml-linkColor;;
+  text-decoration: none;
+}
+
+a:hover {
+  color: &dtml-linkHoverColor;;
+  text-decoration: none;
+}
+
+form {
+	margin:0;
+}
+
+table.ContentsList tr td {  }
+
+table.ContentsList tr td img {
+  border: 0;
+}
+
+table.FormLayout {
+    width: 99% }
+  
+table.FormLayout dl.FieldHelp dd {
+  font-size : 90% ;
+  font-style : italic}
+  
+table.FormLayout td.ListDefinition {
+  font-style: italic }
+  
+table.FormLayout td.ListName {
+  color: &dtml-fontColor;;
+  font-weight: bold;
+  vertical-align: middle;
+  padding-left: 2px;
+}
+  
+table.FormLayout th {
+  font-weight: bold;
+  text-align: right }
+  
+table.FormLayout tr {
+    vertical-align: top }
+    
+table.FormLayout tr td.TextField {
+  vertical-align: top }
+  
+table.FormLayout tr th.TextField {
+    vertical-align: top }
+    
+table.NewsItems {
+  border: 0 }
+
+table.SearchResults {
+  width: auto }
+
+table.SearchResults tr td img {
+  border: 0 }
+
+table.SearchResults tr th {
+  text-align: left }
+
+table.Wizard {
+  width: auto }
+
+table.Wizard tr {
+  vertical-align: top }
+
+table.Wizard tr th {
+  text-align: right }
+
+td {
+  vertical-align: top }
+
+td.NewsBorder {
+  background-color: #369 }
+
+td.NewsByLine {
+  color: #369;
+  background-color: #ccc;
+  text-align: left;
+  vertical-align: top }
+
+td.NewsListing {
+  color: #fff;
+  font-weight: bold;
+  background-color: #369 }
+
+td.NewsTitle {
+  color: #fff;
+  font-weight: bold;
+  background-color: #369;
+  text-align: center }
+  
+/*
+textarea {
+  width : 99%
+}
+*/
+
+
+/* Top bar */
+
+#Masthead {
+  background-color: &dtml-topbarBackgroundColor;;
+  width: 100%;
+}
+
+#Masthead td {
+  vertical-align: middle;
+}
+
+#PortalLogo  {
+  vertical-align: middle;
+}
+
+#PortalLogo img {
+  border: none;
+}
+
+
+#PortalTitle {
+  font-family: &dtml-headingFontFamily;;
+  font-size: 120%;
+  font-weight: bold;
+}
+
+#NavBar { 
+  font-size: &dtml-fontSmallSize;;
+  font-weight: bold;
+}
+
+#NavBar a,
+#NavBar a:link,
+#NavBar a:visited,
+#NavBar a:active {
+  color: &dtml-specialLinkColor;;
+}
+
+#NavBar a:hover {
+  color: &dtml-specialLinkHoverColor;;
+}
+
+
+/* User menu bar */
+
+#MemberActionsBox {
+  width: 100%;
+  background-color: &dtml-memberActionsBoxBackground;;
+  color: &dtml-fontColor;;
+  font-weight: bold ;
+  font-size: &dtml-fontSmallSize;;
+  padding : 0 2px ;
+}
+#MemberActionsBox td {
+	vertical-align: middle;
+}
+
+.ActionTitle {
+  color: &dtml-fontColor;
+}
+
+.ActionLink a:link,
+.ActionLink a:visited,
+.ActionLink a:active { 
+  color: &dtml-linkColor;;
+  text-decoration: none 
+}
+
+.ActionLink a:hover { color: &dtml-linkHoverColor;}
+
+
+/* Breadcrumbs + Search form */  
+#Breadcrumbs {
+  background: &dtml-breadcrumbsBackground;;
+  font-size: &dtml-fontSmallSize;;
+  padding: 0 2px 1px 2px;
+
+}
+
+/* 
+ Main column
+ */
+
+   
+/* Status messages */
+.DesktopStatusBar  {
+  background-color: &dtml-messageBackgroundColor;;
+  border: 1px solid &dtml-messageBorderColor;;
+  color: &dtml-messageFontColor;;
+  font-size: &dtml-fontSmallSize;;
+  font-weight: bold;
+  padding-left : 1em;
+  margin-bottom : 6px;
+  vertical-align: middle;
+}
+
+.DesktopStatusBar img {
+  vertical-align: middle; 
+}
+
+/* Content tabs */
+.contentTabs {
+  border-bottom : &dtml-tabsBorderWidth; solid &dtml-tabsBorderColor;;
+  border-collapse: collapse;
+  white-space: nowrap;
+  padding-left: 1em;
+  margin: 0;
+}
+
+.contentTabs li, .additionalTabs li { 
+  display: inline;
+  font-size: &dtml-fontSmallSize;;
+}
+
+.contentTabs a,
+.contentTabs a:visited
+{
+  background-color: &dtml-tabsBackgroundColor;;
+  color: &dtml-tabsFontColor;;
+  margin-right: 0.5em;
+  padding: 0 1em;
+  border-left : 1px dashed &dtml-tabsBorderColor;;
+  border-top : 1px dashed &dtml-tabsBorderColor;;
+  border-right : 1px dashed &dtml-tabsBorderColor;;
+}
+
+.contentTabs a:hover, .contentTabs a:active {
+  background-color: &dtml-tabsBorderColor;;
+  color: &dtml-tabsFontColor;;
+}
+
+.contentTabs .selected a,
+.contentTabs .selected a:visited,
+.contentTabs .selected a:hover {
+  border-left : &dtml-tabsBorderWidth; solid &dtml-tabsBorderColor;;
+  border-right : &dtml-tabsBorderWidth; solid &dtml-tabsBorderColor;;
+  border-top : &dtml-tabsBorderWidth; solid &dtml-tabsBorderColor;;
+  border-bottom : &dtml-tabsBottomBorderSelectedWidth; solid &dtml-selectedTabBackgroundColor;;
+  color: &dtml-tabsFontColor;;
+  background-color : &dtml-selectedTabBackgroundColor;;
+}
+
+.additionalTabs {
+  padding-right : 2em ;
+  text-align : right ;
+  margin : 0 ;
+}
+
+.additionalTabs a, .additionalTabs a:visited {
+  color: &dtml-tabsFontColor;;
+  padding: 0 1em;
+  border-left : 1px dashed &dtml-tabsBorderColor;;
+}
+
+.additionalTabs .selected a {
+  background-color : &dtml-tabsBorderColor;;
+  }
+
+
+#mainCell {
+  padding: 12px 5px;
+}
+#ForematterCell {
+  background: &dtml-contentBackgroundColor;;
+  padding-bottom : 1px ;
+}
+
+/* Header */
+.header {
+  font-family: &dtml-headingFontFamily;;
+  padding: 0 0.5em;
+}
+
+/* Title */
+#DesktopTitle {
+  font-size: 120%;
+  font-weight: bold;
+  color: &dtml-fontColor;;
+  margin : 0 ;
+  padding: 2px;
+  vertical-align : bottom ;
+}
+
+#DesktopTitle img {
+  vertical-align:middle;
+  padding-right: 2px;
+}
+/* Description */
+#DesktopDescription {
+  font-size: &dtml-fontSmallSize;;
+  color: &dtml-descriptionColor;;
+}
+
+/* Content Byline */
+#ContentByLine {
+	color : &dtml-descriptionColor;;
+  background-color: &dtml-bylineBackgroundColor;;
+  font-size: &dtml-fontSmallSize;;
+  text-align: right;
+  padding: 0 1em;
+}
+
+#ContentByLine a {
+
+}
+
+/* Main content */
+#Desktop {
+  padding: 0 0.5em;
+  text-align: justify ;
+}
+
+/* Search form */
+
+#search_form {
+  font-size: &dtml-fontSmallSize;;
+}
+ 
+#Footer {
+  background-color : &dtml-footerBackgroundColor;;
+  color: &dtml-fontColor;;
+  font-size: 80%;
+  text-align: center;
+  padding : 3px;
+}
+
+/* Folder contents */
+
+.listing {
+  font-size: &dtml-fontSmallSize;;
+}
+
+.listing th { 
+  background-color: &dtml-listingHeaderBackgroundColor;;
+  text-align: left;
+  padding: 2px 0 1px 4px;
+}
+
+.listing th a,
+.listing a:link,
+.listing a:visited,
+.listing a:active { 
+  color: &dtml-specialLinkColor;;
+}
+
+.listing th a:hover {
+	color: &dtml-specialLinkHoverColor;;
+}
+
+.listing td {
+  padding : 2px ;
+  vertical-align : middle ; 
+}
+
+.listing .odd {
+  background-color: &dtml-oddRowBackgroundColor;;
+}
+.listing .even {
+  background-color: &dtml-evenRowBackgroundColor;;
+} 
+
+/* Batched navigation */
+
+.listingBar {
+  background-color: &dtml-tabsBackgroundColor;;
+  font-size: &dtml-fontSmallSize;;
+  border: 1px solid &dtml-listingBarBorderColor;;
+  padding: 0em 1em;
+  margin:1em 0;
+  text-align: center;
+  vertical-align: top;
+}
+
+.listingBar a,
+.listingBar a:link,
+.listingBar a:visited,
+.listingBar a:active {
+	color : &dtml-specialLinkColor;;
+}
+
+.listingBar a:hover {
+	color : &dtml-specialLinkHoverColor;;
+}
+
+.listingBar a.previous {
+    text-align: left;
+    float: left;
+}
+
+.listingBar a.next {
+    text-align: right;
+    float: right;
+} 
+
+/* Recent news */
+
+.newsItem {
+  font-size:90%;
+  background-color: &dtml-contentBackgroundColor;;
+  margin: 1em 0;
+}
+
+.newsTitle {
+  color: &dtml-fontColor;;
+  font-weight: bold;
+  padding: 0 2px;
+  border: &dtml-tabsBorderWidth; solid &dtml-newsTitleBorderColor;;
+}
+
+.newsTitle a {
+  color: &dtml-fontColor;;
+}
+
+.newsDescription {
+  margin: 0 0.5em;
+}
+
+.newsContent {
+  padding: 0 1em 1em 1em;
+}
+
+.newsContent ul,
+.newsContent li {
+    display: block; 
+    list-style: none;
+    list-style-image: none;
+    margin: 0;
+    padding: 0;
+}
+
+.newsAbout {
+    display: block;
+    color: &dtml-fontColor;;
+    font-size: &dtml-fontSmallSize;;
+    list-style: none;
+    list-style-image: none;
+    float: right;
+    text-align: right;
+}
+
+.newsAbout li {
+    display: inline;
+}
+
+.newsFooter {
+    font-size: &dtml-fontSmallSize;;    
+}
+
+.newsFooter li {
+    display: inline;
+    margin: 0 1em 0 0;
+}
+
+<dtml-comment>
+
+/* Not used */
+
+.ObjectStatus {
+  font-style: italic }
+
+.ContextActionsRow {
+  color: white;
+  background-color: #aaa }
+
+#ContextActionsBox {
+  background-color: #aaa;
+  padding: 0;
+  border: dotted 2px #ffa500 }
+
+#DiscussionAbove {
+  font-style: italic;
+  margin: 8pt 8pt 8pt 16pt;
+  border: dashed 2px #f00 }
+
+</dtml-comment>
+
+/* </dtml-with> */
diff --git a/skins/custom_generic/zpt_stylesheet.css.dtml.metadata b/skins/custom_generic/zpt_stylesheet.css.dtml.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/custom_generic/zpt_stylesheet.css.dtml.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/generic/add_uploaded_content.py b/skins/generic/add_uploaded_content.py
new file mode 100644
index 0000000..7135208
--- /dev/null
+++ b/skins/generic/add_uploaded_content.py
@@ -0,0 +1,47 @@
+##parameters=
+#assumes that jupload send files one by one.
+from Products.CMFCore.exceptions import BadRequest
+from Products.CMFCore.utils import getToolByName
+from Products.Plinn.utils import makeValidId
+form = context.REQUEST.form
+ctr = getToolByName(context, 'content_type_registry')
+
+file = [form[name] for name in form.keys() if name.startswith('File')][0]
+filename = file.filename
+utf8filename = filename.split('%25')[0]
+if utf8filename != filename :
+	for p in filename.split('%25')[1:] :
+		utf8filename += chr(int(p[0:2], 16)) + p[2:]
+	filename = utf8filename
+
+allow_dup = form.get('overwrite', False)
+id = makeValidId(context, filename, allow_dup=allow_dup)
+mt = form['mimetype[]']
+
+# adapted from plone jupload
+pt = ctr.findTypeName(id.lower(), mt, file)
+try:
+	id = context.invokeFactory(	type_name=pt,
+							id=id,
+							file='',
+							content_type=mt)
+	o = getattr(context, id)
+	o.manage_upload(file)
+except BadRequest:
+	if allow_dup :
+		o = getattr(context, id)
+		if o.meta_type == 'Photo' :
+			o.manage_upload(file)
+		else :
+			o.edit(file=file)
+	else :
+		raise
+except TypeError:
+	# looks like the constructor does no support a file argument
+	# (probably trying to create a cmf document)
+	context.invokeFactory(	type_name=pt,
+							id=id,
+							text_format=mt.split('/')[1],
+							text=file.read())
+
+return 'SUCCESS'
diff --git a/skins/generic/base_properties.props b/skins/generic/base_properties.props
new file mode 100644
index 0000000..c0a8ac2
--- /dev/null
+++ b/skins/generic/base_properties.props
@@ -0,0 +1,65 @@
+title:string=Color, font, logo and border defaults
+
+backgroundColor:string=#fff
+fontColor:string=#000
+fontFamily:string=Arial, Helvetica, Geneva, Swiss, SunSans-Regular, sans-serif
+fontBaseSize:string=90%
+headingFontFamily:string=Arial, Helvetica, Geneva, Swiss, SunSans-Regular, sans-serif
+
+linkColor:string=#369
+linkHoverColor:string=#5af
+
+fontSmallSize:string=90%
+
+
+topbarBackgroundColor:string=#fff
+breadcrumbsBackground:string=#fff
+
+tabsBorderColor:string=#ddd
+tabsBorderWidth:string=2px
+tabsBottomBorderSelectedWidth:string=3px
+tabsFontColor:string=#369
+tabsBackgroundColor:string=#fff
+selectedTabBackgroundColor:string=#fff
+
+descriptionColor:string=#333
+
+inputFontColor:string=#000
+
+evenRowBackgroundColor:string=#f0f0f0
+oddRowBackgroundColor:string=#fff
+highLightColor:string=#f7fd5c
+
+messageBackgroundColor:string=#fff
+messageBorderColor:string=#fff
+
+weekTableFontHeight:int=10
+weekTableGridStep:int=10
+todayBackgroundColor:string=#f0f0f0
+calGridBorderColor:string=#ccc
+calHalfGridBorderColor:string=#e5e5e5
+
+contentBackgroundColor:string=#fff
+
+configFontColor:string=#000
+configBackgroundColor:string=#f0f0f0
+
+portfolioSlideBackgroundColor:string=#f2f2f2
+
+memberActionsBoxBackground:string=#f6f6f6
+footerBackgroundColor:string=#f6f6f6
+outlineColor:string=#fc3
+bylineBackgroundColor:string=#fff
+messageFontColor:string=#000
+listingHeaderBackgroundColor:string=#ddd
+listingHeaderFontColor:string=#ddd
+listingBarBorderColor:string=#ddd
+newsTitleBorderColor:string=#ddd
+boxesBorderColor:string=#ddd
+specialLinkColor:string=#369
+specialLinkHoverColor:string=#369
+bulletColor:string=#369
+boxeHeaderBackgroundColor:string=#fff
+
+twoColumnFormFontColor:string=#000
+twoColumnFormBackground:string=#ddd
diff --git a/skins/generic/batch_macros.pt b/skins/generic/batch_macros.pt
new file mode 100644
index 0000000..f5dedc1
--- /dev/null
+++ b/skins/generic/batch_macros.pt
@@ -0,0 +1,76 @@
+<html>
+<head>
+  <meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
+</head>
+<body>
+
+<!-- Navigation -->
+<div class="listingBar"
+     metal:define-macro="navigation"
+     tal:define="request request|here/request|container/request|nothing;
+                 form python:request.form.copy();
+                 dummy python:form.has_key('ajax') and form.pop('ajax');
+                 batch batch|nothing;
+                 mq python:modules['ZTUtils'].make_query;
+                 mpq python:lambda fv,pn=-1 : mq(fv, {batch.b_start_str : pn * (batch.size - batch.overlap) - batch.size}) ;
+                 url python:request.get('URL0');
+                 currentpage batch/pagenumber;"
+     tal:attributes="id navBatchBarId|nothing"
+     tal:condition="python: batch.next or  batch.previous"
+     i18n:domain="plinn">
+
+    <a href="" class="previous"
+    	 tal:define="p batch/previous | nothing"
+			 tal:attributes="href python: '%s?%s' % (url , mq( form, {batch.b_start_str:p.first} ))"
+			 tal:condition="p">
+       &laquo;&nbsp;<span i18n:translate="batch_previous_x_items" tal:omit-tag="">Previous<span i18n:name="number" tal:content="p/length" tal:omit-tag="">n</span></span>
+    </a>
+    <a href="" class="next"
+       tal:define="n batch/next | nothing"
+       tal:condition="n"
+    	 tal:attributes="href python: '%s?%s' % (url , mq( form, {batch.b_start_str:n.first} ))">
+       <span i18n:translate="batch_next_x_items" tal:omit-tag="">Next<span i18n:name="number" tal:content="n/length">n</span>items</span>&nbsp;&raquo;
+    </a>
+
+    <span tal:condition="python: 1 not in batch.navlist">
+        <a href="" tal:attributes="href python: '%s?%s' % (url, mq(form,{batch.b_start_str:0}));" tal:content="string:1">Link to first</a>
+        <span tal:condition="python: 2 not in (batch.prevlist or batch.leapback)" tal:omit-tag="">...</span>
+    </span>
+
+    <span tal:repeat="linklist python:batch.navurls(form, batch.leapback)" tal:condition="batch/leapback" tal:omit-tag="" >
+        <a href="" tal:define="page python:linklist[0];query python:mpq(form, page)" tal:content="page" tal:attributes="href python: '%s?%s' % (url,query)" >
+        	Pagelist with quantum leap links to previous pages for quick navigation
+        </a>...
+    </span>
+
+    <span tal:repeat="linklist python:batch.prevurls(form)" tal:condition="batch/prevlist" tal:omit-tag="" >
+        <a href="" tal:define="page python:linklist[0]; query python:mpq(form, page);" tal:content="page" tal:attributes="href python: '%s?%s' % (url,query)" >
+        	Pagelist with links to previous pages.
+        </a>
+    </span>
+
+    <span tal:condition="batch/navlist" tal:omit-tag="">
+        [<span tal:content="batch/pagenumber">Current page number</span>]
+    </span>
+
+    <span tal:repeat="linklist python:batch.nexturls(form)" tal:condition="batch/nextlist" tal:omit-tag="" >
+        <a href="" tal:define="page python:linklist[0];query python:mpq(form, page);" tal:content="page" tal:attributes="href python: '%s?%s' % (url,query)" >
+        	Pagelist with links to next pages
+        </a>
+    </span>
+
+    <span tal:repeat="linklist python:batch.navurls(form, batch.leapforward)" tal:condition="batch/leapforward" tal:omit-tag="" >...
+        <a href="" tal:define="page python:linklist[0]; query python:mpq(form, page)" tal:content="page" tal:attributes="href python: '%s?%s' % (url,query)" >
+        	Pagelist with quantum leap links to next pages
+        </a>
+    </span>
+
+    <span tal:condition="python:batch.numpages not in batch.navlist">
+        <span tal:condition="python: batch.numpages - 1 not in (batch.nextlist or batch.leapforward)" tal:omit-tag="">...</span>
+        <a href="" tal:attributes="href python: '%s?%s' % (url,mpq(form,batch.numpages))" tal:content="batch/numpages">Link to last</a>
+    </span>
+
+</div>
+
+</body>
+</html>
diff --git a/skins/generic/calendar_macros.pt b/skins/generic/calendar_macros.pt
new file mode 100644
index 0000000..47f0141
--- /dev/null
+++ b/skins/generic/calendar_macros.pt
@@ -0,0 +1,180 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+<html xmlns="http://www.w3.org/1999/xhtml">
+
+  <head>
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8" />
+    <title>Calendar macros</title>
+  </head>
+
+  <body i18n:domain="plinn">
+    <pre>month macro</pre>
+    <div metal:define-macro="month"
+    		 tal:define="nextStart python:calTool.getNextMonth(year, month) ;
+           			     previousStart python:calTool.getPreviousMonth(year, month) ;
+           			     weeks python:calTool.getWeeksList(objects, sortBy, month=month, year=year)">
+      <div tal:define="navAnchor string:topNav" tal:omit-tag="">
+      	<div metal:define-slot="cal_header" tal:omit-tag="">
+		      <div metal:use-macro="here/calendar_macros/macros/calNavigation">
+		        calNavigation
+		      </div>
+		    </div>
+	    </div>
+      <table class="calendar_table">
+        <tr>
+          <th colspan="7">
+            <h1><span tal:content="python:calTool.getMonthName(month)" tal:omit-tag="" i18n:translate="">Month</span> <span tal:content="year">2004</span></h1>
+          </th>
+        </tr>
+        <tr>
+          <th tal:content="day" tal:repeat="day python:calTool.getDays(9)" i18n:translate="">Monday</th>
+        </tr>
+        <tr tal:repeat="week weeks">
+          <td tal:attributes="class python: calTool.isToday(year, month, dayInfo['day']) and 'today' or not dayInfo['day'] and 'disabled' or nothing" tal:repeat="dayInfo week">
+            <div tal:content="python:dayInfo['day'] and dayInfo['day'] or nothing">1</div>
+            <ul tal:condition="dayInfo/objects">
+              <li tal:repeat="ob dayInfo/objects">
+              	<a href="."
+              		 tal:attributes="href python:link_func(ob);
+              		 								 title python:buildDate(indexIsCallable and getattr(ob, sortBy)() or getattr(ob, sortBy)).Time()"
+              		 tal:content="ob/title_or_id">title_or_id
+              	</a>
+              </li>
+            </ul>
+          </td>
+        </tr>
+      </table>
+      <div tal:define="navAnchor string:bottomNav" tal:omit-tag="">
+      	<div metal:define-slot="cal_footer" tal:omit-tag="">
+					<div metal:use-macro="here/calendar_macros/macros/calNavigation">
+		        calNavigation
+		      </div>
+	      </div>
+	    </div>
+    </div>
+    <hr />
+    <pre>week macro</pre>
+    <div metal:define-macro="week"
+         tal:define="weekInfo python: calTool.getWeek(objects, sortBy, year=year, month=month, day=day) ;
+         						 week weekInfo/week ;
+         						 previousStart weekInfo/previousStartDay ;
+         						 nextStart weekInfo/nextStartDay ;
+             				 dayNames python: calTool.getDays(letters=3) ;
+             				 weekAndNames python:[ (week[i], dayNames[i]) for i in range(7) ] ;
+             				 weekTable python:calTool.getWeekTable(week, sortBy, indexIsCallable) ;
+             				 matrix weekTable/weekMatrix ;
+             				 dispRRange python:request.get('disp_reel_range', 0) ;
+             				 display_range python:dispRRange and weekTable['range'] or calTool.getDisplayRange()">
+      <div tal:define="navAnchor string:topNav" tal:omit-tag="">
+      	<div metal:define-slot="cal_header" tal:omit-tag="">
+					<div metal:use-macro="here/calendar_macros/macros/calNavigation">
+		        calNavigation
+		      </div>
+		    </div>
+	    </div>
+      <table class="week_table" cellspacing="0">
+        <tr>
+          <td style="border : none">
+            <a href="." title="Click to see hidden items" i18n:attributes="title"
+            	 tal:attributes="href string:${request/URL0}?disp_reel_range:int=1#topNav"
+            	 tal:condition="python: not dispRRange and  weekTable['range'][0] < calTool.getDisplayRange()[0]">
+            	<img src="eye_up.gif" alt="Click to see hidden items" height="20" width="20" border="0" 
+            		 tal:attributes="src here/eye_up.gif/absolute_url"
+            		 i18n:attributes="alt" /></a>
+          </td>
+          <th tal:repeat="day weekAndNames" i18n:translate=""
+            ><span tal:content="python:day[1]" i18n:name="dayName" i18n:translate=""
+            >Mon</span>&nbsp;<span tal:content="python:calTool.getMonthName(day[0]['month'])+'_abbr'" i18n:name="monthName" i18n:translate=""
+            >May</span>&nbsp;<span tal:content="python:day[0]['day']" i18n:name="dayNumber"
+            >24</span></th>
+        </tr>
+        <tr>
+          <td class="hourLabel">
+            <div tal:repeat="quartIndex python:range(display_range[0], display_range[1])">
+              <span tal:replace="python:((quartIndex + 1) % 4) == 0 and ( str(quartIndex/4 + 1).zfill(2) + ':00') or nothing">10:00</span>
+            </div>
+          </td>
+          <td tal:repeat="dayIndex python:range(7)"
+          		tal:attributes="class python: calTool.isToday(year, month, week[dayIndex]['day']) and 'today' or nothing">
+            <div tal:condition="isEventCalendar"
+            		 tal:repeat="quartIndex python:range(display_range[0],  display_range[1])"
+             		 tal:attributes="class python:(quartIndex + 1) % 4 == 0 and 'hour_row' or (quartIndex + 1) % 2 == 0 and 'half_hour_row' or nothing">             		 
+             	<div tal:repeat="ob python:matrix[dayIndex][quartIndex]" tal:omit-tag="">
+	              <div class="event"
+										 tal:attributes="style python:'height : ' + str(calTool.getEventHeight(ob)*15) + 'px'">
+									<a href="."
+										 tal:attributes="href python:link_func(ob);
+										 								 title python:'%s - %s' % ( calTool.buildDate(ob.start()).Time(), calTool.buildDate(ob.end()).Time() )"
+										 tal:content="ob/title_or_id">title_or_id</a>
+								</div>
+							</div>
+            </div>        
+            <div tal:condition="not:isEventCalendar"
+            		 tal:repeat="quartIndex python:range(display_range[0],  display_range[1])"
+             		 tal:attributes="class python:(quartIndex + 1) % 4 == 0 and 'hour_row' or (quartIndex + 1) % 2 == 0 and 'half_hour_row' or nothing">
+             	<div tal:define="objects python:matrix[dayIndex][quartIndex]" tal:omit-tag="">
+             	  <ul tal:condition="objects">
+             	    <li tal:repeat="ob objects"><a href="."
+											 tal:attributes="href python:link_func(ob);
+											 								 title python:buildDate(indexIsCallable and getattr(ob, sortBy)() or getattr(ob, sortBy)).Time()" 
+											 tal:content="ob/title_or_id">title_or_id</a></li>
+             	  </ul>
+							</div>
+            </div>
+          </td>
+        <tr tal:condition="python: not dispRRange and weekTable['range'][1] > calTool.getDisplayRange()[1]">
+          <td class="hourLabel" style="border : none" 
+          		tal:attributes="colspan python:8">
+            <a href="." title="Click to see hidden items" i18n:attributes="title"
+						tal:attributes="href string:${request/URL0}?disp_reel_range:int=1#navBottom">
+            		<img src="eye_down.gif" alt="Click to see hidden items" height="20" width="20" border="0"
+            			 tal:attributes="src here/eye_down.gif/absolute_url"
+            			 i18n:attributes="alt" />
+            </a>
+          </td>
+          <td tal:replace="nothing"></td>
+        </tr>
+      </table>
+      <div tal:define="navAnchor string:navBottom" tal:omit-tag="">
+	      <div metal:define-slot="cal_footer" tal:omit-tag="">
+					<div metal:use-macro="here/calendar_macros/macros/calNavigation">
+		        calNavigation
+		      </div>
+		    </div>
+	    </div>
+    </div>
+    <hr />
+    <pre>calNavigation macro</pre>
+    <div metal:define-macro="calNavigation">
+			<a name="anchor" tal:attributes="name navAnchor"></a>
+      <table class="cal_navigation" cellspacing="0"
+      			 tal:define="previousYear previousStart/year ;
+      			 						 previousMonth previousStart/month ;
+      			 						 previousDay previousStart/day|nothing;
+      			 						 nextYear nextStart/year ;
+      			 						 nextMonth nextStart/month ;
+      			 						 nextDay nextStart/day|nothing">
+        <tr>
+          <td class="arrow">
+            <a title="Previous" href="." 
+							 tal:attributes="href python:'%s?year:int=%d&month:int=%d' % (request['URL0'], previousYear, previousMonth) + (previousDay and '&day:int=%d' % previousDay['day'] or '') + '#%s' % navAnchor"
+ 							 i18n:attributes="title"><img src="arrow_l.gif" alt="Previous" height="25" width="25" tal:attributes="src here/arrow_l.gif/absolute_url" border="0" i18n:attributes="alt" /></a>
+          </td>
+          <td>
+            <a href="." tal:attributes="class python:display == 'week' and 'selected' or nothing;
+																								href string:${request/URL0}?display=week#${navAnchor}" i18n:translate=""
+						>Week</a><a href="." tal:attributes="class python:display == 'month' and 'selected' or nothing ;
+																								 href string:${request/URL0}?display=month#${navAnchor}" i18n:translate=""
+						>Month</a>
+          </td>
+          <td class="arrow">
+            <a title="Next" href="."
+            	 tal:attributes="href python:'%s?year:int=%d&month:int=%d' % (request['URL0'], nextYear, nextMonth) + (nextDay and '&day:int=%d' % nextDay['day'] or '') + '#%s' % navAnchor"
+            	 i18n:attributes="title"><img src="arrow_r.gif" alt="Next" height="25" width="25" border="0" tal:attributes="src here/arrow_r.gif/absolute_url" i18n:attributes="alt" /></a>
+          </td>
+        </tr>
+      </table>
+    </div>
+  </body>
+
+</html>
\ No newline at end of file
diff --git a/skins/generic/calendar_view.pt b/skins/generic/calendar_view.pt
new file mode 100644
index 0000000..be36d08
--- /dev/null
+++ b/skins/generic/calendar_view.pt
@@ -0,0 +1,56 @@
+<tal:block tal:define="
+objects here/listNearestFolderContents;
+calTool nocall:here/portal_calendar;
+
+commonIndexes python:calTool.getCommonIndexes(objects);
+rSortBy request/sortBy|nothing ;
+sortBy python:here.getOrSetSessionVar('sSortBy', rSortBy, 'modified');
+sortBy python:sortBy in commonIndexes and sortBy or here.getOrSetSessionVar('sSortBy', len(commonIndexes) and list(commonIndexes)[0] or 'modified');
+
+forceTab sortBy;
+link_func python:lambda ob: ob.absolute_url();
+isEventCalendar python:False;
+">
+<html xmlns="http://www.w3.org/1999/xhtml"
+      metal:use-macro="here/main_template/macros/master">
+
+  <head>
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8" />
+    <title>Calendar View</title>
+  </head>
+
+  <body metal:fill-slot="main" tal:omit-tag="">
+	  <div	tal:define="objects objects|here/listNearestFolderContents ;
+		       						calTool calTool|nocall:here/portal_calendar ;
+
+		       						DateTime nocall:modules/DateTime/DateTime ;
+		       						buildDate nocall:calTool/buildDate ;
+
+		       						forceSortBy forceSortBy | nothing ;
+		       						sortBy python: forceSortBy and forceSortBy or sortBy ;
+		       						objects python:calTool.sortObjectsByDate(objects, sortBy) ;
+		       						indexIsCallable python:calTool.indexIsCallable(sortBy, objects) ;
+		       						now modules/DateTime/DateTime ;
+		       						ryear request/form/year|nothing ;
+		       						rmonth request/form/month|nothing ;
+		       						rday request/form/day|nothing ;
+		       						year python: here.getOrSetSessionVar('syear', ryear, now.year()) ;
+		       						month python: here.getOrSetSessionVar('smonth', rmonth, now.month()) ;
+		       						day python: here.getOrSetSessionVar('sday', rday, now.day()) ;
+		       						rdisplay request/form/display|nothing;
+		       						display python: here.getOrSetSessionVar('sdisplay', rdisplay, 'month') ;
+		       						display_macro here/calendar_macros/macros/?display ;
+		       						rrange_mode request/form/range_mode|nothing ;
+		       						range_mode python:here.getOrSetSessionVar('srange_mode', rrange_mode, 'fixed') ;"
+		       	metal:define-macro="calendar"
+		       	tal:omit-tag="">
+		  <div metal:define-slot="calendar_display" tal:omit-tag="">
+		  	<div metal:use-macro="display_macro">
+					cal macro
+		  	</div>
+	  	</div>
+	  </div>
+  </body>
+
+</html>
+</tal:block>
\ No newline at end of file
diff --git a/skins/generic/content_byline.pt b/skins/generic/content_byline.pt
new file mode 100644
index 0000000..9611e1f
--- /dev/null
+++ b/skins/generic/content_byline.pt
@@ -0,0 +1,17 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+	<head>
+		<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
+		<title>Content by line</title>
+	</head>
+	<body i18n:domain="cmf_default">
+		<div id="ContentByLine" metal:define-macro="byline"
+				 tal:define="creator here/Creator;
+										 creatorFullName python:mtool.getMemberFullNameById(creator, nameBefore=0) ;
+										 date python:here.modified();
+										 modificationDate python:date.strftime('%d/%m/%Y');
+										 modificationTime python:date.strftime('%Hh%M')">
+			<span tal:omit-tag="" i18n:translate="">Modified on</span> <span tal:replace="modificationDate">Today</span> <span tal:omit-tag="" i18n:translate="">at</span> <span tal:replace="modificationTime">Hour</span> – <span tal:omit-tag="" i18n:translate="">creator: </span> <span tal:content="creatorFullName">Creator</span>
+    </div>
+	</body>
+</html>
diff --git a/skins/generic/content_depublish_form.pt b/skins/generic/content_depublish_form.pt
new file mode 100644
index 0000000..a048c38
--- /dev/null
+++ b/skins/generic/content_depublish_form.pt
@@ -0,0 +1,30 @@
+<html metal:use-macro="here/transition_form/macros/master">
+<head>
+  <meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
+</head>
+<body i18n:domain="plinn">
+<div metal:fill-slot="main">
+
+<h2 i18n:translate="">Depublish: "<span tal:replace="here/title_or_id"
+                                    i18n:name="docTitle">Item</span>"</h2>
+	<div i18n:translate="depublish_transition_explanations">depublish_transition_explanations</div>
+</div>
+
+<form action="dummy">
+	<div metal:fill-slot="form">
+		<h3 i18n:translate="">Select the destination state</h3>
+		<label>
+			<input type="radio" name="next_action" value="depublish_to_private" checked="checked" />
+			<span i18n:translate="" tal:omit-tag="">Private</span>
+		</label>
+		<label>
+			<input type="radio" name="next_action" value="depublish_to_shared" />
+			<span i18n:translate="" tal:omit-tag="">Shared</span>
+		</label>
+		<input type="hidden" name="workflow_action" value="depublish" />
+		<br />
+    <input type="submit" value="Depublish" i18n:attributes="value" />
+   </div>
+</form>
+</body>
+</html>
diff --git a/skins/generic/content_make_private_form.pt b/skins/generic/content_make_private_form.pt
new file mode 100644
index 0000000..eae254d
--- /dev/null
+++ b/skins/generic/content_make_private_form.pt
@@ -0,0 +1,21 @@
+<html metal:use-macro="here/transition_form/macros/master">
+
+  <head>
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8">
+    <title>content_share_form</title>
+  </head>
+
+  <body i18n:domain="plinn">
+		<div metal:fill-slot="main">
+	  	<h2 i18n:translate="">Make private: "<span i18n:name="docTitle" tal:replace="here/title_or_id">document title</span>"</h2>
+	  	<div i18n:translate="make_private_transition_explanations">share_transition_explanations</div>
+	  </div>
+  	<form action=".">
+			<div metal:fill-slot="form">
+	  		<input type="hidden" name="workflow_action" value="make_private" />
+	  		<input type="submit" name="content_status_modify:method" value="Make private" i18n:attributes="value"  />
+	  	</div>
+  	</form>
+  </body>
+
+</html>
\ No newline at end of file
diff --git a/skins/generic/content_publish_form.pt b/skins/generic/content_publish_form.pt
new file mode 100644
index 0000000..4abe8fb
--- /dev/null
+++ b/skins/generic/content_publish_form.pt
@@ -0,0 +1,30 @@
+<html metal:use-macro="here/transition_form/macros/master">
+<head>
+  <meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
+</head>
+<body i18n:domain="plinn">
+<div metal:fill-slot="main">
+
+<h2 i18n:translate="">Publish: "<span tal:replace="here/title_or_id"
+                                    i18n:name="docTitle">Item</span>"</h2>
+	<div i18n:translate="publish_transition_explanations">publish_transition_explanations</div>
+</div>
+
+<form action="dummy">
+    <div metal:fill-slot="form">
+      <fieldset tal:define="creators python:[m for m in mtool.getMembers(here.listCreators()) if m != member]"
+      					tal:condition="creators">
+        <legend i18n:translate="">Notify by e-mail</legend>
+        <div tal:repeat="member creators" tal:omit-tag="">
+          <label>
+            <input type="checkbox" name="recipients:list" value="membre" tal:attributes="value member/id" checked="checked" />
+            <span tal:replace="member/getMemberFullName">membre</span>
+          </label><br/>
+        </div>
+      </fieldset>
+     <input type="hidden" name="workflow_action" value="publish" tal:attributes="value python:request.get('direct')==True and 'direct_publish' or 'publish'" />
+     <input type="submit" value="Publish" i18n:attributes="value" />
+    </div>
+</form>
+</body>
+</html>
diff --git a/skins/generic/content_reject_form.pt b/skins/generic/content_reject_form.pt
new file mode 100644
index 0000000..6f2381c
--- /dev/null
+++ b/skins/generic/content_reject_form.pt
@@ -0,0 +1,29 @@
+<html metal:use-macro="here/transition_form/macros/master">
+<head>
+  <meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
+</head>
+<body>
+<div metal:fill-slot="main" i18n:domain="plinn">
+
+<h2 i18n:translate="">Reject: "<span tal:replace="here/title_or_id" i18n:name="objectid">Item</span>"</h2>
+	<div i18n:translate="reject_transition_explanations">reject_transition_explanations</div>
+</div>
+
+<form action="dummy">
+    <div metal:fill-slot="form" i18n:domain="plinn"
+    		 tal:define="state python:wtool.getInfoFor(here, 'review_state', wf_id='default_workflow')">
+      <fieldset>
+        <legend i18n:translate="">Notify by e-mail</legend>
+        <div tal:repeat="member python:here.getAllMembersInRole('Owner')" tal:omit-tag="">
+          <label>
+            <input type="checkbox" name="recipients:list" value="membre" tal:attributes="value member/id" checked="checked" />
+            <span tal:replace="member/getMemberFullName">Membre full name</span>
+          </label><br/>
+        </div>
+      </fieldset>
+     <input type="hidden" name="workflow_action" value="reject" />
+     <input type="submit" value="Reject" i18n:attributes="value" />
+    </div>
+</form>
+</body>
+</html>
diff --git a/skins/generic/content_retract_form.pt b/skins/generic/content_retract_form.pt
new file mode 100644
index 0000000..073584c
--- /dev/null
+++ b/skins/generic/content_retract_form.pt
@@ -0,0 +1,19 @@
+<html metal:use-macro="here/transition_form/macros/master">
+<head>
+  <meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
+</head>
+<body>
+<div metal:fill-slot="main" i18n:domain="plinn">
+
+<h2 i18n:translate="">Retract: "<span tal:replace="here/title_or_id" i18n:name="objectid">Item</span>"</h2>
+	<div i18n:translate="retract_transition_explanations">retract_transition_explanations</div>
+</div>
+
+<form action="dummy">
+    <div metal:fill-slot="form" i18n:domain="plinn">
+     <input type="hidden" name="workflow_action" value="retract" />
+     <input type="submit" value="Retract" i18n:attributes="value" />
+    </div>
+</form>
+</body>
+</html>
diff --git a/skins/generic/content_share_form.pt b/skins/generic/content_share_form.pt
new file mode 100644
index 0000000..afba914
--- /dev/null
+++ b/skins/generic/content_share_form.pt
@@ -0,0 +1,21 @@
+<html metal:use-macro="here/transition_form/macros/master">
+
+  <head>
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8">
+    <title>content_share_form</title>
+  </head>
+
+  <body i18n:domain="plinn">
+  	<div metal:fill-slot="main">
+	  	<h2 i18n:translate="">Share: "<span i18n:name="docTitle" tal:replace="here/title_or_id">document title</span>"</h2>
+	  	<div i18n:translate="share_transition_explanations">share_transition_explanations</div>
+  	</div>
+  	<form action=".">
+  		<div metal:fill-slot="form">
+	  		<input type="hidden" name="workflow_action" value="share" />
+	  		<input type="submit" name="content_status_modify:method" value="Share" i18n:attributes="value"  />
+	  	</div>
+  	</form>
+  </body>
+
+</html>
\ No newline at end of file
diff --git a/skins/generic/content_submit_form.pt b/skins/generic/content_submit_form.pt
new file mode 100644
index 0000000..1d6f4da
--- /dev/null
+++ b/skins/generic/content_submit_form.pt
@@ -0,0 +1,20 @@
+<html metal:use-macro="here/transition_form/macros/master">
+<head>
+  <meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
+</head>
+<body>
+<div metal:fill-slot="main" i18n:domain="plinn">
+
+<h2 i18n:translate="">Submit: "<span tal:replace="here/title_or_id" i18n:name="objectid">Item</span>" for Review.</h2>
+	<div i18n:translate="submit_transition_explanations">submit_transition_explanations</div>
+</div>
+
+<form action="dummy">
+    <div metal:fill-slot="form" i18n:domain="plinn">
+     <input type="hidden" name="workflow_action" value="submit" />
+     <input type="submit" value="Submit"
+            i18n:attributes="value" />
+    </div>
+</form>
+</body>
+</html>
diff --git a/skins/generic/default_home_page_content.pt b/skins/generic/default_home_page_content.pt
new file mode 100644
index 0000000..7fe48dc
--- /dev/null
+++ b/skins/generic/default_home_page_content.pt
@@ -0,0 +1,5 @@
+<div i18n:domain="plinn" tal:omit-tag="">
+<h1 i18n:translate="">Welcome to Plinn!</h1>
+<p i18n:translate="">This is the default home page.</p>
+<p i18n:translate="">To change the content just select "Edit" in the Tab bar on the top.</p>
+</div>
diff --git a/skins/generic/default_member_content.pt b/skins/generic/default_member_content.pt
new file mode 100644
index 0000000..07dfbb5
--- /dev/null
+++ b/skins/generic/default_member_content.pt
@@ -0,0 +1,5 @@
+<div i18n:domain="plinn" tal:omit-tag="">
+<h1 i18n:translate="">Default page for <span tal:replace="options/memberFullName" i18n:name="memberFullName">Member full name</span></h1>
+<p i18n:translate="">This is the default document created for you when you have been registered in this portal.</p>
+<p i18n:translate="">To change the content just select "Edit" in the Tab bar on the top.</p>
+</div>
diff --git a/skins/generic/discussion_reply_form.py b/skins/generic/discussion_reply_form.py
new file mode 100644
index 0000000..99f555e
--- /dev/null
+++ b/skins/generic/discussion_reply_form.py
@@ -0,0 +1,20 @@
+##parameters=
+form = context.REQUEST.form
+form_has = form.has_key
+
+if context.meta_type == 'Discussion Item' :
+	contentOb = context.parentsInThread()[0]
+else :
+	contentOb = context
+
+if form_has('cancel_reply') :
+	contentOb.setRedirect(contentOb, 'object/view', **form)
+	return
+elif form_has('add_reply') :
+	replyId = context.reply_add_control(**form)
+	if replyId :
+		context.setRedirect(contentOb, 'object/view', new_reply_id=replyId, **form)
+		return
+
+options = {'reply_for_ob' : context, 'ajax' : form_has('ajax') and '1' or None, 'inReplyTo' : context}
+return getattr(contentOb, contentOb.getActionInfo('object/view')['url'].split('/')[-1])(**options)
\ No newline at end of file
diff --git a/skins/generic/echange_mail_template.pt b/skins/generic/echange_mail_template.pt
new file mode 100644
index 0000000..bcca942
--- /dev/null
+++ b/skins/generic/echange_mail_template.pt
@@ -0,0 +1,9 @@
+From: <span tal:replace="structure options/From" />
+<tal:block tal:condition="options/To|nothing">To: <span tal:replace="structure options/To" /></tal:block><tal:block tal:condition="options/recipients|nothing" tal:replace="structure options/recipients"></tal:block>
+Subject: <span tal:replace="options/Subject" />
+Content-Type: <span tal:replace="options/ContentType" />; charset=<span tal:replace="options/charset" />
+Mime-Version: 1.0
+
+<span tal:replace="options/body">message...</span>
+
+<span tal:replace="options/footer|nothing"></span>
\ No newline at end of file
diff --git a/skins/generic/epoz_toolbox.pt b/skins/generic/epoz_toolbox.pt
new file mode 100644
index 0000000..80f30ce
--- /dev/null
+++ b/skins/generic/epoz_toolbox.pt
@@ -0,0 +1,111 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
+  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+<html xmlns:tal="http://xml.zope.org/namespaces/tal"
+      xmlns:metal="http://xml.zope.org/namespaces/metal"
+      i18n:domain="plone">
+
+<head tal:define="ztu modules/ZTUtils;">
+<title tal:content="here/title_or_id">Title or Id</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+<style type="text/css" media="all"
+       tal:define="current_skin python:ztu.make_query(skin=request.get(here.portal_skins.getRequestVarname(), ''))"
+       tal:content="string: @import url(${here/portal_url}/plone.css?${current_skin});">
+</style>
+</head>
+      
+<body onload="focus();" style="margin: 4px;">
+
+  <form class="group"
+        action="search" 
+        method="post" 
+        name="search" 
+        tal:define="DateTime python:modules['DateTime'].DateTime"
+        tal:attributes="action string: ${here/absolute_url}/${template/getId}">
+
+   <span i18n:translate="legend_search_terms">Search Terms</span>		 
+   <div class="field">
+    <input type="text" 
+           name="SearchableText" 
+           size="25"
+           tabindex="" 
+           />
+    <input tabindex=""
+           type="submit" 
+           name="submit" 
+           value="Search"
+           i18n:attributes="value" 
+           />
+   </div>                
+  </form>
+
+  <tal:block 
+   tal:define="query_results python:[ brain.getObject() for brain in here.doFormSearch( REQUEST=request ) ];">
+      <div tal:condition="query_results">
+        <span i18n:translate="heading_search_results">Search results</span>
+   </div>
+      <div tal:condition="not: query_results"
+        tal:define="parents request/PARENTS;
+                    nil python: parents.reverse();
+                    portal here/portal_url/getPortalObject;">
+      <tal:block tal:repeat="parent parents">
+       <a tal:condition="python: len(parent.absolute_url()) >=
+                                 len(portal.absolute_url())"
+        tal:content="string: ${parent/title_or_id} /"
+        tal:attributes="href string: ${parent/absolute_url}/${template/getId};">Parent</a> 
+      </tal:block>
+   </div>
+ 
+ 
+   <tal:block tal:define="checkPermission python: here.portal_membership.checkPermission;
+                          results python: test(query_results, query_results,
+                                          [item for item in here.contentValues()
+                                          if checkPermission('View',item)]);">
+
+   <table tal:condition="results"
+          class="group" width="100%" cellspacing="0" cellpadding="2">
+ 
+    <tbody>
+    <tal:block tal:repeat="item results">
+     <tr tal:define="oddrow repeat/item/odd"
+         tal:attributes="class python:test(oddrow, 'even', 'odd')" > 
+    
+      <td width="50%">
+        <a tal:condition="python: item.isPrincipiaFolderish and item<>here"
+           tal:attributes="href string: ${item/absolute_url}/${template/getId}"
+           tal:content="item/title_or_id">Title</a>
+        
+        <b tal:condition="python: not item.isPrincipiaFolderish or item==here"
+           tal:content="item/title_or_id">Title</b>
+
+        <a tal:condition="python: item.getTypeInfo().getId()=='Image'"
+           tal:attributes="href string:#;
+                           onclick string: window.open('${item/absolute_url}','${item/getId}','toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=yes,width=${item/width},height=${item/height}');; ;">
+           <img tal:define="max python: 32;"
+                tal:attributes="src item/absolute_url;
+                                height python: test(item.height < max, item.height, max);" />
+        </a>
+      </td>
+
+      <td width="25%" 
+          i18n:translate="" 
+          tal:content="python:item.getTypeInfo().Title()">Metatype</td>      
+            
+      <td width="25%" tal:define="url item/absolute_url;">
+        <a tal:attributes="href string: #;
+                           onclick string: window.opener.CreateLink('${url}');; window.close();; ;"
+           i18n:translate="epoz_insert_link">Insert Link</a>
+         <div tal:condition="python: item.getTypeInfo().getId()=='Image'">
+          <a tal:attributes="href string: #;
+                             onclick string: window.opener.CreateImage('${url}');; window.close();; ;"
+             i18n:translate="epoz_insert_image">Insert Image</a>
+         </div>
+      </td>
+     </tr>
+     </tal:block>
+    </tbody>
+   </table>
+  </tal:block>
+ </tal:block> 
+</body>
+</html>
\ No newline at end of file
diff --git a/skins/generic/fleche_bc.gif b/skins/generic/fleche_bc.gif
new file mode 100644
index 0000000..a158ef2
Binary files /dev/null and b/skins/generic/fleche_bc.gif differ
diff --git a/skins/generic/folder_contents_macros.pt b/skins/generic/folder_contents_macros.pt
new file mode 100644
index 0000000..e8e84fe
--- /dev/null
+++ b/skins/generic/folder_contents_macros.pt
@@ -0,0 +1,113 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+<html xmlns="http://www.w3.org/1999/xhtml">
+
+  <head>
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8" />
+    <title>folder contents macros</title>
+  </head>
+
+  <body i18n:domain="cmf_default" metal:define-macro="FolderListing"
+	 			tal:define="batch_dict options/batch;
+				 						batch batch_dict/batch_obj;
+				 						listColumnInfos batch_dict/listColumnInfos;
+				 						listItemInfos batch_dict/listItemInfos;"
+				tal:omit-tag="">
+    <div style="display:none">
+      <span id="FolderUrl" tal:content="here/absolute_url" >Folder url for script</span>
+      <span tal:condition="options/form/is_orderable" tal:omit-tag="">
+	      <span id="FirstItemPos" tal:content="python:listItemInfos[0]['position']">first batch item position</span>
+	      <span id="BatchNavigationSize" tal:content="batch/size"></span>
+	    </span>
+    </div>
+   	<!-- batch navigation -->
+    <div tal:define="navBatchBarId string:topNavBatchBar" tal:omit-tag="">
+      <span metal:use-macro="here/batch_macros/macros/navigation">batch navigation</span>
+    </div>
+    <table class="listing" cellspacing="0">
+			<thead id="FolderListingHeader">
+				<tr>
+					<th tal:attributes="width column_info/width; colspan column_info/colspan" tal:repeat="column_info listColumnInfos" nowrap="nowrap" >
+						<a href="." tal:attributes="href column_info/url" tal:content="column_info/title" i18n:translate="">Type</a>
+						<span  tal:repeat="img column_info/images" tal:omit-tag="">
+							<a tal:omit-tag="python:not img.has_key('href')"
+								 tal:attributes="href img/href|nothing ; title img/alt" i18n:attributes="title"
+								 ><img tal:attributes="src img/src ; alt img/alt ; id img/id|nothing" border="0" i18n:attributes="alt" /></a>
+						</span>
+					</th>
+					<td colspan="5" tal:replace="nothing"></td>
+				</tr>
+			</thead>
+			<tbody id="FolderListingBody">
+<tbody tal:repeat="item_info listItemInfos" tal:omit-tag="">
+		    <tr class="" tal:attributes="class python: (even and 'even') or 'odd'" tal:define="even repeat/item_info/even">
+		      <td><img src="." alt="lock" height="16" width="16" border="0"
+		               tal:condition="python:not isAnon and item_info['lock']"
+		               tal:attributes="src here/lock.gif/absolute_url"
+		               i18n:attributes="alt" /></td>
+		      <td>
+		        <input id="" type="checkbox" name="ids:list" value=""
+		               tal:attributes="value item_info/id; id item_info/checkbox" tal:condition="item_info/checkbox" />
+		      </td>
+		      <td>
+		        <a href="." tal:attributes="href item_info/url" tal:condition="item_info/icon">
+		          <img src="." alt="" tal:attributes="src item_info/icon; alt item_info/type" border="0" i18n:attributes="alt" />
+		        </a>
+		      </td>
+		      <td>
+		        <a href="." tal:attributes="href item_info/url" tal:content="item_info/title_or_id">title or id</a>
+		      </td>
+		      <td>
+		        <span tal:replace="item_info/modified">2001</span>
+		      </td>
+		      <td>
+		        <span tal:replace="item_info/position">1</span>
+		      </td>
+		    </tr>
+</tbody>
+	   	</tbody>
+    </table>
+    <!-- batch navigation -->
+    <div tal:define="navBatchBarId string:bottomNavBatchBar" tal:omit-tag="">
+      <span metal:use-macro="here/batch_macros/macros/navigation">batch navigation</span>
+    </div>
+		<script type="text/javascript">
+		//<!--
+			// variables for drag-and-drop ordered support
+			var ddEnabled = false
+			try {
+				var firstItemPos = parseInt(document.getElementById("FirstItemPos").innerHTML);
+				ddEnabled = true;
+			}
+			catch (e) {}
+
+			var topNavBatchBar		= document.getElementById("topNavBatchBar");
+			var bottomNavBatchBar	= document.getElementById("bottomNavBatchBar");
+			var listing = document.getElementById("FolderListingBody");
+
+			if (ddEnabled) {
+				var rows = listing.getElementsByTagName("TR")
+				for ( var i = 0 ; i < rows.length ; i++ )
+					rows[i].pos = i + firstItemPos;
+
+				var fDDcontroler = new FolderDDropControler(listing);
+				var topNavBatchBar		= document.getElementById("topNavBatchBar");
+				var bottomNavBatchBar	= document.getElementById("bottomNavBatchBar");
+				if (topNavBatchBar && bottomNavBatchBar) {
+					new DropTarget(topNavBatchBar, fDDcontroler);
+					new DropTarget(bottomNavBatchBar, fDDcontroler);
+				}
+			}
+
+
+			addListener(document.getElementById("FolderListingHeader"), "click", loadListing);
+			if (topNavBatchBar && bottomNavBatchBar) {
+				addListener(topNavBatchBar, "click", loadListing);
+				addListener(bottomNavBatchBar, "click", loadListing);
+			}
+
+		//-->
+		</script>
+  </body>
+
+</html>
\ No newline at end of file
diff --git a/skins/generic/getAllMembersInRole.py b/skins/generic/getAllMembersInRole.py
new file mode 100755
index 0000000..f45c471
--- /dev/null
+++ b/skins/generic/getAllMembersInRole.py
@@ -0,0 +1,30 @@
+##parameters=role
+
+usersAndGroups = context.users_with_local_role(role)
+aclu = context.aq_inner.acl_users
+prefix = aclu.getGroupPrefix()
+mtool = context.portal_membership
+
+users = []
+groups = []
+
+for uOrG in usersAndGroups :
+	if uOrG.startswith(prefix) :
+		groups.append(uOrG)
+	else :
+		users.append(uOrG)
+
+gtool = context.portal_groups
+usersFromGroups = []
+for group in  groups :
+	usersFromGroups.extend(gtool.getUserNamesOfGroup(group, no_recurse = 0))
+
+allUsersDbl = users
+allUsersDbl.extend(usersFromGroups)
+allUsers = []
+for user in allUsersDbl :
+	if user not in allUsers :
+		allUsers.append(user)
+
+allMembers = mtool.getMembers(allUsers)
+return allMembers
\ No newline at end of file
diff --git a/skins/generic/getCPInfoList.py b/skins/generic/getCPInfoList.py
new file mode 100644
index 0000000..88d5d6c
--- /dev/null
+++ b/skins/generic/getCPInfoList.py
@@ -0,0 +1,19 @@
+##parameters=
+
+cp = context.getCPInfo()
+objectInfos = []
+rt = context.restrictedTraverse
+if cp is not None :
+	for path in cp[1] :
+		ob = rt(path, None)
+		icon = rt(ob.getIcon())
+		if ob :
+			objectInfos.append({'title'		: ob.title_or_id(),
+								'url'		: ob.absolute_url(),
+								'icon'		: icon.absolute_url(),
+								'height'	: icon.height,
+								'width'		: icon.width,
+								'type'		: ob.getPortalTypeName()
+								}
+							)
+return objectInfos
\ No newline at end of file
diff --git a/skins/generic/getGroupsOfRole.py b/skins/generic/getGroupsOfRole.py
new file mode 100755
index 0000000..2dcaf08
--- /dev/null
+++ b/skins/generic/getGroupsOfRole.py
@@ -0,0 +1,26 @@
+##parameters=role
+aclu = context.aq_inner.acl_users
+prefix = aclu.getGroupPrefix()
+allGroupNames = aclu.getGroupNames()
+usersAndGroupsWithLocalRole = context.users_with_local_role(role)
+
+groupsWithLocalRole = [ gn for gn in usersAndGroupsWithLocalRole if gn.startswith(prefix) ]
+
+groupsWithoutLocalRole = [ gn for gn in allGroupNames if gn not in groupsWithLocalRole ]
+
+getGroupById = context.portal_groups.getGroupById
+
+
+def sortOnTitleOrId(m0, m1) :
+	return cmp(m0.title_or_id().lower(), m1.title_or_id().lower())
+
+insideList = map(getGroupById, groupsWithLocalRole)
+outsideList = map(getGroupById, groupsWithoutLocalRole)
+
+insideList.sort(sortOnTitleOrId)
+outsideList.sort(sortOnTitleOrId)
+
+groupsDict = {'inside'	: insideList,
+			  'outside' : outsideList}
+
+return groupsDict
\ No newline at end of file
diff --git a/skins/generic/getPendingDocuments.py b/skins/generic/getPendingDocuments.py
new file mode 100644
index 0000000..a30d921
--- /dev/null
+++ b/skins/generic/getPendingDocuments.py
@@ -0,0 +1,14 @@
+##parameters=
+ctool = context.portal_catalog
+checkPerm = context.portal_membership.checkPermission
+res = []
+for s in ['pending'] : # other states can be added
+	res.extend(ctool(review_state=s))
+
+pend = []
+for b in res :
+	ob = b.getObject()
+	if checkPerm('Review portal content', ob) :
+		pend.append(ob)
+
+return pend
diff --git a/skins/generic/getReplyFormPosition.py b/skins/generic/getReplyFormPosition.py
new file mode 100644
index 0000000..a53b1dc
--- /dev/null
+++ b/skins/generic/getReplyFormPosition.py
@@ -0,0 +1,18 @@
+##parameters=rows, position
+if position is None :
+	return None
+else :
+	reply = context.talkback.getReply(position)
+	
+	def isChildOfReply(firstAprox, reply) :
+		thread = reply.parentsInThread() + reply.getReplies() # hum !
+		return firstAprox in thread
+	
+	for i in range(len(rows)) :
+		if rows[i].object == reply :
+			break
+
+	while rows[i].state > 0 and isChildOfReply(reply, rows[i].object) :
+		i+=1
+
+	return rows[i].object.id
\ No newline at end of file
diff --git a/skins/generic/global_plinn_style.css.dtml b/skins/generic/global_plinn_style.css.dtml
new file mode 100644
index 0000000..7f6d052
--- /dev/null
+++ b/skins/generic/global_plinn_style.css.dtml
@@ -0,0 +1,5 @@
+/* zpt_stylesheet.css */
+<dtml-var zpt_stylesheet.css>
+
+/* plinn_style.css */
+<dtml-var plinn_style.css>
\ No newline at end of file
diff --git a/skins/generic/global_plinn_style.css.dtml.metadata b/skins/generic/global_plinn_style.css.dtml.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/generic/global_plinn_style.css.dtml.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/generic/group_actions.py b/skins/generic/group_actions.py
new file mode 100755
index 0000000..142cd5b
--- /dev/null
+++ b/skins/generic/group_actions.py
@@ -0,0 +1,16 @@
+##parameters=
+
+portal_url = context.portal_url()
+
+return [{'id' : 'groups_members',
+         'name' : "Manage group's members",
+         'url' : portal_url + '/groups_members'},         
+        {'id' : 'group_data',
+         'name' : "Manage group's datas",
+         'url' : portal_url + '/group_data'},
+        {'id' : 'portal_members',
+         'name' : "Manage portal's members",
+         'url' : portal_url + '/portal_members'},
+        {'id' : 'portal_all_groups',
+         'name' : "Manage portal's groups",
+         'url' : portal_url + '/portal_all_groups'}]
\ No newline at end of file
diff --git a/skins/generic/group_data.pt b/skins/generic/group_data.pt
new file mode 100755
index 0000000..71d3111
--- /dev/null
+++ b/skins/generic/group_data.pt
@@ -0,0 +1,37 @@
+<html xmlns="http://www.w3.org/1999/xhtml"
+      metal:use-macro="here/main_template/macros/master"
+      i18n:domain="plinn">
+
+  <head>
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8" />
+    <title>Group data management</title>
+  </head>
+
+  <body metal:fill-slot="main_no_tabs"
+        tal:define="requestedGroup python:here.setAndGetSessionVar('requestedGroup', request.get('group', None), allowFalse=0)"
+        i18n:domain="plinn" tal:omit-tag="">
+    <table  metal:use-macro="here/gruf_macros/macros/gruf_settings">
+      <tr>
+        <td>Using gruf_settings macro</td>
+      </tr>
+      <tr>
+        <td metal:fill-slot="form" tal:omit-tag="">
+          <table>
+            <tr>
+              <td tal:define="template_url python:'%s/%s' % (portal_url, template.id)" >
+                <div metal:use-macro="here/gruf_macros/macros/gruf_tree">Groups tree from gruf_macros</div>
+              </td>
+              <td>
+                <div tal:condition="requestedGroup" tal:omit-tag="">
+                  <div metal:use-macro="here/gruf_macros/macros/change_group_data">change_group_data from gruf_macros</div>
+                  <div metal:use-macro="here/gruf_macros/macros/assign_roles">assign_roles from gruf_macros</div>
+                </div>
+              </td>
+            </tr>
+          </table>
+        </td>
+      </tr>
+    </table>
+  </body>
+
+</html>
\ No newline at end of file
diff --git a/skins/generic/groups_members.pt b/skins/generic/groups_members.pt
new file mode 100755
index 0000000..1be8815
--- /dev/null
+++ b/skins/generic/groups_members.pt
@@ -0,0 +1,68 @@
+<html xmlns="http://www.w3.org/1999/xhtml" metal:use-macro="here/main_template/macros/master">
+
+  <head>
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8" />
+    <title>Group members management</title>
+    <link href="../content/plinn_style.css" rel="stylesheet" media="screen" />
+  </head>
+
+  <body tal:omit-tag="" metal:fill-slot="main_no_tabs"
+        tal:define="requestedGroup	python:here.setAndGetSessionVar('requestedGroup', request.get('group', None), allowFalse=0);
+        						gtool						here/portal_groups ;
+        						group_prefix		here/acl_users/getGroupPrefix ;
+        						prefixLength		python:len(group_prefix) ;
+			        			template_url		python:'%s/%s' % (portal_url, template.id)"
+        i18n:domain="plinn">
+    <table metal:use-macro="here/gruf_macros/macros/gruf_settings">
+      <tr>
+        <td>Using gruf_setting macro from gruf_macros</td>
+      </tr>
+      <tr>
+        <td metal:fill-slot="form" tal:omit-tag="">
+          <table>
+            <tr>
+              <td>
+                <div metal:use-macro="here/gruf_macros/macros/gruf_tree">
+                  Groups tree from gruf_macros
+                </div>
+              </td>
+              <td>
+              <div tal:condition="requestedGroup" tal:omit-tag="">
+                <table tal:define="group python:gtool.getGroupById(requestedGroup)">
+                  <tr>
+                    <th><a name="assign_members"></a>
+                    	<span i18n:translate="">
+                      Members of "<span tal:replace="python:group.title or group.id[prefixLength:]" i18n:name="groupId">group id</span>"
+                      </span>
+                    </th>
+                  </tr>
+                  <tr>
+                    <td>
+                      <div metal:use-macro="here/gruf_macros/macros/assign_members">
+                        assign_members form grom gruf_macros
+                      </div>
+                    </td>
+                  </tr>
+                  <tr>
+                    <th><a name="assign_groups"></a><span i18n:translate="" tal:omit-tag="">Groups of "<span tal:replace="python:group.title or group.id[prefixLength:]" i18n:name="groupId">group id</span>"
+                      </span>
+                    </th>
+                  </tr>
+                  <tr>
+                    <td>
+                      <div metal:use-macro="here/gruf_macros/macros/assign_groups">
+                        assign_group from gruf_macros
+                      </div>
+                    </td>
+                  </tr>
+                </table>
+              </div>
+              </td>
+            </tr>
+          </table>
+        </td>
+      </tr>
+    </table>
+  </body>
+
+</html>
\ No newline at end of file
diff --git a/skins/generic/gruf_macros.pt b/skins/generic/gruf_macros.pt
new file mode 100755
index 0000000..e09c0fa
--- /dev/null
+++ b/skins/generic/gruf_macros.pt
@@ -0,0 +1,477 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+<html xmlns="http://www.w3.org/1999/xhtml" metal:use-macro="here/main_template/macros/master">
+
+  <head>
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8" />
+    <title>GRUF Macros</title>
+    <link href="../content/plinn_style.css" rel="stylesheet" media="screen" />
+    <link href="../patch_skins/zpt_stylesheet.css" rel="stylesheet" media="screen">
+  </head>
+
+  <body tal:omit-tag="" metal:fill-slot="main" i18n:domain="plinn">
+    <pre>gruf_tree</pre>
+    <hr />
+    <table tal:define="treeDict	here/makeGrufTree ;
+                       tree		treeDict/tree ;
+                       rows		treeDict/rows ;
+                       rootNode	python:rows.pop(0) ;
+                       height	tree/height ;
+                       gtool here/portal_groups ;
+                       group_prefix here/acl_users/getGroupPrefix ;
+                       prefixLength python:len(group_prefix);
+                       u0 request/URL0" metal:define-macro="gruf_tree">
+      <tr>
+        <th colspan="3" tal:attributes="colspan height" nowrap="nowrap" i18n:translate="">Group Tree</th>
+      </tr>
+      <tr tal:repeat="row rows">
+        <td colspan="1" tal:attributes="colspan indent" tal:define="indent python: row.depth - 1" tal:condition="indent">
+          <br />
+        </td>
+        <td tal:define="state row/state ; rlink row/branch ; msg python:state > 0 and 'collapse' or 'expand'" width="16">
+          <a href="#" tal:attributes="name row/id ; href string:$u0${rlink/link}; title msg" tal:condition="state" i18n:attributes="title"><img src="pl.gif" alt="" tal:attributes="src python:state > 0 and '/p_/mi' or '/p_/pl' ; alt msg" border="0" i18n:attributes="alt" /></a><span tal:condition="not:state" tal:omit-tag="">  </span>
+        </td>
+        <td colspan="1" tal:attributes="colspan python: height - row.depth" tal:define="object row/object ; group python:gtool.getGroupById(object.id)" nowrap="nowrap">
+          <a href="." tal:attributes="href string:${template_url}?group=${object/id}"><img src="GRUFGroups.gif" alt="Group id" tal:attributes="src here/GRUFGroups.gif/absolute_url ; alt object/id" border="0" /><span tal:replace="python:group.title or group.id[prefixLength:]">group</span></a>
+        </td>
+      </tr>
+    </table>
+    <pre>change_group_data</pre>
+    <hr />
+    <form action="change_group" method="post" tal:attributes="action string:${portal_url}/change_group" metal:define-macro="change_group_data">
+      <table class="TwoColumnForm" cellspacing="0" tal:define="wGroup python:here.portal_groups.getGroupById(requestedGroup) ;
+       			   sharedFolderUrl python:here.portal_groups.getGroupareaURL(id = requestedGroup)">
+        <tr>
+          <th i18n:translate="">Identifier</th>
+          <td>
+            <span tal:replace="requestedGroup">Group Name</span><input type="hidden" name="groupId" value="group" tal:attributes="value requestedGroup" />
+          </td>
+        </tr>
+        <tr>
+          <th i18n:translate="">Title</th>
+          <td>
+            <input type="text" name="title" size="51" tal:attributes="value wGroup/title" />
+          </td>
+        </tr>
+        <tr>
+          <th i18n:translate="">Description</th>
+          <td>
+            <textarea id="textareaName" name="description" rows="3" cols="38" tal:content="wGroup/description"></textarea>
+          </td>
+        </tr>
+        <tr tal:define="creationFlag here/portal_groups/getGroupWorkspacesCreationFlag" tal:condition="creationFlag | sharedFolderUrl">
+          <th i18n:translate="">Shared folder</th>
+          <td>
+            <div tal:condition="sharedFolderUrl">
+              <a href="." tal:attributes="href python:sharedFolderUrl+'/folder_contents'" i18n:translate="">Open shared folder...</a>
+            </div>
+            <div tal:condition="not:sharedFolderUrl">
+              <label><input type="checkbox" name="createSharedFolder" /><span i18n:translate="" tal:omit-tag="">Create</span></label>
+            </div>
+          </td>
+        </tr>
+        <tr>
+          <th><br />
+          </th>
+          <td>
+            <input type="submit" value="Validate" i18n:attributes="value" />
+          </td>
+        </tr>
+      </table>
+    </form>
+    <pre>assign_roles</pre>
+    <div tal:condition="python:mtool.checkPermission('Manage portal', portal_object)" tal:omit-tag="" metal:define-macro="assign_roles">
+      <table class="assign_global_roles" cellspacing="0" tal:define="groupId requestedGroup ;
+                    group python:here.portal_groups.getGroupById(groupId);
+                    explicitRoles python:filter(lambda x: x not in ('Authenticated', 'Shared'), group.getUserRoles());
+                    implicitRoles python:[ role for role in group.getRoles() if role not in explicitRoles + ['Authenticated', 'Shared'] ];
+                    assignabledRoles python:[ role for role in here.portal_membership.getPortalRoles() if role not in explicitRoles + ['Authenticated', 'Shared'] ]">
+        <tr>
+          <th i18n:translate="">Implicit roles</th>
+          <td>
+            <ul tal:condition="implicitRoles">
+              <li tal:content="role" tal:repeat="role implicitRoles" i18n:translate="">role</li>
+            </ul>
+          </td>
+        </tr>
+        <tr>
+          <th i18n:translate="">Explicit roles</th>
+          <td>
+            <form action="." method="post" tal:attributes="action here/portal_url">
+              <div tal:condition="explicitRoles" tal:omit-tag="">
+                <div tal:repeat="role explicitRoles">
+                  <input type="checkbox" name="roles:list" value="role" tal:attributes="value role" /><span tal:content="role" tal:omit-tag="" i18n:translate="">role</span>
+                </div>
+                <input type="submit" name="remove_group_roles:method" value="Remove" i18n:attributes="value" /><br />
+                <br />
+              </div>
+              <input type="hidden" name="groupId" value="group" tal:attributes="value groupId"/>
+              <div tal:condition="assignabledRoles">
+                <select name="role" size="1">
+                  <option tal:attributes="value role" tal:content="role" tal:repeat="role assignabledRoles" i18n:translate="">role</option>
+                </select><input type="submit" name="append_group_role:method" value="Append" i18n:attributes="value" />
+              </div>
+            </form>
+          </td>
+        </tr>
+      </table>
+    </div>
+    <hr />
+    <pre>assign_members</pre>
+    <hr />
+    <form action="." method="post" tal:attributes="action portal_url" metal:define-macro="assign_members">
+      <table class="twins_list" tal:define="
+              		uNamesOfGroup	python:here.portal_groups.getUserNamesOfGroup(requestedGroup) ;
+              		memberMetadata python:mtool.getMembersMetadata(uNamesOfGroup);
+              		insideList		memberMetadata/memberList ;
+              		outsideList 	memberMetadata/complementList">
+        <tr>
+          <th i18n:translate="">Outside group</th>
+          <td><br /></td>
+          <th i18n:translate="">Inside group</th>
+        </tr>
+        <tr>
+          <td>
+            <select name="append_members:list" size="20" multiple="multiple">
+              <option value="one" tal:attributes="value member/id" tal:content="member/fullname" tal:repeat="member outsideList">NAME Surname or login</option>
+            </select>
+          </td>
+          <td class="twins_list">
+            <input type="submit" name="append_users_in_group:method" value="&gt;&gt;&gt;" />
+            <br /><br />
+            <input type="submit" name="remove_users_in_group:method" value="&lt;&lt;&lt;" tal:condition="insideList" />
+          </td>
+          <td>
+            <select name="remove_members:list" size="20" multiple="multiple" tal:condition="insideList">
+              <option value="one" tal:attributes="value member/id" tal:content="member/fullname" tal:repeat="member insideList">NAME Surname or login</option>
+            </select>
+            <div class="info_message" tal:condition="not:insideList" i18n:translate="">None</div>
+          </td>
+        </tr>
+      </table>
+      <input type="hidden" name="groupId" value="group" tal:attributes="value requestedGroup" />
+    </form>
+    <pre>assign_groups</pre>
+    <hr/>
+    <form action="." method="post" tal:attributes="action portal_url" metal:define-macro="assign_groups">
+      <table class="twins_list"
+             tal:define="
+						 gtool			here/portal_groups ;
+						 groupsOfGroup	python:gtool.getGroupsOfGroup(requestedGroup) ;
+						 insideList		python:gtool.getGroups(groupsOfGroup) ;
+						 outsideList		python:gtool.getOtherGroups(groupsOfGroup)">
+        <tr>
+          <th i18n:translate="">Outside group</th>
+          <th><br /></th>
+          <th i18n:translate="">Inside group</th>
+        </tr>
+        <tr>
+          <td>
+            <select name="append_groups:list" size="6" multiple="multiple">
+              <option tal:attributes="value group/id" tal:content="python:group.title or group.id[prefixLength:]" tal:repeat="group outsideList">group1</option>
+            </select>
+          </td>
+          <td>
+            <input type="submit" name="append_groups_in_group:method" value="&gt;&gt;&gt;"/><br/>
+            <br/>
+            <input type="submit" name="remove_groups_in_group:method" value="&lt;&lt;&lt;" tal:condition="insideList" />
+          </td>
+          <td>
+            <select name="remove_groups:list" size="6" multiple="multiple" tal:condition="insideList">
+              <option tal:attributes="value group/id" tal:content="python:group.title or group.id[prefixLength:]" tal:repeat="group insideList">group2</option>
+            </select>
+            <div class="info_message" tal:condition="not:insideList" i18n:translate="">
+              None
+            </div>
+          </td>
+        </tr>
+      </table>
+      <input type="hidden" name="groupId" value="groupId" tal:attributes="value requestedGroup" />
+    </form>
+
+    <pre>all_members</pre>
+    <hr/>
+    <form action="." method="post" tal:attributes="action portal_url" metal:define-macro="all_members">
+      <table class="TwoColumnForm" cellspacing="0">
+        <tr>
+          <th i18n:translate="">All members</th>
+        </tr>
+        <tr>
+          <td>
+            <select name="memberIds:list" size="20" multiple="multiple"
+        tal:attributes="ondblclick string:javascript:openMemberPopup(this.value);;"
+        tal:define="membersMetadata python:mtool.getMembersMetadata([])['complementList']">
+              <option value="userid" tal:attributes="value member/id" tal:content="member/fullname" tal:repeat="member membersMetadata">NAME surname</option>
+            </select>
+          </td>
+        </tr>
+        <tr>
+          <td>
+            <input type="submit" name="member_properties_form:method" value="Edit" i18n:attributes="value" /><br/>
+<input type="submit" name="delete_members:method" value="Remove selected" i18n:attributes="value" />
+          </td>
+        </tr>
+      </table>
+    </form>
+    <pre>all_groups</pre>
+    <hr/>
+    <form action="." method="post" tal:attributes="action portal_url" metal:define-macro="all_groups">
+      <table class="TwoColumnForm" cellspacing="0"
+      			 tal:define="gtool here/portal_groups ;
+      			 						 group_prefix here/acl_users/getGroupPrefix ;
+      			 						 prefixLength python:len(group_prefix)">
+        <tr>
+          <th i18n:translate="">All groups</th>
+        </tr>
+        <tr>
+          <td>
+            <select name="groups:list" size="20" multiple="multiple">
+              <option value="group1" tal:repeat="group python:gtool.getOtherGroups([])" tal:attributes="value group/id" tal:content="python:group.title or group.id[prefixLength:]" >Group 1</option>
+            </select>
+          </td>
+        </tr>
+        <tr>
+          <td>
+						<input type="submit" name="remove_groups:method" value="Remove selected" i18n:attributes="value"
+									 tal:define="DeleteGroups python:modules['Products.Plinn.permissions'].DeleteGroups"
+									 tal:attributes="disabled python:not mtool.checkPermission(DeleteGroups, portal_object)"/>
+          </td>
+        </tr>
+      </table>
+    </form>
+    <pre>add_member</pre>
+    <hr/>
+    <form action="." method="post" tal:attributes="action portal_url" metal:define-macro="add_member">
+      <table class="TwoColumnForm" cellspacing="0">
+        <tr>
+          <th colspan="2" nowrap="nowrap" i18n:translate="">Add new member</th>
+        </tr>
+        <tr>
+          <th nowrap="nowrap" i18n:translate="">Login</th>
+          <td>
+            <input type="text" name="username" size="40"/>
+          </td>
+        </tr>
+        <tr>
+          <th nowrap="nowrap" i18n:translate="">Name</th>
+          <td>
+            <input type="text" name="name" size="40"/>
+          </td>
+        </tr>
+        <tr>
+          <th nowrap="nowrap" i18n:translate="">Given Name</th>
+          <td>
+            <input type="text" name="given_name" size="40"/>
+          </td>
+        </tr>
+        <tr>
+          <th nowrap="nowrap" i18n:translate="">Password</th>
+          <td>
+            <input type="password" name="password" size="40"/>
+          </td>
+        </tr>
+        <tr>
+          <th nowrap="nowrap" i18n:translate="">Confirm</th>
+          <td>
+            <input type="password" name="confirm" size="40"/>
+          </td>
+        </tr>
+        <tr>
+          <th nowrap="nowrap" i18n:translate="">Email address</th>
+          <td>
+            <input type="text" name="email" size="40"/>
+          </td>
+        </tr>
+        <tr>
+          <th nowrap="nowrap" i18n:translate=""></th>
+          <td>
+            <input type="submit" name="add_member:method" value="Add" i18n:attributes="value" />
+          </td>
+        </tr>
+      </table>
+    </form>
+    <pre>add_group</pre>
+    <hr/>
+    <form action="." method="post" tal:attributes="action portal_url" metal:define-macro="add_group">
+      <table class="TwoColumnForm" cellspacing="0">
+        <tr>
+          <th colspan="2" i18n:translate="">Add new group</th>
+        </tr>
+        <tr>
+          <th i18n:translate="">Id</th>
+          <td>
+            <input type="text" name="groupname" size="45"/>
+          </td>
+        </tr>
+        <tr>
+          <th i18n:translate="">Title</th>
+          <td>
+            <input type="text" name="title" size="45"/>
+          </td>
+        </tr>
+        <tr>
+          <th i18n:translate="">Description</th>
+          <td>
+            <textarea name="description" rows="4" cols="34"></textarea>
+          </td>
+        </tr>
+        <tr tal:condition="here/portal_groups/getGroupWorkspacesCreationFlag|nothing">
+          <th i18n:translate="">Shared folder</th>
+          <td>
+            <label><input type="checkbox" name="createArea" /><span i18n:translate="" tal:omit-tag="">Create</span></label>
+          </td>
+        </tr>
+        <tr>
+          <td><br /></td>
+          <td>
+            <input type="submit" name="add_group:method" value="Add" i18n:attributes="value"
+            			 tal:define="AddGroups python:modules['Products.Plinn.permissions'].AddGroups"
+									 tal:attributes="disabled python:not mtool.checkPermission(AddGroups, portal_object)"/>
+          </td>
+        </tr>
+      </table>
+    </form>
+    <pre>gruf_settings</pre>
+    <hr />
+    <table class="config" metal:define-macro="gruf_settings">
+      <tr>
+        <td tal:define="ai_dicts here/group_actions;
+						useQueryString python:0">
+          <div metal:use-macro="here/widgets/macros/tabs">
+            GRUF tabs
+          </div>
+        </td>
+      </tr>
+      <tr>
+        <td>
+          <div metal:define-slot="form">
+            form slot here
+          </div>
+        </td>
+      </tr>
+    </table>
+
+    <pre>member_properties_form</pre>
+    <div metal:define-macro="member_properties_form"
+	    	tal:define="selectedMember python:here.portal_membership.getMemberById(request.form['member_id']);
+										gtool here/portal_groups ;
+										group_prefix here/acl_users/getGroupPrefix ;
+										prefixLength python:len(group_prefix) ;
+										implExpl python:gtool.getExplAndImplGroupsByUserId(selectedMember.getId());
+										mq nocall:modules/ZTUtils/make_query">
+	    <form action="." method="post" tal:attributes="action portal_url">
+	      <table class="TwoColumnForm" cellspacing="0">
+	        <tr>
+	          <th nowrap="nowrap" i18n:translate="">Login</th>
+	          <td>
+	            <span tal:replace="selectedMember/getId"></span><input type="hidden" name="username" tal:attributes="value selectedMember/getId" />
+	          </td>
+	        </tr>
+          <tr tal:condition="implExpl/explicit|implExpl/implicit">
+            <th nowrap="nowrap" i18n:translate="">Groups</th>
+            <td>
+            	<div tal:condition="implExpl/explicit"><span i18n:translate="" tal:omit-tag="">explicitly:</span> <span tal:repeat="group implExpl/explicit"><span tal:replace="python:group.title or group.id[prefixLength:]">group</span><span tal:condition="not:repeat/group/end">, </span></span></div>
+            	<div tal:condition="implExpl/implicit"><span i18n:translate="" tal:omit-tag="">implicitly:</span> <span tal:repeat="group implExpl/implicit"><span tal:replace="python:group.title or group.id[prefixLength:]">group</span><span tal:condition="not:repeat/group/end">, </span></span></div>
+            </td>
+          </tr>
+          <tr>
+	          <th nowrap="nowrap" i18n:translate="">Name</th>
+	          <td>
+	            <input type="text" name="name" size="40" tal:attributes="value selectedMember/name" />
+	          </td>
+	        </tr>
+          <tr>
+	          <th nowrap="nowrap" i18n:translate="">Given Name</th>
+	          <td>
+	            <input type="text" name="given_name" size="40" tal:attributes="value selectedMember/given_name" />
+	          </td>
+	        </tr>
+	        <tr>
+	          <th nowrap="nowrap" i18n:translate="">Password</th>
+	          <td>
+	            <input type="password" name="password" size="40" />
+	          </td>
+	        </tr>
+	        <tr>
+	          <th nowrap="nowrap" i18n:translate="">Confirm</th>
+	          <td>
+	            <input type="password" name="confirm" size="40"/>
+	          </td>
+	        </tr>
+	        <tr>
+	          <th nowrap="nowrap" i18n:translate="">Email address</th>
+	          <td>
+	            <input type="text" name="email" size="40" tal:attributes="value selectedMember/email" />
+	          </td>
+	        </tr>
+	        <tr>
+	          <th nowrap="nowrap" i18n:translate=""></th>
+	          <td>
+	            <input type="submit" name="edit_member_settings:method" value="Validate" i18n:attributes="value" />
+	          </td>
+	        </tr>
+	      </table>
+	    </form>
+		  <h2 i18n:translate="">Tree view by this member</h2>
+		  <a href="." onclick="openMemberTreeView(event)" tal:attributes="href python:'%s/portal_members?%s' % ( portal_url, mq(member_id=selectedMember.getId(), macroName='member_tree_view') )" i18n:translate="">Click here to see the tree viewed by this member &gt;&gt;</a>
+	  </div>
+	  
+		<pre>member_tree_view</pre>
+		<div metal:define-macro="member_tree_view"
+				 class="boxes_container"
+				 tal:define="selectedMember python:here.portal_membership.getMemberById(request.member_id);
+				 						 treeRoot   portal_object;
+                     treeDict   python:here.make_nav_tree(rootObject=treeRoot, filtered_meta_types=['Plinn Folder', 'Portfolio', 'Topic'], userid=request.member_id );
+                     tree       treeDict/tree;
+                     rows       treeDict/rows;
+                     height			tree/height;
+                     rootNode   python:rows.pop(0);
+                     box_id string:tree_box_${rootNode/object/id}_${request/member_id};
+                     mq nocall:modules/ZTUtils/make_query"
+         tal:omit-tag=""
+         tal:on-error="string:Path Error"
+         >
+			<table class="tree_box" cellspacing="0">
+				<tr>
+					<th>
+						<table>
+							<tr>
+								<td width="16" tal:condition="nothing">
+									<a title="collapse all" href="." tal:attributes="href string:?collapse_all=${rootNode/object/id}" i18n:attributes="title"><img src="../skins/collapse_all.gif" alt="collapse all" height="16" width="16" border="0" tal:attributes="src here/collapse_all.gif/absolute_url" i18n:attributes="alt" /></a>
+								</td>
+								<th tal:content="rootNode/object/title_or_id" style="border : none">Root Node</th>
+							</tr>
+						</table>
+					</th>
+				</tr>
+
+				<tr>
+					<td>
+						<table  cellspacing="0">
+							<tbody tal:attributes="id  box_id">
+								<tr tal:repeat="row rows">
+								<td tal:define="indent python: row.depth - 1" tal:attributes="colspan indent" tal:condition="indent">&nbsp;</td>
+								<td tal:define="state row/state ; rlink row/branch ; msg python:state > 0 and 'collapse' or 'expand'" width="16"
+								 ><a href="#" tal:condition="state" tal:attributes="name row/id ; href python:'%s/portal_members?%s' % (portal_url, mq(member_id=selectedMember.getId(), macroName='member_tree_view') + '&' + rlink['link'][1:]) ; title msg" i18n:attributes="title"
+								 ><img src="/p_/pl" alt="" tal:attributes="src python:state > 0 and '/p_/mi' or '/p_/pl' ; alt msg" i18n:attributes="alt" height="16" width="16" border="0" /></a>
+								  <a href="#" tal:attributes="name row/id ; href rlink/link" tal:condition="not:state">&nbsp;&nbsp;</a>
+								</td>
+								<td colspan="1" tal:define="obj nocall: row/object"
+										tal:attributes="colspan python: height - row.depth"
+										width="99%" tal:on-error="string:erreur"
+								 ><img src="." alt="" tal:define="icon python:context.restrictedTraverse(obj.getIcon())" tal:attributes="src icon/absolute_url; height icon/height; width icon/width; alt obj/getPortalTypeName" i18n:attributes="alt" border="0" />
+									<span tal:replace="obj/title_or_id">Title</span></td>
+								</tr>
+							</tbody>
+						</table>
+					</td>
+				</tr>
+			</table>
+		  <div>
+		  	<a href="." tal:attributes="href python:'%s/portal_members?%s' % ( portal_url, mq(member_id=selectedMember.getId(), macroName='member_properties_form') )" i18n:translate="">&lt;&lt; Back to member properties</a>
+		  </div>
+    </div>
+    
+  </body>
+
+</html>
\ No newline at end of file
diff --git a/skins/generic/hasWfActions.py b/skins/generic/hasWfActions.py
new file mode 100644
index 0000000..10bd7ab
--- /dev/null
+++ b/skins/generic/hasWfActions.py
@@ -0,0 +1,11 @@
+##parameters=ob=None
+
+if ob is None :
+	ob = context
+wtool = context.portal_workflow
+objectActions = filter(lambda a : a.has_key('id'), wtool.getActionsFor(ob))
+
+if not wtool.getInfoFor(ob,'review_state','') == 'published' and  not objectActions :
+	return True
+else :
+	return False
\ No newline at end of file
diff --git a/skins/generic/havePendingContents.py b/skins/generic/havePendingContents.py
new file mode 100644
index 0000000..3d58673
--- /dev/null
+++ b/skins/generic/havePendingContents.py
@@ -0,0 +1,9 @@
+##parameters=
+ctool = context.portal_catalog
+checkPerm = context.portal_membership.checkPermission
+from Products.CMFCore.permissions import ReviewPortalContent
+for s in ['pending'] : # other states can be added
+	for b in ctool(review_state=s) :
+		if checkPerm(ReviewPortalContent, b.getObject()) :
+			return True
+return False
\ No newline at end of file
diff --git a/skins/generic/header_widgets.pt b/skins/generic/header_widgets.pt
new file mode 100755
index 0000000..fc6080d
--- /dev/null
+++ b/skins/generic/header_widgets.pt
@@ -0,0 +1,199 @@
+<html xmlns="http://www.w3.org/1999/xhtml">
+
+  <head>
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8" />
+    <title>Header widgets</title>
+  </head>
+
+  <body>
+  
+  	<hr/>
+  	<pre>titleAndDescForm</pre>
+  	<hr/>
+  	
+    <div metal:define-macro="titleAndDescForm">
+	    <form method="post" onsubmit="return submitMetadataForm(this);" tal:attributes="action here/absolute_url" i18n:domain="plinn">
+	      <table class="TwoColumnForm" cellspacing="0">
+	        <tr>
+	          <th i18n:translate="">Title</th>
+	          <td>
+	            <input type="text" name="title" value="Title" size="64" tal:attributes="value here/Title" />
+	          </td>
+	        </tr>
+	        <tr>
+	          <th i18n:translate="">Description</th>
+	          <td>
+	            <textarea name="description" rows="4" cols="61" tal:content="here/Description">Description</textarea>
+	          </td>
+	        </tr>
+	        <tr>
+	          <th><br/></th>
+	          <td>
+              <input type="submit" name="metadata_edit_control:method" value="Validate" i18n:attributes="value" />
+              <a href="." style="float:right" id="showFullMetadataForm"
+              	 tal:define="mq nocall:mq|nothing;"
+              	 tal:attributes="href python:mq and '%s?%s' % (url , mq( request.form, {'edit_metadata':'fullMetadataForm'})) or '.'"
+								 i18n:translate="">Edit all metadata</a> 
+            </td>
+	        </tr>
+	      </table>
+	    </form>
+    </div>
+
+  	<hr/>
+  	<pre>fullMetadataForm</pre>
+  	<hr/>
+    
+		<div metal:define-macro="fullMetadataForm">
+      <form action="metadata_edit_form" method="post"
+						tal:attributes="action here/absolute_url" i18n:domain="plinn" onsubmit="return submitMetadataForm(this);">
+			<table class="TwoColumnForm"
+						 tal:define="allow_discussion python:getattr(here, 'allow_discussion', None);
+						 						 DateTime nocall:modules/DateTime/DateTime;">
+			 <tr>
+			  <th i18n:translate="">Enable Discussion?</th>
+			  <td colspan="3">
+			   <select name="allow_discussion">
+			    <option value="default"
+			       tal:attributes="selected python: allow_discussion is None"
+			       i18n:translate="">Default</option>
+			    <option value="off"
+			       tal:attributes="selected python: allow_discussion is False"
+			       i18n:translate="">Off</option>
+			    <option value="on"
+			       tal:attributes="selected python: allow_discussion is True"
+			       i18n:translate="">On</option>
+			   </select>
+			  </td>
+			 </tr>
+			 <tr>
+			  <th align="right" i18n:translate="">Identifier</th>
+			  <td colspan="3"> <span tal:replace="context/Identifier"></span>
+			  </td>
+			 </tr>
+			 <tr>
+			  <th align="right" i18n:translate="">Title</th>
+			  <td colspan="3">
+			   <input type="text"
+			          name="title"
+			          value=""
+			          size="65"
+			          tal:attributes="value context/Title" />
+			  </td>
+			 </tr>
+			 <tr>
+			  <th align="right" i18n:translate="">Description</th>
+			  <td colspan="3">
+			   <textarea name="description:text" rows="5" cols="65" tal:content="context/Description"></textarea>
+			  </td>
+			 </tr>
+			 <tr>
+			  <th align="right" i18n:translate="">Subject</th>
+			  <td tal:define="subj_lines python: '\n'.join( context.Subject() )">
+			   <textarea name="subject:lines" rows="3" cols="20"
+			             tal:content="subj_lines"></textarea>
+			   <br />
+			   <select name="subject:list" multiple
+			           tal:define="mtool context/portal_metadata;
+			                       items python: mtool.listAllowedSubjects(context);"
+			           tal:condition="items">
+			    <option value=""
+			            tal:define="subjects context/Subject"
+			            tal:repeat="item items"
+			            tal:attributes="value item; selected python: item in subjects"
+			            tal:content="item">
+			    </option>
+			   </select>
+			  </td>
+			  <th align="right" i18n:translate="">Contributors</th>
+			  <td tal:define="contrib_lines python: '\n'.join( context.Contributors() )">
+			   <textarea name="contributors:lines" rows="5" cols="30"
+			             tal:content="contrib_lines"></textarea>
+			  </td>
+			 </tr>
+			 <tr>
+			  <th align="right" i18n:translate="">Creation Date</th>
+			  <td> <span tal:replace="python:context.created().strftime(locale_date_fmt)">Creation date</span>
+			  </td>
+			  <th align="right" i18n:translate="">Last Modified Date</th>
+			  <td><span tal:replace="python:context.modified().strftime(locale_date_fmt)">Modification date</span></td>
+			 </tr>
+			 <!-- TODO : localise date format -->
+			 <tr tal:define="translate python:modules['Products.Plinn.utils'].translate;
+			                 _ python:lambda x: translate(x, here)">
+					<td colspan="2">
+						<fieldset tal:define="effective_date here/effective_date|nothing;
+						date python:effective_date or DateTime(1970, 0);
+						dateName string:effective_date;
+						defaultDate string:1969/12/31;
+						defaultDateLabel python:_('immediately')">
+				    	<legend i18n:translate="">Effective Date</legend>
+							<span metal:use-macro="here/widgets/macros/date_selector"></span>
+						</fieldset>
+					</td>
+            <td colspan="2">
+              <fieldset tal:define="expiration_date here/expiration_date|nothing;
+											date python:expiration_date or DateTime(2500, 0);
+											dateName string:expiration_date;
+											defaultDate string:2499/12/31;
+											defaultDateLabel python:_('never')"
+											>
+                <legend i18n:translate="">Expiration Date</legend>
+								<span metal:use-macro="here/widgets/macros/date_selector"></span>
+              </fieldset>
+            </td>
+          </tr>
+			 <tr>
+			  <th align="right" i18n:translate="">Format</th>
+            <td> <input type="text" name="format" value=""
+			              tal:attributes="value context/Format" />
+			  </td>
+            <td></td>
+            <td></td>
+          </tr>
+			 <tr>
+			  <th align="right" i18n:translate="">Language</th>
+            <td> <input type="text" name="language" value=""
+			              tal:attributes="value context/Language" />
+			  </td>
+            <td></td>
+            <td></td>
+          </tr>
+			 <tr>
+			  <th align="right" i18n:translate="">Rights</th>
+            <td> <input type="text" name="rights" value=""
+			              tal:attributes="value context/Rights" />
+			  </td>
+            <td></td>
+            <td></td>
+          </tr>
+			 <tr>
+			  <td>&nbsp;</td>
+			  <td colspan="3">
+              <input type="submit" name="metadata_edit_control:method" value="Validate" i18n:attributes="value" />
+              <a href="." style="float:right" id="showSimpleMetadataForm"
+              	 tal:define="mq nocall:mq|nothing;"
+              	 tal:attributes="href python:mq and '%s?%s' % (url , mq( request.form, {'edit_metadata':'titleAndDescForm'})) or '.'"
+              	 i18n:translate="">Edit standard metadata</a>
+            </td>
+			 </tr>
+			</table>
+			</form>
+    </div>
+    
+  	<hr/>
+  	<pre>viewTitleAndDesc</pre>
+  	<hr/>
+    
+		<div metal:define-macro="viewTitleAndDesc" i18n:domain="plinn">
+			<div id="DesktopTitle">
+				<img src="document_icon.gif" alt="" border="0" tal:define="icon python:here.restrictedTraverse(here.getIcon())" tal:attributes="src icon/absolute_url; alt here/getPortalTypeName; height icon/height; width icon/width" i18n:attributes="alt" /><span tal:content="here/title_or_id">Page Title</span>
+			</div>
+			<div id="DesktopDescription" tal:content="structure here/Description">
+			 Description of the resource goes here, perhaps even wrapping lines; this is to make it long enough to test.
+			</div>
+    </div>
+
+  </body>
+
+</html>
\ No newline at end of file
diff --git a/skins/generic/index_html.pt b/skins/generic/index_html.pt
new file mode 100755
index 0000000..ce514aa
--- /dev/null
+++ b/skins/generic/index_html.pt
@@ -0,0 +1,63 @@
+<html metal:use-macro="here/main_template/macros/master" >
+<head>
+  <meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
+</head>
+<body style="position: relative">
+
+<div metal:fill-slot="header"
+     tal:define="global has_local python: 'local_pt' in here.objectIds();
+                 global util_macros here/index_html_utils/macros;
+                " >
+
+  <div tal:condition="not: has_local">
+        <div metal:use-macro="util_macros/index_header">here title</div>
+      </div>
+
+  <div tal:condition="has_local">
+
+    <div metal:use-macro="here/local_pt/macros/header | default">
+      'local_pt' header goes here.
+    </div>
+
+  </div>
+
+</div><!-- header slot -->
+
+<div metal:fill-slot="main">
+
+  <div id="content_well"
+       >
+
+    <div tal:condition="not: has_local"><!-- style="float: left; top: 0; width: 80%;" -->
+
+      <br />
+
+      <div metal:use-macro="util_macros/index_content" />
+  
+      <div metal:use-macro="util_macros/index_links" />
+
+      <div metal:use-macro="util_macros/index_folders" />
+
+    </div>
+
+    <div tal:condition="has_local">
+
+      <div metal:use-macro="here/local_pt/macros/body | default">
+        'local_pt' body goes here.
+      </div>
+
+    </div>
+
+  </div>
+
+  <!-- <div id="right_sidebar"
+       style="width: 20%">
+
+    <div metal:use-macro="util_macros/news_box" />
+
+  </div> -->
+
+</div>
+
+</body>
+</html>
diff --git a/skins/generic/jumpToReply.dtml b/skins/generic/jumpToReply.dtml
new file mode 100644
index 0000000..38d7bc7
--- /dev/null
+++ b/skins/generic/jumpToReply.dtml
@@ -0,0 +1,7 @@
+<script type="text/javascript">
+//<!--
+function jumpToReply() {
+	window.location.href = window.location.href.split("#")[0] + "#&dtml-reply_id;"; }
+window.onload=jumpToReply;
+//-->
+</script>
\ No newline at end of file
diff --git a/skins/generic/jupload/wjhk.jupload.jar b/skins/generic/jupload/wjhk.jupload.jar
new file mode 100644
index 0000000..588ae1a
Binary files /dev/null and b/skins/generic/jupload/wjhk.jupload.jar differ
diff --git a/skins/generic/last_member_logs.pt b/skins/generic/last_member_logs.pt
new file mode 100644
index 0000000..457b026
--- /dev/null
+++ b/skins/generic/last_member_logs.pt
@@ -0,0 +1,37 @@
+<html metal:use-macro="here/main_template/macros/master"
+      xmlns="http://www.w3.org/1999/xhtml">
+  <head>
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8" />
+    <title>Last member logs</title>
+  </head>
+  <body metal:fill-slot="main_no_tabs" tal:omit-tag=""
+        i18n:domain="plinn"
+        tal:define="psf python:['getMemberSortableFormat', 'last_login_time'] ;
+                    rsorted_field request/form/sorted_field|nothing ;
+                    sorted_field python: here.getOrSetSessionVar('sorted_field', rsorted_field, 'last_login_time');
+                    sorted_field python: sorted_field in psf and sorted_field or here.getOrSetSessionVar('sorted_field', 'last_login_time');
+                    rsorted_dir request/form/sorted_dir|nothing;
+                    sorted_dir python: here.getOrSetSessionVar('sorted_dir', rsorted_dir, 'up');
+                    arrow python:sorted_dir=='up' and 'arrowUp.gif' or 'arrowDown.gif';
+                    alternateText python:sorted_dir == 'up' and 'ascending sort' or 'descending sort';
+                    members python:here.sort_folder_contents(mtool.listMembers(), sorted_field, sorted_dir);
+                    toggleDir python:lambda col, sorted_field, dir : (col == sorted_field) and (dir=='up' and 'down' or 'up') or dir">
+    <h1 i18n:translate="">Last member login times</h1>
+    <table cellspacing="0" class="listing">
+      <tr>
+        <th tal:define="col string:getMemberSortableFormat">
+          <a href="." tal:attributes="href python:'?sorted_field=%s&sorted_dir=%s' % (col, toggleDir(col, sorted_field, sorted_dir))" i18n:translate="">Name</a>
+            <img tal:condition="python:sorted_field == col" tal:attributes="src arrow ; alt alternateText" i18n:attributes="alt" />
+        </th>
+        <th tal:define="col string:last_login_time">
+          <a href="." tal:attributes="href python:'?sorted_field=%s&sorted_dir=%s' % (col, toggleDir(col, sorted_field, sorted_dir))" i18n:translate="">Last login time</a>
+          <img  tal:condition="python:sorted_field == col" tal:attributes="src arrow ; alt alternateText" i18n:attributes="alt" />
+        </th>
+      </tr>
+      <tr tal:repeat="m members" tal:attributes="class python:repeat['m'].odd() and 'odd' or 'even'">
+        <td><a tal:content="m/getMemberFullName" tal:attributes="href string:mailto:${m/email}>">user fullname</a></td>
+        <td tal:content="python:m.last_login_time.strftime(locale_date_fmt)" tal:on-error="string:—"></td>
+      </tr>
+    </table>
+  </body>
+</html>
\ No newline at end of file
diff --git a/skins/generic/load_revision.py b/skins/generic/load_revision.py
new file mode 100755
index 0000000..ea33c40
--- /dev/null
+++ b/skins/generic/load_revision.py
@@ -0,0 +1,47 @@
+##parameters=pos
+from Products.CMFCore.utils import getToolByName
+from Products.CMFCore.permissions import ModifyPortalContent
+from Products.Plinn.utils import getAdapterByInterface, translate
+def _(message) : return translate(message, context).encode('utf-8')
+mtool = getToolByName(context, 'portal_membership')
+
+req = context.REQUEST
+resp = req.RESPONSE
+form = req.form
+
+req.other['syncFragments'] = ['Breadcrumbs']
+options = {}
+ctxOptions = {}
+
+history = getAdapterByInterface(context, 'Products.Plinn.interfaces.IContentHistory', None)
+key = traverse_subpath[0]
+
+rev, revCtx = history.getHistoricalRevisionByKey(key, withContext=form['pos'])
+ctxOptions['rev'] = rev
+ctxOptions['currentOb'] = context
+ctxOptions['pos'] = pos
+ctxOptions['revCtx'] = revCtx
+userName = revCtx['current']['user_name']
+if userName :
+	userId = userName.split()[-1]
+	memberFullName = mtool.getMemberFullNameById(userId, nameBefore=False)
+else :
+	memberFullName = _('nobody')
+ctxOptions['ctUser'] = memberFullName
+ctxOptions['ctTime'] = revCtx['current']['time'].strftime(_('%Y/%m/%d at %I:%M:%S %p'))
+ctxOptions['restorationAllowed'] = mtool.checkPermission(ModifyPortalContent, context)
+options['specialCtxHeader'] = context.revision_context_header(**ctxOptions).encode('utf-8')
+
+breadcrumbs = context.breadcrumbs()
+breadcrumbs.append(
+	{'id' : key
+	,'title' : _('state of %s') % revCtx['current']['time'].strftime(_('%Y/%m/%d at %I:%M:%S %p'))
+	, 'url' : '%s?pos:int=%d' % (req.ACTUAL_URL, pos)}
+	)
+
+options['breadcrumbs'] = breadcrumbs
+
+ti = context.getTypeInfo()
+method_id = ti.queryMethodID('view', context=context)
+meth = getattr(rev, method_id)
+return meth(**options)
diff --git a/skins/generic/local_roles_actions.py b/skins/generic/local_roles_actions.py
new file mode 100755
index 0000000..fbe4f0f
--- /dev/null
+++ b/skins/generic/local_roles_actions.py
@@ -0,0 +1,13 @@
+##parameters=
+
+object_url = context.absolute_url()
+
+return [{'id' : 'view_locals_roles',
+         'name' : "View local roles",
+         'url' : object_url + '/folder_localrole_form'},
+        {'id' : 'ar_groups',
+         'name' : "Append or remove groups",
+         'url' : object_url + '/local_roles_ar_groups'},         
+        {'id' : 'group_data',
+         'name' : "Append or remove members",
+         'url' : object_url + '/local_roles_ar_members'},]
\ No newline at end of file
diff --git a/skins/generic/local_roles_ar_groups.pt b/skins/generic/local_roles_ar_groups.pt
new file mode 100755
index 0000000..81dc9e4
--- /dev/null
+++ b/skins/generic/local_roles_ar_groups.pt
@@ -0,0 +1,24 @@
+<html metal:use-macro="here/main_template/macros/master">
+
+  <head>
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8">
+    <title>Local roles form</title>
+  </head>
+
+  <body metal:fill-slot="main" i18n:domain="plinn">
+    <table metal:use-macro="here/local_roles_macros/macros/local_roles_settings">
+      <tr>
+        <td>Using gruf_settings macro</td>
+      </tr>
+      <tr>
+        <td>
+          <div metal:fill-slot="form" tal:omit-tag="">
+           <div metal:use-macro="here/local_roles_macros/macros/assign_groups">Using assign_groups macro</div>
+          </div>
+        </td>
+      </tr>
+    </table>
+    <p></p>
+  </body>
+
+</html>
\ No newline at end of file
diff --git a/skins/generic/local_roles_ar_members.pt b/skins/generic/local_roles_ar_members.pt
new file mode 100755
index 0000000..a809e6d
--- /dev/null
+++ b/skins/generic/local_roles_ar_members.pt
@@ -0,0 +1,23 @@
+<html metal:use-macro="here/main_template/macros/master">
+
+  <head>
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8">
+    <title>Local roles form</title>
+  </head>
+
+  <body metal:fill-slot="main" i18n:domain="plinn" tal:omit-tag="">
+    <table metal:use-macro="here/local_roles_macros/macros/local_roles_settings">
+      <tr>
+        <td>Using here/local_roles_macros/macros/local_roles_settings</td>
+      </tr>
+      <tr>
+        <td metal:fill-slot="form" tal:omit-tag="">
+          <div metal:use-macro="here/local_roles_macros/macros/assign_members">
+            Using here/local_roles_macros/macros/assign_members
+          </div>
+        </td>
+      </tr>
+    </table>
+  </body>
+
+</html>
\ No newline at end of file
diff --git a/skins/generic/local_roles_macros.pt b/skins/generic/local_roles_macros.pt
new file mode 100755
index 0000000..de1826a
--- /dev/null
+++ b/skins/generic/local_roles_macros.pt
@@ -0,0 +1,204 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+<html xmlns="http://www.w3.org/1999/xhtml">
+
+  <head>
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8" />
+    <title>Local roles macros</title>
+    <link href="../patch_skins/zpt_stylesheet.css" rel="stylesheet" media="screen" />
+    <link href="../content/plinn_style.css" rel="stylesheet" media="screen" />
+  </head>
+
+  <body i18n:domain="plinn">
+    <pre>local_roles_summary</pre>
+    <hr />
+    <div metal:define-macro="local_roles_summary" tal:omit-tag="">
+     <div tal:repeat="role here/valid_roles">
+        <div tal:define="allMembersInRole python:here.getAllMembersInRole(role)" tal:condition="allMembersInRole" tal:omit-tag="">
+          <div tal:content="role" i18n:translate="">Role</div>
+          <ul>
+            <li tal:repeat="member allMembersInRole" tal:content="member/getMemberFullName">member</li>
+          </ul>
+        </div>
+      </div>
+    </div>
+    <pre>assign_members</pre>
+    <hr />
+    <table metal:define-macro="assign_members"
+           tal:define="candidateRoles								python:mtool.getCandidateLocalRoles(here);
+		           				 rRole 												request/roleToManage | nothing ;
+		           				 currentManagedRole						python:here.getOrSetSessionVar('roleToManage', rRole, candidateRoles and candidateRoles[0] or '') ;
+		           				 currentManagedRole						python: (currentManagedRole in candidateRoles) and currentManagedRole or candidateRoles[0] ;
+		           			   usersAndGroupsWithLocalRole	python:here.users_with_local_role(currentManagedRole) ;
+		           			   prefix												here/acl_users/getGroupPrefix ;
+		           			   usersWithLocalRole						python:[ u for u in usersAndGroupsWithLocalRole if not u.startswith(prefix) ] ;
+		           			   insideList										python:mtool.getMembers(usersWithLocalRole) ;
+		           			   outsideList									python:mtool.getOtherMembers(usersWithLocalRole)">
+      <tr>
+        <th i18n:translate="">
+          Current Role: "<span i18n:name="current_role" tal:content="currentManagedRole" i18n:translate="">Manager</span>"
+        </th>
+        <th>
+          <form action="." method="get" tal:attributes="action python:'%s/%s' % (here.absolute_url(), template.id)">
+            <select name="roleToManage" size="1" id="roleSelector">
+              <option tal:repeat="role candidateRoles" value="role" tal:content="role" tal:attributes="value role ; selected python:role == currentManagedRole" i18n:translate="">Manager</option>
+            </select>&nbsp;<noscript><input type="submit" value="ok" i18n:attributes="value" /></noscript>
+          </form>
+          <script type="text/javascript">
+          // <!--
+            addListener(document.getElementById('roleSelector'), 'change', 
+              function(evt){
+                var selector = getTargetedObject(evt);
+                var fm = new FormManager(selector.form);
+                fm.submit();
+              }
+            );
+          // -->
+          </script>
+        </th>
+      </tr>
+      <tr>
+        <td colspan="2">
+          <form action="." method="post" tal:attributes="action here/absolute_url">
+            <input type="hidden" name="role" value="Manager" tal:attributes="value currentManagedRole" /><input type="hidden" name="redirect" value="." tal:attributes="value template/id" />
+            <table>
+              <tr>
+                <th i18n:translate="">
+                  Haven't role
+                </th>
+                <td>
+                  <br />
+                </td>
+                <th i18n:translate="">
+                  Have role
+                </th>
+              </tr>
+              <tr>
+                <td>
+                  <select name="append_members:list" size="20" multiple="multiple" tal:condition="outsideList">
+                    <option value="one" tal:repeat="member outsideList"
+                      tal:attributes="value member/getId"
+                      tal:content="member/getMemberFullName">NAME Surname or login</option>
+                  </select>
+                  <div class="info_message" tal:condition="not:outsideList" i18n:translate="">
+                    No more member available for the <span tal:content="currentManagedRole" i18n:name="role" i18n:translate="" tal:omit-tag="">Manager</span> role in this folder
+                  </div>
+                </td>
+                <td class="twins_list">
+                  <input tal:condition="outsideList" type="submit" name="append_users_in_local_role:method" value="&gt;&gt;&gt;" /><br />
+                  <br />
+                  <input tal:condition="insideList" type="submit" name="remove_users_in_local_role:method" value="&lt;&lt;&lt;" />
+                </td>
+                <td>
+                  <select name="remove_members:list" size="20" multiple="multiple" tal:condition="insideList">
+                    <option tal:repeat="member insideList" value="one"
+              		  tal:attributes="value member/getId"
+                      tal:content="member/getMemberFullName">NAME Surname or login</option>
+                  </select>
+                  <div class="info_message" tal:condition="not:insideList" i18n:translate="">
+                    Nobody have got the <span tal:content="currentManagedRole" i18n:name="role" i18n:translate="" tal:omit-tag="">Manager</span> role in this folder
+                  </div>
+                </td>
+              </tr>
+            </table>
+          </form>
+        </td>
+      </tr>
+    </table>
+    <pre>assign_groups</pre>
+    <hr />
+    <table metal:define-macro="assign_groups"
+           tal:define="candidateRoles			python:mtool.getCandidateLocalRoles(here);
+		           			   gtool							here/portal_groups ;
+		           			   group_prefix				here/acl_users/getGroupPrefix ;
+		           			   prefixLength				python:len(group_prefix) ;
+		           				 rRole 							request/roleToManage | nothing ;
+		           				 currentManagedRole python:here.getOrSetSessionVar('roleToManage', rRole, candidateRoles and candidateRoles[0] or '') ;
+		           				 currentManagedRole	python: (currentManagedRole in candidateRoles) and currentManagedRole or candidateRoles[0] ;
+		           				 groupNames					python:gtool.getGroupsWithLocalRole(here, currentManagedRole);
+		           			   insideList					python:gtool.getGroups(groupNames) ;
+		           			   outsideList				python:gtool.getOtherGroups(groupNames)">
+      <tr>
+        <th i18n:translate="">Current Role: "<span i18n:name="current_role" tal:content="currentManagedRole" i18n:translate="">Manager</span>"</th>
+        <th>
+          <form action="." method="get" tal:attributes="action python:'%s/%s' % (here.absolute_url(), template.id)" id="local_role_selector">
+            <select name="roleToManage" size="1" id="roleSelector">
+              <option tal:repeat="role candidateRoles" value="role" tal:content="role" tal:attributes="value role ; selected python:role == currentManagedRole" i18n:translate="">Manager</option>
+            </select>&nbsp;<noscript><input type="submit" value="ok" i18n:attributes="value" /></noscript>
+          </form>
+          <script type="text/javascript">
+          // <!--
+            addListener(document.getElementById('roleSelector'), 'change', 
+              function(evt){
+                var selector = getTargetedObject(evt);
+                var fm = new FormManager(selector.form);
+                fm.submit();
+              }
+            );
+          // -->
+          </script>
+        </th>
+      </tr>
+      <tr>
+        <td colspan="2">
+          <form action="." method="post" tal:attributes="action here/absolute_url">
+            <input type="hidden" name="role" value="Manager" tal:attributes="value currentManagedRole" /><input type="hidden" name="redirect" value="." tal:attributes="value template/id" />
+            <table>
+              <tr>
+                <th i18n:translate="">Haven't role</th>
+                <td><br /></td>
+                <th i18n:translate="">Have role</th>
+              </tr>
+              <tr>
+                <td>
+                  <select name="append_members:list" size="20" multiple="multiple" tal:condition="outsideList">
+                    <option value="one" tal:repeat="member outsideList"
+                      tal:attributes="value member/id"
+                      tal:content="python:member.title or member.id[prefixLength:]">NAME Surname or login</option>
+                  </select>
+                  <div class="info_message" tal:condition="not:outsideList" i18n:translate="">
+                    No more group available for the <span tal:content="currentManagedRole" i18n:name="role" i18n:translate="" tal:omit-tag="">Manager</span> role in this folder
+                  </div>
+                </td>
+                <td class="twins_list">
+                  <input tal:condition="outsideList" type="submit" name="append_users_in_local_role:method" value="&gt;&gt;&gt;" /><br /><br />
+                  <input tal:condition="insideList" type="submit" name="remove_users_in_local_role:method" value="&lt;&lt;&lt;" />
+                </td>
+                <td>
+                  <select name="remove_members:list" size="20" multiple="multiple" tal:condition="insideList">
+                    <option tal:repeat="member insideList" value="one"
+              		  tal:attributes="value member/id"
+                      tal:content="python:member.title or member.id[prefixLength:]">NAME Surname or login</option>
+                  </select>
+                  <div class="info_message" tal:condition="not:insideList" i18n:translate="">
+                    No group have got the <span tal:content="currentManagedRole" i18n:name="role" i18n:translate="" tal:omit-tag="">Manager</span> role in this folder
+                  </div>
+                </td>
+              </tr>
+            </table>
+          </form>
+        </td>
+      </tr>
+    </table>
+    <pre>local_roles_settings</pre>
+    <hr />
+    <table class="config" metal:define-macro="local_roles_settings">
+      <tr>
+        <td tal:define="ai_dicts here/local_roles_actions;
+                     useQueryString python:0">
+          <div metal:use-macro="here/widgets/macros/tabs">
+            GRUF tabs
+          </div>
+        </td>
+      </tr>
+      <tr>
+        <td>
+          <div tal:omit-tag="" metal:define-slot="form">
+            slot form here
+          </div>
+        </td>
+      </tr>
+    </table>
+  </body>
+
+</html>
\ No newline at end of file
diff --git a/skins/generic/locale_date_fmt.pt b/skins/generic/locale_date_fmt.pt
new file mode 100644
index 0000000..7fd02a5
--- /dev/null
+++ b/skins/generic/locale_date_fmt.pt
@@ -0,0 +1 @@
+<span i18n:domain="plinn" i18n:translate="locale_date_fmt" tal:omit-tag="">%m/%d/%Y %Hh%M</span>
\ No newline at end of file
diff --git a/skins/generic/main_template_ajax.pt b/skins/generic/main_template_ajax.pt
new file mode 100644
index 0000000..36945cd
--- /dev/null
+++ b/skins/generic/main_template_ajax.pt
@@ -0,0 +1,63 @@
+<fragments metal:define-macro="master">
+	<metal:block use-macro="here/main_template_macros/macros/global_defines"/>
+	<tal:block define="global dummy python:request.RESPONSE.setHeader('Content-Type', 'text/xml;;charset=utf-8')"/>
+
+<fragment id="mainCell"><span tal:replace="structure string:&lt;![CDATA[" />
+  <base tal:omit-tag="" metal:define-slot="base" />
+  <link metal:define-slot="css_slot" tal:replace="nothing" />
+
+	<div id="Object_URL" tal:content="here/absolute_url" style="display:none"></div>
+  <script type="text/javascript" metal:define-slot="javascript_head_slot" tal:replace="nothing"></script>
+  <div class="DesktopStatusBar" tal:condition="request/portal_status_message|nothing">
+    <img src="info.gif" alt="Information" tal:attributes="src here/info.gif/absolute_url" i18n:attributes="alt" />
+    <span tal:content="request/portal_status_message" i18n:translate="">Status message.</span>
+  </div>
+  <div metal:define-slot="main_no_tabs" tal:omit-tag="">
+    <div tal:condition="specialCtxHeader" tal:content="structure specialCtxHeader">special context header</div>
+		<div id="ContentTabs" tal:condition="not:specialCtxHeader">
+			<div class="tabs" metal:use-macro="here/tabs/macros/tabs">Content tabs</div>
+			<div metal:use-macro="here/tabs/macros/additional_tabs">Additional tabs</div>
+		</div>
+    <div id="ForematterCell">
+      <div class="header">
+        <div tal:omit-tag="" metal:define-slot="header">
+          <h1 id="DesktopTitle">
+            <span tal:replace="here/title_or_id">Page Title</span>
+          </h1>
+          <div id="DesktopDescription" tal:content="structure here/Description">
+            Description of the resource goes here, perhaps even wrapping lines; this is to make it long enough to test.
+          </div>
+        </div>
+      </div>
+
+      <div id="Desktop">
+        <div metal:define-slot="main">
+          <h2>Section Header</h2>
+          <p>The content of the object is <a href=".">rendered</a>
+          hre. Lorem ipsum dolorem. Nihil obstat imprimatur. Semper ubi sub ubi.
+          Non illegitimi carborundum. In vino veritas. E pluribus unam.
+          </p>
+        </div>
+      </div>
+      <div tal:condition="not:isAnon" tal:omit-tag="">
+        <div id="ContentByLine" metal:use-macro="here/content_byline/macros/byline">
+          Content by me
+        </div>
+      </div>
+      <div metal:define-slot="footer" tal:replace="nothing">footer slot</div>
+    </div>
+  </div>
+<span tal:replace="structure string:]]>" /></fragment>
+
+<tal:block define="browserObjectUrl python:request.get('_browserObjectUrl');
+									 fragments python:(browserObjectUrl and browserObjectUrl != here.absolute_url()) and ['Breadcrumbs', 'rightCell'] or request.get('syncFragments', []);"
+					 condition="fragments">
+	<tal:loop define="main_macros here/main_template_macros/macros"
+						repeat="macroName fragments">
+		<fragment tal:attributes="id macroName"><span tal:replace="structure string:&lt;![CDATA[" />
+			<metal:block metal:use-macro="python:main_macros[macroName]" />
+		<span tal:replace="structure string:]]>" /></fragment>
+	</tal:loop>
+</tal:block>
+
+</fragments>
\ No newline at end of file
diff --git a/skins/generic/main_template_macros.pt b/skins/generic/main_template_macros.pt
new file mode 100644
index 0000000..47bc193
--- /dev/null
+++ b/skins/generic/main_template_macros.pt
@@ -0,0 +1,126 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+<html xmlns="http://www.w3.org/1999/xhtml">
+
+  <head>
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8" />
+    <title></title>
+  </head>
+
+  <body>
+
+<div metal:define-macro="global_defines" tal:omit-tag=""
+tal:define="
+global utool nocall:here/portal_url;
+global mtool here/portal_membership;
+global atool here/portal_actions;
+global wtool here/portal_workflow;
+global portal_object utool/getPortalObject;
+global portal_title portal_object/Title;
+global object_title here/title_or_id;
+global portal_url utool;
+global member mtool/getAuthenticatedMember;
+global membersfolder mtool/getMembersFolder;
+global isAnon mtool/isAnonymousUser;
+global actions python: atool.listFilteredActionsFor( here );
+global user_actions actions/user;
+global object_actions actions/object;
+global workflow_actions actions/workflow;
+global folder_actions actions/folder;
+global global_actions actions/global;
+global wf_state python:wtool.getInfoFor(here,'review_state','');
+global locale_date_fmt here/locale_date_fmt;
+global dummy python:request.RESPONSE.setHeader('Content-Type', 'text/html;;charset=utf-8');
+Iterator python:modules['Products.Plinn'].IndexIterator;
+global tabindex python:Iterator();
+global specialCtxHeader options/specialCtxHeader|nothing"
+		/>
+
+
+<div metal:define-macro="top_bar">
+	<table id="Masthead" cellspacing="0" border="0">
+		<tr>
+			<td id="PortalLogo"><a href="#" tal:attributes="href string:${portal_url}?noajax=1; title portal_object/title_or_id"><img src="logo.gif" tal:define="logo here/logo.gif" tal:attributes="src logo/absolute_url; alt portal_object/title_or_id; height logo/height; width logo/width" /></a></td>
+			<!-- nav_bar / search_form -->
+			<td id="NavBar" align="right" i18n:domain="cmf_default">
+				<form action="search" method="get" tal:attributes="action string:${portal_url}/search">
+					<table>
+						<tr><td><input name="SearchableText" size="16" /><input type="submit" value="Search" i18n:attributes="value" /></td></tr>
+						<tr><td><a href="search_form" tal:attributes="href string:${portal_url}/search_form" i18n:translate="">Advanced search</a></td></tr>
+					</table>
+				</form>
+			</td>
+		<!-- end nav_bar / search_form -->
+		</tr>
+	</table>
+</div>
+
+  
+<div tal:define="uname python: (isAnon and [''] or [member.getMemberFullName(nameBefore=0)])[0]" metal:define-macro="user_menu_bar">
+	<table id="MemberActionsBox" border="0" cellspacing="0" i18n:domain="cmf_default">
+		<tr>
+			<td class="ActionTitle" tal:content="uname">Guest</td>
+			<td><img tal:attributes="src here/loading_progress.gif/absolute_url" width="82" height="7" id="loading_progress" alt="Loading progress..." i18n:attributes="alt" style="display:none" /></td>
+			<td class="ActionLink" align="right">
+				<span tal:repeat="action user_actions">
+					<a href="#" tal:attributes="href action/url" tal:content="action/title">Login</a>
+					<span tal:condition="not: repeat/action/end"> | </span> 
+				</span>
+				<span tal:condition="nothing"><a href="join_form" i18n:translate="">Join</a></span>
+			</td>
+		</tr>
+	</table>
+</div>
+
+
+<div metal:define-macro="Breadcrumbs" tal:omit-tag="">
+	<span tal:content="here/absolute_url" id="BC_Object_URL" style="display:none"></span>
+  <span i18n:translate="">You are here:</span> <span tal:omit-tag="" tal:repeat="bc options/breadcrumbs|here/breadcrumbs"><a href="." tal:attributes="href bc/url" tal:content="python:bc['title'] or bc['id']">ID</a><span tal:condition="not: repeat/bc/end" tal:omit-tag=""> <img src="fleche_bc.gif" alt="/" height="14" width="11" tal:attributes="src string:${portal_url}/fleche_bc.gif" border="0" /> </span> </span>
+</div>
+
+
+<div id="leftCell" class="boxes_container" width="15%" metal:define-macro="leftCell"
+     tal:define="global_settings python:getattr(here, 'global_settings', None)"
+     tal:condition="python:global_settings is not None"
+     tal:omit-tag="">
+     <div tal:define="block python:getattr(here.global_settings, 'left_boxes', None)"
+          tal:condition="python:block is not None"
+          tal:omit-tag="">
+  		<div tal:define="displayAction python:request.SESSION.get('editBoxes') and 'edit' or 'view'">
+
+  			<a title="Paste" href="#" tal:attributes="href string:${block/absolute_url}/pasteBlocks"
+  			   tal:condition="python:displayAction == 'edit' and here.cb_dataValid() and block.haveRules()"
+  			   i18n:attributes="title"
+  			   ><img src="paste.png" alt="Paste" height="14" width="16" tal:attributes="src string:paste.png" border="0" i18n:attributes="alt" /></a>
+  		  <div metal:use-macro="here/block_canvas/macros/canvas">left boxes</div>
+  		</div>
+  	</div>
+</div>
+
+<div metal:define-macro="rightCell"
+     tal:define="global_settings python:getattr(here, 'global_settings', None)"
+     tal:omit-tag="">
+  <div tal:condition="python:global_settings is not None" tal:omit-tag="">
+    <div tal:define="block python:getattr(here.global_settings, 'right_boxes', None)"
+         tal:condition="python:block is not None" tal:omit-tag="">
+      <div tal:define="displayAction python:request.SESSION.get('editBoxes') and 'edit' or 'view'" tal:omit-tag="">
+      	<div tal:condition="python:displayAction=='edit'" tal:omit-tag="">
+      	  <div style="text-align:right">
+      		  <a tal:attributes="href string:$portal_url/manage_boxes?exitMode:boolean=True" i18n:domain="plinn" i18n:translate="">Exit boxes editing</a>
+      		</div>
+        	<div tal:condition="python:here.cb_dataValid() and block.haveRules()">
+        		<a title="Paste" href="#" tal:attributes="href string:${block/absolute_url}/pasteBlocks" i18n:attributes="title"
+        		  ><img src="paste.png" alt="Paste" height="14" width="16" tal:attributes="src string:paste.png" border="0" i18n:attributes="alt" /></a>
+        	</div>
+      	</div>
+        <div metal:use-macro="here/block_canvas/macros/canvas">right boxes</div>
+      </div>
+    </div>
+  </div>
+	<div metal:use-macro="here/widgets/macros/clipboard">Clipboard</div>
+	<div metal:use-macro="here/widgets/macros/news_box">5 last news</div>
+</div>
+
+  </body>
+
+</html>
\ No newline at end of file
diff --git a/skins/generic/main_template_view.pt b/skins/generic/main_template_view.pt
new file mode 100644
index 0000000..9e22abc
--- /dev/null
+++ b/skins/generic/main_template_view.pt
@@ -0,0 +1,33 @@
+<metal:block metal:define-macro="master">
+<html metal:use-macro="here/main_template/macros/master">
+
+  <head>
+  
+    <tal:block metal:fill-slot="base">
+      <base metal:define-slot="base" tal:omit-tag="" />
+    </tal:block>
+    <tal:block metal:fill-slot="css_slot">
+      <link metal:define-slot="css_slot" tal:replace="nothing" />
+    </tal:block>
+    <tal:block metal:fill-slot="javascript_head_slot">
+      <script type="text/javascript" metal:define-slot="javascript_head_slot" tal:replace="nothing"></script>
+    </tal:block>
+
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8" />
+    <title>main_template with comments at bottom</title>
+  </head>
+
+  <body>
+    <tal:block metal:fill-slot="header">
+      <div metal:define-slot="header"></div>
+    </tal:block>
+    <tal:block metal:fill-slot="main">
+      <div metal:define-slot="main"></div>
+    </tal:block>
+    <tal:block metal:fill-slot="footer">
+    	<div metal:use-macro="here/viewThreadsAtBottom/macros/threadsDisplay" />
+    </tal:block>
+  </body>
+
+</html>
+</metal:block>
\ No newline at end of file
diff --git a/skins/generic/makeGrufTree.py b/skins/generic/makeGrufTree.py
new file mode 100755
index 0000000..c665ce0
--- /dev/null
+++ b/skins/generic/makeGrufTree.py
@@ -0,0 +1,19 @@
+##parameters=
+aclu = context.acl_users
+groupPrefix = aclu.getGroupPrefix()
+gtool = context.portal_groups
+from ZTUtils import SimpleTreeMaker
+
+def getGroups(object) :
+	""" return children groups """
+	if object is aclu :
+		return gtool.getGroups(gtool.getRootGroups())
+	else :
+		return gtool.getGroups(gtool.getGroupsOfGroup(object.id))
+	
+stm = SimpleTreeMaker("group_tree")
+stm.setChildAccess(function = getGroups)
+stm.setIdAttr('id')
+
+tree, rows = stm.cookieTree(aclu)
+return {'tree' : tree, 'rows' : rows}
\ No newline at end of file
diff --git a/skins/generic/manage_boxes.py b/skins/generic/manage_boxes.py
new file mode 100755
index 0000000..bab97eb
--- /dev/null
+++ b/skins/generic/manage_boxes.py
@@ -0,0 +1,9 @@
+##parameters=exitMode=False
+sd = context.session_data_manager.getSessionData(create=1)
+if exitMode :
+	if sd.has_key('editBoxes') : del sd['editBoxes']
+	if sd.has_key('ajaxConfig') : del sd['ajaxConfig']
+else :
+	sd['editBoxes'] = 1
+	sd['ajaxConfig'] = 0
+return context.portal_url.getPortalObject().index_html()
\ No newline at end of file
diff --git a/skins/generic/massupload.pt b/skins/generic/massupload.pt
new file mode 100644
index 0000000..6c476b5
--- /dev/null
+++ b/skins/generic/massupload.pt
@@ -0,0 +1,37 @@
+<html metal:use-macro="here/main_template/macros/master"
+      xmlns:tal="http://xml.zope.org/namespaces/tal" xmlns:metal="http://xml.zope.org/namespaces/metal">
+  <head>
+    <title>Jupload</title>
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
+  </head>
+  <body>
+    <div metal:fill-slot="main" tal:omit-tag="">
+      <applet code="wjhk.jupload2.JUploadApplet"
+          archive="wjhk.jupload.jar" width="640" height="450" alt=""
+          mayscript="true"
+          tal:attributes="archive string:${portal_url}/jupload/wjhk.jupload.jar">
+        <param name="postURL"
+            tal:attributes="value string:${here/absolute_url}/add_uploaded_content">
+        <param name="lookAndFeel" value="system"/>
+        <param name="serverProtocol" value="HTTP/1.1"/>
+        <param name="uploadPolicy" value="DefaultUploadPolicy" />
+        <param name="nbFilesPerRequest" value="1" />
+        <param name="formdata" value="authform"/>
+        <param name="showLogWindow" value="false"/>
+        <param name="debugLevel" value="0" />
+        <param name="filenameEncoding" value="utf-8"/>
+        plugin required.
+      </applet>
+      <br />
+      <form name="authform">
+        <input type="hidden" name="__ac" value=""/>
+      </form>
+      <script type="text/javascript">
+      // <!--
+        var auth = document.authform.elements.namedItem('__ac');
+        auth.setAttribute('value', unescape(document.cookie.match(/__ac="([^"]*)"/)[1]));
+      // -->
+      </script>
+    </div>
+  </body>
+</html>
diff --git a/skins/generic/member_properties_form.py b/skins/generic/member_properties_form.py
new file mode 100644
index 0000000..56cd7ff
--- /dev/null
+++ b/skins/generic/member_properties_form.py
@@ -0,0 +1,19 @@
+##parameters=memberIds=[], ajax=''
+
+resp = context.REQUEST.RESPONSE
+portal_url = context.portal_url()
+from ZTUtils import make_query as mq
+msg=''
+
+if not memberIds :
+	msg = 'Please select a member first.'
+	resp.redirect(portal_url + '/portal_members?%s' % mq(portal_status_message=msg, ajax=ajax))
+	return
+
+elif len(memberIds) > 1 :
+	msg = 'Warning: you should have selected only one member.'
+
+return resp.redirect(portal_url + '/portal_members?%s' % mq(member_id=memberIds[0],
+													 portal_status_message=msg,
+													 macroName='member_properties_form',
+													 ajax=ajax))
diff --git a/skins/generic/pending_members.pt b/skins/generic/pending_members.pt
new file mode 100644
index 0000000..cf1a7fa
--- /dev/null
+++ b/skins/generic/pending_members.pt
@@ -0,0 +1,39 @@
+<html xmlns="http://www.w3.org/1999/xhtml" metal:use-macro="here/main_template/macros/master">
+
+  <head>
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8" />
+    <title>Pending Members</title>
+  </head>
+
+  <body tal:omit-tag="" metal:fill-slot="main_no_tabs" i18n:domain="plinn">
+    <h2 i18n:translate="">Review members registration</h2>
+    <form action="." method="post" tal:attributes="action string:${portal_url}/member_registration_modify">
+      <table class="listing" cellspacing="0">
+        <tr>
+          <th i18n:translate="">Name</th>
+          <th i18n:translate="">Email</th>
+          <th><br /></th>
+        </tr>
+        <tbody tal:repeat="m python:mtool.getMembers([ b.getId for b in here.portal_catalog(review_state='m_pending') ])" tal:omit-tag="">
+          <tr tal:attributes="class python:repeat['m'].odd() and 'odd' or 'even'">
+            <td>
+              <input type="hidden" name="members.id:records" tal:attributes="value m/id" />
+              <label>
+              	<input type="checkbox" name="members.checked:records" checked="checked" tal:attributes="value m/id" />
+              	<span tal:replace="python:m.getMemberFullName(nameBefore=0)">Benoît PIN</span>
+              </label>
+            </td>
+            <td>
+              <a href="." tal:attributes="href string:mailto:${m/email}" tal:content="m/email">email</a>
+            </td>
+            <td>
+              <input type="submit" name="members.reject:records" value="Reject" i18n:attributes="value" />
+            </td>
+          </tr>
+        </tbody> 
+      </table>
+      <p><input type="submit" name="register" value="Register" i18n:attributes="value" /></p>
+    </form>
+  </body>
+
+</html>
\ No newline at end of file
diff --git a/skins/generic/plinn_style.css.dtml b/skins/generic/plinn_style.css.dtml
new file mode 100644
index 0000000..91ffb14
--- /dev/null
+++ b/skins/generic/plinn_style.css.dtml
@@ -0,0 +1,610 @@
+/* <dtml-with base_properties> */
+
+img {
+  border:none;
+}
+
+input, textarea, select {
+  color: &dtml-inputFontColor;;
+}
+
+table.TwoColumnForm {
+	color: &dtml-twoColumnFormFontColor;;
+  background-color: &dtml-twoColumnFormBackground;;
+  padding : 4px ;
+}
+  
+table.TwoColumnForm td.ListDefinition {
+  font-style: italic }
+  
+table.TwoColumnForm td.ListName {
+  color: #fff;
+  font-weight: bold;
+  background-color: #369;
+  vertical-align: middle }
+  
+table.TwoColumnForm th {
+  font-weight: bold;
+  text-align: right;
+  padding-right: 5px }
+  
+table.TwoColumnForm tr {
+/*  background-color: #ddd;*/
+  vertical-align: top }
+  
+table.TwoColumnForm tr td.TextField {
+  vertical-align: top;
+  padding-right: 10px;
+  padding-left: 10px }
+
+dl.FieldHelp {
+  margin: 3px }
+  
+dl.FieldHelp dd {
+  font-size : 90% ;
+  font-style : italic }  
+
+table.TwoColumnForm tr th.TextField {
+  vertical-align: top }
+  
+table.FolderFactories th {
+  text-align : center ;
+}
+
+table.FolderFactories td.ListName {
+  color: &dtml-fontColor;;
+  font-weight: bold;
+  vertical-align: middle;
+  padding : 2px;
+}
+
+table.FolderFactories td.spacing {
+  height : 8px ;
+}
+
+table.assign_global_roles {
+  margin-top : 0.5em;
+  background-color: &dtml-twoColumnFormBackground;;
+  padding: 4px;
+}
+
+.assign_global_roles th {
+  padding-right: 5px;
+  vertical-align:top;
+}
+  
+.assign_global_roles td ul {
+  margin: 0px;
+  padding-left: 15px
+}
+  
+.config {
+  color: &dtml-configFontColor;;
+  background-color: &dtml-configBackgroundColor;;
+  padding: 5px }
+  
+.config .info_message {
+  color: &dtml-messageFontColor;;
+  font-weight: 800 }
+  
+.config .tabs {
+  margin: 0px;
+  padding: 0px;
+  border-bottom: 1pt solid #669 }
+
+.config a
+.config a:link,
+.config a:visited,
+.config a:active {
+	color : &dtml-specialLinkColor;;
+}
+
+.config a:hover {
+	color : &dtml-specialLinkHoverColor;;
+}
+
+.config .tabs a {
+	color : &dtml-tabsFontColor;;
+  text-decoration: none }
+  
+.config .tabs a:active {
+  color: &dtml-tabsFontColor;; }
+
+.config .tabs a:hover {
+  color: #59c }
+  
+.config .tabs a:link {
+  color: &dtml-tabsFontColor;; }
+  
+.config .tabs a:visited {
+  color: &dtml-tabsFontColor;; }
+  
+.config .tabs td {
+  padding-right: 5px;
+  padding-left: 5px;
+  border-style: solid;
+  border-width: 1px 2px 2px 1px;
+  border-color: #ccc;
+  text-align: center;
+}
+  
+.config .tabs td.selected {
+  vertical-align: bottom;
+  margin: 0px;
+  padding: 0px 5px;
+  background: #eee;
+  border: solid 1px #669;
+}
+  
+.config .tabs td.selected a  {
+  color: #000;
+  font-weight: bold }
+
+.twins_list {
+  vertical-align: middle }
+  
+.send_email_form label {
+  margin-right : 1em ;
+}
+
+
+/* Boxes styles */
+
+.boxes_container {
+  padding-top:1em;
+}
+
+.boxes_container table {
+  width : 100%;
+  font-size : 9pt ;
+  margin-bottom : 5px;
+}
+  
+.boxes_container img {
+	vertical-align:middle
+}
+  
+.boxes_container a:link,
+.boxes_container a:visited,
+.boxes_container a:active {
+  color : &dtml-linkColor;;
+}
+
+.boxes_container a:hover {
+  color : &dtml-linkHoverColor;;
+}
+
+.boxes_container th  {
+  background-color: &dtml-boxeHeaderBackgroundColor;;
+  color: &dtml-fontColor;;
+  border-bottom: &dtml-tabsBorderWidth; solid &dtml-boxesBorderColor;;
+}
+
+.boxes_container ul {
+  margin : 0 ;
+  padding : 2px }
+  
+.boxes_container li  {
+  margin-left : 0 ;
+  color: &dtml-bulletColor;;
+  list-style-position : inside ;
+  list-style-image : url(list_bullet.gif);
+}
+
+.tree_box table {
+  margin:0;
+}
+
+.folder_object,
+.global,
+.workflow,
+.tree_box,
+.supervision,
+.clipboard,
+.news_box { 
+  border: &dtml-tabsBorderWidth; solid &dtml-tabsBorderColor;;
+}
+
+.news_box td.even {  background-color: &dtml-evenRowBackgroundColor;; }
+
+.news_box td.odd {  background-color: &dtml-oddRowBackgroundColor;; }
+
+
+/* Calendar */
+
+.remove .calendar_table a, .remove .week_table a {
+  color : red ;
+  cursor : crosshair ;
+}
+
+/* month view*/
+.calendar_table {
+  border-collapse : collapse ;
+  text-align : left ;
+}
+
+.calendar_table ul {
+  margin : 0 ;
+  padding : 2px }
+  
+.calendar_table li {
+  margin-left : 0 ;
+  color: &dtml-bulletColor;;
+  list-style-position : inside ;
+  font-size : 9pt ;
+}
+
+
+.calendar_table div {
+   text-align : right ;
+ }
+
+.calendar_table th {
+  text-align : center ;
+  width : 14% ;
+}
+ 
+.calendar_table td {
+  border : 1px solid &dtml-calGridBorderColor;
+}
+
+.calendar_table td.disabled {
+  border : none ;
+}
+
+.calendar_table td.today {
+  background-color : &dtml-todayBackgroundColor;;
+}
+
+.cal_navigation td {
+  vertical-align : middle ;
+}
+
+.cal_navigation a, .cal_navigation a:visited {
+  font-size: &dtml-fontSmallSize;;
+  background-color: &dtml-tabsBackgroundColor;;
+  color: &dtml-fontColor;;
+}
+
+.cal_navigation a.selected, .cal_navigation a.selected:visited {
+  background-color: &dtml-tabsBorderColor;;
+  color: &dtml-tabsFontColor;;
+
+}
+
+.cal_navigation a:hover {
+  background-color: &dtml-tabsBorderColor;;
+  color: &dtml-tabsFontColor;;
+}
+
+/* week view */
+.week_table {
+  width : 100% ;
+  border-collapse : collapse ;
+  font-size : 9pt ;
+}
+
+.week_table th {
+  font-weight : normal ;
+  text-align : center ;
+  border-bottom : 1px solid &dtml-calGridBorderColor; ;
+}
+
+.week_table td {
+  border-left : 1px solid &dtml-calGridBorderColor; ;
+  border-right : 1px solid &dtml-calGridBorderColor; ;
+  padding : 0 ;
+}
+
+.week_table td.hourLabel {
+  border-left : 1px solid &dtml-contentBackgroundColor; ;
+/*  width : 5ex ;*/
+}
+
+.week_table div {
+  margin-top : -1px ;
+  padding : 0 ;
+  height : 15px ;
+  border-bottom : 1px solid &dtml-contentBackgroundColor; ;
+}
+
+.week_table ul {
+  height : 15px ;
+  overflow : hidden ;
+  margin : 0 ;
+  padding : 0 ;
+  position : absolute ;
+}
+
+.week_table ul:hover {
+  height : auto ;
+  overflow : visible ;
+  background-color : #f0f0f0 ;
+  border-top : 1px solid &dtml-bulletColor; ;
+  border-left : 1px solid &dtml-contentBackgroundColor; ;
+  border-right : 1px solid &dtml-contentBackgroundColor; ;
+  border-bottom : 1px solid &dtml-contentBackgroundColor; ;
+  z-index : 1 ;
+}
+
+.week_table li  {
+  margin-left : 0 ;
+  color: &dtml-bulletColor;;
+  list-style-position : inside ;
+}
+
+.week_table .hour_row {
+  border-bottom : 1px solid &dtml-calGridBorderColor; ;
+}
+.week_table .half_hour_row {
+  border-bottom : 1px solid &dtml-calHalfGridBorderColor; ;
+}
+
+.week_table .today {
+  background-color : &dtml-todayBackgroundColor;;
+}
+
+.week_table div.event {
+  position : absolute ;
+  border : 1px solid #ccc ;
+  background-color : white ;
+}
+
+.week_table div.event:hover {
+  border : 1px solid &dtml-bulletColor; ;
+  z-index : 1 ;
+}
+
+/* Photo / Portfolio */
+
+/* Deprecated. TODO :remove */
+.photo_slide {
+  height : &dtml-slide_size;px ;
+  width : &dtml-slide_size;px ;
+  float : left ;
+  border : 1px solid black ;
+  margin-top : -1px;
+  margin-left : -1px;
+  text-align : center ;
+  overflow : hidden ;
+}
+
+.portfolio_slide {
+  height : &dtml-slide_size;px ;
+  width : &dtml-slide_size;px ;
+  float : left ;
+  border : 1px solid black ;
+  margin-top : -1px;
+  margin-left : -1px;
+  text-align : center ;
+  overflow : hidden ;
+  background-image: url(portfolio_icon.gif);
+  background-repeat: no-repeat;
+  background-position: 2px 2px;
+  background-color: &dtml-portfolioSlideBackgroundColor;;
+}
+
+.photo_slide a, .portfolio_slide a {
+  padding : 2px;
+}
+
+.exif_table th {
+  font-weight : bold ;
+  text-align : right ;
+}
+
+/* Plinn document */
+.plinn_document {
+  font-size : 14px;
+  background-color : transparent;
+}
+
+.plinn_document div {
+  overflow : visible;
+}
+
+.active_epoz {
+  border : 1px solid &dtml-linkColor;;
+  width : 99%;
+}
+
+.inactive_epoz {
+  border : 1px dashed &dtml-linkColor;;
+  width : 99%;
+}
+
+.hidden, .hidden_value {
+  visibility : hidden;
+  display : none;
+}
+
+.resize_handle {
+	position : absolute;
+	display : block;
+	right : 0;
+	bottom : 0;
+	visibility:hidden;
+	filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale src='&dtml-portal_url;/resize_handle.png');
+	line-height : 0; /* IE hack */
+	background-repeat : no-repeat;
+	width : 12px;
+	height : 12px;
+/*	cursor : se-resize;*/
+}
+
+.resize_handle[class] {
+	background-image : url(&dtml-portal_url;/resize_handle.png);
+}
+
+.rectangle_header {
+	position : absolute;
+	background : url(&dtml-portal_url;/degrad_rectangle_header.gif);
+	height : 11px;
+	width : 100%;
+	border: 1px solid #cbcbcb;
+	border-bottom : 1px solid #9f9f9f;
+	top : -13px;
+	left : -1px;
+	visibility:hidden;
+/*	cursor : move;*/
+}
+
+.rectangle_delimg {
+	margin-left:5px;
+}
+
+
+#ImageUploadForm, #FileUploadForm {
+  border : 1px solid #aaa;
+  position : absolute;
+	padding : 2px;
+	top : 29px;
+	left : -317px;
+  height : 130px;
+  width : 310px;
+  background : #ccc;
+  visibility : hidden;
+}
+
+/* Discussion */
+
+.reply_title {
+  font-weight : bold;
+}
+
+.reply_body {
+  padding : 5px 0 15px 20px;
+}
+.reply_body p {
+  margin:0;
+}
+
+
+.outline_in_reply_to {
+  border-left : 1em solid &dtml-outlineColor;;
+  border-bottom : 1px solid &dtml-outlineColor;;
+}
+
+.outline_new_reply {
+  border-left : 2px solid &dtml-outlineColor;;
+}
+
+/* batch drop */
+.dropPageTarget {
+  background : &dtml-highLightColor;;
+  padding : 0 0.5em;
+}
+
+/* clipboard */
+.clipboard td, .clipboard ul {
+	padding : 0;
+}
+
+
+.clipboard li {
+	padding-left : 5px;
+	list-style : none outside none;
+}
+
+.clipboard li.odd {
+	background-color : &dtml-oddRowBackgroundColor;;
+}
+
+.clipboard li.even {
+	background-color : &dtml-evenRowBackgroundColor;;
+}
+
+.clipboard input {
+	font-size : &dtml-fontSmallSize;;
+}
+
+.live_field {
+	border : 1px solid black;
+}
+
+.editable:hover {
+	background: #fff8aa;
+	cursor:text;
+	border-color: #666666 rgb(221, 221, 221) rgb(221, 221, 221) rgb(102, 102, 102);
+	border-style:solid;
+	border-width:2px;
+}
+
+/* Epoz */
+
+.EpozToolbar img, #EpozToolbar img {
+	border: 1px solid rgb(170, 170, 170);
+	background-color: rgb(204, 204, 204);
+	cursor: pointer;
+	margin-right: 1px;
+	margin-bottom: 1px;
+}
+
+#HeaderArea a
+#HeaderArea a:link,
+#HeaderArea a:visited,
+#HeaderArea a:active {
+	color : &dtml-specialLinkColor;;
+}
+
+#HeaderArea a:hover {
+	color : &dtml-specialLinkHoverColor;;
+}
+
+/* Mosaic document */
+table.input_form { border: none; border-spacing: 4px }
+table.input_form tr td { border: none }
+table.input_form tr th  { color: white; font-weight: 800; font-size: 13px; font-family: Arial, sans-serif; background-color: #69c; text-align: right; vertical-align: top; padding: 1px 10px 5px 5px }
+div.container_block_form { background-color: #f0f0f0; padding: 10px 5px; border: dotted 2px }
+div.slot_text { text-align: justify }
+form.block_form { border : 2px solid #d7d7d7; background-color : #fff }
+.mosaic_input { background-color: white }
+.move_table {background-color: #d7d7d7; text-align:right }
+
+/* completions */
+
+ul.completions {
+	border:1px solid black;
+	margin:0;
+	padding:0;
+	position:absolute;
+	background:#fff;
+	list-style:none;
+	cursor : pointer;
+}
+ul.completions li.selected {
+	background:&dtml-linkHoverColor;;
+}
+
+ul.completions li:hover {
+  background:&dtml-linkHoverColor;;
+}
+
+.comparison th {
+  background:#ddd;
+}
+.comparison .mid {
+  background:#f0f0f0;
+}
+.comparison .insert .left,
+.comparison .insert .right {
+  background:#dfd;
+}
+
+.comparison .replace .left,
+.comparison .replace .right {
+  background:#fe9;
+}
+
+.comparison .delete .left,
+.comparison .delete .right {
+  background:#fdd;
+}
+
+.revision_context {
+  border:1px solid &dtml-outlineColor;;
+  background: &dtml-configBackgroundColor;;
+  padding:0 0.5em;
+}
+
+/* </dtml-with> */
diff --git a/skins/generic/plinn_style.css.dtml.metadata b/skins/generic/plinn_style.css.dtml.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/generic/plinn_style.css.dtml.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/generic/plinn_style_print.css.dtml b/skins/generic/plinn_style_print.css.dtml
new file mode 100644
index 0000000..6316436
--- /dev/null
+++ b/skins/generic/plinn_style_print.css.dtml
@@ -0,0 +1,376 @@
+/* 
+
+Date de creation : 2 juin 2004         
+ 
+E.N.S.M.P. - C.R.I. - Gilles Rosenbaum
+
+****************************************
+Version pour impression de gev_style.css
+****************************************
+
+*/
+
+/* <dtml-with base_properties> */
+
+table.TwoColumnForm {
+  border: solid 1pt black;
+  width: 80% }
+
+table.TwoColumnForm dl.FieldHelp {
+  margin: 0px }
+  
+table.TwoColumnForm dl.FieldHelp dd {
+  font-size : 90% ;
+  font-style : italic }
+  
+table.TwoColumnForm td.ListDefinition {
+  font-style: italic }
+  
+table.TwoColumnForm td.ListName {
+  color: #fff;
+  font-weight: bold;
+  background-color: #369;
+  vertical-align: middle }
+  
+table.TwoColumnForm th {
+  font-weight: bold;
+  text-align: right;
+  padding-right: 5px }
+  
+table.TwoColumnForm tr {
+  background-color: #ddd;
+  vertical-align: top }
+  
+table.TwoColumnForm tr td.TextField {
+  vertical-align: top;
+  padding-right: 10px;
+  padding-left: 10px }
+  
+table.TwoColumnForm tr th.TextField {
+  vertical-align: top }
+  
+.assign_global_roles {
+  border: solid 1px black }
+  
+.assign_global_roles td {
+  vertical-align: top;
+  padding-left: 10px }
+  
+.assign_global_roles td ul {
+  margin: 0px;
+  padding-left: 15px }
+  
+.assign_global_roles tr {
+  background-color: #ddd;
+  vertical-align: top }
+  
+.config {
+  background-color: #f0f0f0;
+  margin: 5px;
+  border: solid 1pt #ddd }
+  
+.config .info_message {
+  color: #369;
+  font-weight: 800 }
+  
+.config .tabs {
+  margin: 0px;
+  padding: 0px;
+  border-bottom: 1pt solid #669 }
+  
+.config .tabs a {
+  text-decoration: none }
+  
+.config .tabs a:active {
+  color: #369 }
+
+.config .tabs a:hover {
+  color: #59c }
+  
+.config .tabs a:link {
+  color: #369 }
+  
+.config .tabs a:visited {
+  color: #369 }
+  
+.config .tabs td {
+  padding-right: 5px;
+  padding-left: 5px;
+  border-style: solid;
+  border-width: 1px 2px 2px 1px;
+  border-color: #666 }
+  
+.config .tabs td.selected {
+  vertical-align: bottom;
+  margin: 0px;
+  padding: 0px 5px;
+  border: solid 0px #669 }
+  
+.config .tabs td.selected a  {
+  color: #59c;
+  font-weight: bold }
+
+.twins_list {
+  vertical-align: middle }
+  
+
+/* Boxes styles */
+
+.boxes_container {
+  padding-top:1em;
+}
+
+.boxes_container table {
+  width : 100%;
+  font-size : 9pt ;
+/*
+  font-size: &dtml-fontBaseSize;;
+*/
+}
+  
+.boxes_container a {  }
+  
+.boxes_container a:link,
+.boxes_container a:visited {
+  color : &dtml-linkColor;;
+}
+
+.boxes_container a:active {
+  color : #039 ;
+  border : thin solid #039 }
+
+.boxes_container a:hover {
+  color : #039 }
+
+.boxes_container th  {
+  background-color: &dtml-tabsBackgroundColor;;
+  color: &dtml-globalFontColor;;
+  border-bottom: &dtml-tabsBorderWidth; solid &dtml-tabsBorderColor;;
+}
+
+.boxes_container ul {
+  margin : 0 ;
+  padding : 2px }
+  
+.boxes_container li  {
+  margin-left : 0 ;
+  color: &dtml-tabsFontColor;;
+  list-style-position : inside ;
+}
+
+.folder_object td,
+.global td,
+.workflow td,
+.tree_box td {
+  background-color: &dtml-contentBackgroundColor;;
+}
+
+.folder_object,
+.global,
+.workflow,
+.tree_box { 
+  border: &dtml-tabsBorderWidth; solid &dtml-tabsBorderColor;;
+ }
+
+/* Calendar */
+
+/* month view*/
+.calendar_table {
+  border-collapse : collapse ;
+  text-align : left ;
+}
+
+.calendar_table ul {
+  margin : 0 ;
+  padding : 2px }
+  
+.calendar_table li {
+  margin-left : 0 ;
+  color: &dtml-tabsFontColor;;
+  list-style-position : inside ;
+  font-size : 9pt ;
+}
+
+
+.calendar_table div {
+   text-align : right ;
+ }
+
+.calendar_table th {
+  text-align : center ;
+  width : 14% ;
+}
+ 
+.calendar_table td {
+  border : 1px solid #000 ;
+}
+
+.calendar_table td.disabled {
+  border : none ;
+}
+
+.calendar_table td.today {
+  background-color : &dtml-topbarBackgroundColor;;
+}
+
+
+/*
+.cal_navigation {
+  margin-top : 1em ;
+}
+*/
+
+.cal_navigation .arrow a, .cal_navigation .arrow a:hover{
+  background-color : white ;
+}
+
+.cal_navigation td {
+  vertical-align : middle ;
+}
+
+.cal_navigation a {
+  padding : 0 3px ;
+  font-size: &dtml-fontSmallSize;;
+  background-color: &dtml-tabsBackgroundColor;;
+  color: &dtml-globalFontColor;;
+}
+
+.cal_navigation a.selected {
+  background-color: &dtml-tabsBorderColor;;
+  color: &dtml-tabsFontColor;;
+
+}
+
+.cal_navigation a:hover {
+  background-color: &dtml-tabsBorderColor;;
+  color: &dtml-tabsFontColor;;
+}
+
+/* week view */
+.week_table {
+  width : 100% ;
+  border-collapse : collapse ;
+  font-size : 9pt ;
+}
+
+.week_table th {
+  font-weight : normal ;
+  text-align : center ;
+  border-bottom : 1px solid #ccc ;
+}
+
+.week_table td {
+  border-left : 1px solid #ccc ;
+  border-right : 1px solid #ccc ;
+  padding : 0 ;
+}
+
+.week_table td.hourLabel {
+  border-left : 1px solid #fff ;
+/*  width : 5ex ;*/
+}
+
+.week_table div {
+  margin-top : -1px ;
+  padding : 0 ;
+  height : 15px ;
+  border-bottom : 1px solid #fff ;
+}
+
+.week_table .hour_row {
+  border-bottom : 1px solid #ccc ;
+}
+.week_table .half_hour_row {
+  border-bottom : 1px solid #e5e5e5 ;
+}
+
+.week_table .today {
+  background-color : #f0f0f0 ;
+}
+
+.week_table div.event {
+  position : absolute ;
+  border : 1px solid #ccc ;
+  background-color : white ;
+}
+
+.week_table div.event:hover {
+  border : 1px solid &dtml-tabsFontColor; ;
+  background-color : orange ;
+  z-index : 1 ;
+}
+/*
+.week_table ul {
+  margin : -1px 0 0 0 ;
+  padding : 0 ;
+  position : absolute ;
+}
+
+.week_table ul:hover {
+  background-color : #fff ;
+  border-top : 1px solid #909 ;
+  border-left : 1px solid #ccc ;
+  border-right : 1px solid #ccc ;
+  border-bottom : 1px solid #ccc ;
+  z-index : 1 ;
+}
+
+.week_table li  {
+  margin-left : 0 ;
+  color: &dtml-tabsFontColor;;
+  list-style-position : inside ;
+}
+
+.week_table td {
+  border-left : 1px solid #ccc ;
+  border-right : 1px solid #ccc ;
+  padding : 0 ;
+}
+
+.week_table div {
+  border : 1px solid green ;
+  height : 0.7em ;
+}
+
+.week_table th {
+  font-weight : normal ;
+  text-align : center ;
+  background-color : #fff ;
+  border-bottom : 1px solid #ccc ;
+}
+
+.week_table .today {
+  background-color : #f0f0f0 ;
+}
+
+
+.week_table .hour_row {
+  border-bottom : 1px solid #ccc ;
+}
+.week_table .half_hour_row {
+  border-bottom : 1px solid #e5e5e5 ;
+}
+
+.week_table td.hourLabel {
+  border : none ;
+  width : 4ex ;
+}
+
+.week_table td.hourLabel span {
+  position : absolute ;
+}
+*/
+
+/* Photo / Portfolio */
+.slide {
+  height : &dtml-slide_size;px ;
+  width : &dtml-slide_size;px ;
+  float : left ;
+  border : 1px solid black ;
+  margin-top : -1px ;
+  margin-left : -1px ;
+  text-align : center ;
+  background-color : #fff ;
+  overflow : auto ;
+}
+/* </dtml-with> */
diff --git a/skins/generic/plinn_style_print.css.dtml.metadata b/skins/generic/plinn_style_print.css.dtml.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/generic/plinn_style_print.css.dtml.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/generic/portal_all_groups.pt b/skins/generic/portal_all_groups.pt
new file mode 100755
index 0000000..287fa46
--- /dev/null
+++ b/skins/generic/portal_all_groups.pt
@@ -0,0 +1,26 @@
+<html xmlns="http://www.w3.org/1999/xhtml" metal:use-macro="here/main_template/macros/master">
+
+  <head>
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8" />
+    <title>All groups</title>
+  </head>
+
+  <body metal:fill-slot="main_no_tabs" tal:omit-tag="" i18n:domain="plinn">
+    <table metal:use-macro="here/gruf_macros/macros/gruf_settings">
+      <tr>
+        <td colspan="2">Using gruf_settings macro</td>
+      </tr>
+      <tr>
+        <td>
+          <table metal:fill-slot="form">
+            <tr>
+              <td><div metal:use-macro="here/gruf_macros/macros/all_groups">all_groups from gruf_macros</div></td>
+              <td><div metal:use-macro="here/gruf_macros/macros/add_group">add_group from gruf_macros</div></td>
+            </tr>
+          </table>
+        </td>
+      </tr>
+    </table>
+  </body>
+
+</html>
\ No newline at end of file
diff --git a/skins/generic/portal_members.pt b/skins/generic/portal_members.pt
new file mode 100755
index 0000000..b3173da
--- /dev/null
+++ b/skins/generic/portal_members.pt
@@ -0,0 +1,32 @@
+<html xmlns="http://www.w3.org/1999/xhtml"
+      metal:use-macro="here/main_template/macros/master">
+
+  <head>
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8" />
+    <title>Portal members management</title>
+    <link href="../content/plinn_style.css" rel="stylesheet" media="screen"/>
+		<script metal:fill-slot="javascript_head_slot" type="text/javascript" tal:attributes="src here/directory_management_script.js/absolute_url"></script>
+  </head>
+
+  <body metal:fill-slot="main_no_tabs" i18n:domain="plinn" tal:omit-tag="">
+    <table metal:use-macro="here/gruf_macros/macros/gruf_settings">
+      <tr>
+        <td colspan="2">Using gruf_settings macro</td>
+      </tr>
+      <tr>
+        <td>
+          <table metal:fill-slot="form">
+            <tr>
+              <td><div metal:use-macro="here/gruf_macros/macros/all_members">all_members from gruf_macros</div></td>
+              <td id="MemberFormSlot"
+              		tal:define="macroName python:request.form.has_key('member_id') and request.form['macroName'] or 'add_member'">
+              	<div metal:use-macro="python:here.gruf_macros.macros[macroName]">add_member from gruf_macros</div>
+              </td>
+            </tr>
+          </table>
+        </td>
+      </tr>
+    </table>
+  </body>
+
+</html>
\ No newline at end of file
diff --git a/skins/generic/quopri_member.py b/skins/generic/quopri_member.py
new file mode 100644
index 0000000..9cc1120
--- /dev/null
+++ b/skins/generic/quopri_member.py
@@ -0,0 +1,11 @@
+##parameters=member=None, name='', email=''
+from quopri import encodestring
+if member is not None :
+	n = member.getMemberFullName(nameBefore=0)
+	e = member.getProperty('email')
+else :
+	n = name
+	e = email
+	
+qpName = encodestring(n).replace('=\n', '')
+return '''"=?utf-8?q?%s?=" <%s>''' % (qpName, e)
diff --git a/skins/generic/recent_news.pt b/skins/generic/recent_news.pt
new file mode 100644
index 0000000..fc47a03
--- /dev/null
+++ b/skins/generic/recent_news.pt
@@ -0,0 +1,66 @@
+<html xmlns:tal="http://xml.zope.org/namespaces/tal"
+      xmlns:metal="http://xml.zope.org/namespaces/metal"
+      metal:use-macro="here/main_template/macros/master">
+  <head>
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
+  </head>
+<body>
+  <div metal:fill-slot="header" tal:replace="nothing"/>
+  <div tal:omit-tag="" metal:fill-slot="main"
+      id="mainCell"
+      i18n:domain="plinn"
+      tal:define="b_start string:0;
+                  b_start request/b_start | b_start;
+		  brains python: here.portal_catalog(portal_type='News Item', sort_on='Date', sort_order='reverse', review_state='published');
+		  newsitems python:[b.getObject() for b in brains];
+		  Batch python:modules['Products.Plinn'].Batch;
+		  batch python:Batch(newsitems, 10, int(b_start), orphan=1);
+		  ListPortalMembers modules/Products/CMFCore/permissions/ListPortalMembers;
+		  checkPerm nocall:mtool/checkPermission">
+
+   <h1 i18n:translate="">News</h1>
+   <div tal:repeat="newsitem batch" tal:condition="newsitems" tal:omit-tag="">
+
+    <div class="newsItem">
+     <h2 class="newsTitle">
+      <img src="newsitem_icon.gif" alt="newsitem/Title" />
+      <a tal:attributes="href newsitem/absolute_url"
+         tal:content="newsitem/Title">Title</a>
+     </h2>
+ 
+     <p class="newsDescription"
+        tal:content="structure newsitem/Description">Description</p>
+ 
+     <ul class="newsAbout">
+      <li tal:condition="python:checkPerm(ListPortalMembers, portal_object)">
+       <span tal:omit-tag="" i18n:translate="">by:</span>    
+       <span class="news-creator"
+       				tal:define="creator python:mtool.getMemberById(newsitem.Creator())"
+       				tal:content="python:creator.getMemberFullName(nameBefore=0)">
+       </span>,
+      </li>
+      <li>
+       <span i18n:translate="at_(date)">at</span>
+       <span tal:replace="python: DateTime(newsitem.Date()).strftime(locale_date_fmt)">date</span>
+      </li>
+     </ul>
+     <ul class="newsFooter">
+      <li>
+       <a tal:attributes="href newsitem/absolute_url" 
+          i18n:translate="read_more">Read More</a>
+      </li>
+     </ul>
+    </div>
+   </div>
+
+   <div tal:condition="python:not(newsitems)">
+    <p class="Desktop" i18n:translate="">No news is good news!</p>
+   </div>
+   <!-- Navigation -->
+   <div metal:use-macro="here/batch_macros/macros/navigation" />
+
+  </div>
+
+</body>
+</html>
+
diff --git a/skins/generic/reject_member_form.pt b/skins/generic/reject_member_form.pt
new file mode 100644
index 0000000..22214e5
--- /dev/null
+++ b/skins/generic/reject_member_form.pt
@@ -0,0 +1,54 @@
+<html xmlns="http://www.w3.org/1999/xhtml" metal:use-macro="here/main_template/macros/master">
+
+  <head>
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8" />
+  </head>
+
+  <body tal:define="pendMember python:mtool.getMemberById(request['id'])" tal:omit-tag="" metal:fill-slot="main_no_tabs" i18n:domain="plinn">
+    <div id="Desktop">
+      <h2 i18n:translate="">Reject registration of <span tal:content="python:pendMember.getMemberFullName(0)" tal:omit-tag="" i18n:name="fullname"></span></h2>
+      <form method="post" tal:attributes="action string:${portal_url}/member_registration_modify">
+        <table>
+          <tr>
+            <td>
+            	<span i18n:translate="" tal:omit-tag="">From:</span>
+            	<span tal:replace="python:member.getMemberFullName(0)"/> &lt;<span tal:replace="member/email"/>&gt;
+            </td>
+          </tr>
+          <tr>
+            <td>
+            	<span i18n:translate="" tal:omit-tag="">To:</span>
+            	<span tal:replace="python:pendMember.getMemberFullName(0)" /> &lt;<span tal:replace="pendMember/email" />&gt;
+				<input type="hidden" name="members.id:records" tal:attributes="value pendMember/getId" />
+				<input type="hidden" name="members.checked:boolean:records" value="True" />
+            </td>
+          </tr>
+          <tr>
+            <td i18n:translate="">Subject:</td>
+          </tr>
+          <tr>
+            <td>
+              <input type="text" name="subject" value="Membership request denied" size="76" i18n:attributes="value" />
+            </td>
+          </tr>
+          <tr>
+            <td i18n:translate="">Message body:</td>
+          </tr>
+          <tr>
+            <td>
+              <textarea name="body" rows="18" cols="74" i18n:translate=""
+              >I'm sorry to have to inform you that your request has been denied. Please contact the site administrator.</textarea>
+            </td>
+          </tr>
+          <tr>
+            <td>
+              <input type="submit" name="reject" value="Send" i18n:attributes="value" />
+            </td>
+          </tr>
+        </table>
+      </form>
+      <div></div>
+    </div>
+  </body>
+
+</html>
\ No newline at end of file
diff --git a/skins/generic/revision_context_header.pt b/skins/generic/revision_context_header.pt
new file mode 100644
index 0000000..846935d
--- /dev/null
+++ b/skins/generic/revision_context_header.pt
@@ -0,0 +1,36 @@
+<meta http-equiv="content-type" content="text/html;charset=utf-8" tal:omit-tag="" />
+<div xmlns:tal="http://xml.zope.org/namespaces/tal"
+     xmlns:metal="http://xml.zope.org/namespaces/metal"
+     xmlns:i18n="http://xml.zope.org/namespaces/i18n"
+     i18n:domain="plinn">
+  <div class="revision_context">
+    <div i18n:translate="">
+      This is an old revision of this content, as edited by
+      <span i18n:name="user" tal:omit-tag="" tal:content="options/ctUser">Bob l'éponge</span> at
+      <span i18n:name="datetime" tal:omit-tag="" tal:content="options/ctTime">14:07, 8 january 2009</span>.
+    </div>
+    <form tal:attributes="action string:${options/currentOb/absolute_url}/restore_revision"
+          tal:condition="options/restorationAllowed"
+          method="post">
+      <input type="hidden" name="key" tal:attributes="value options/revCtx/current/key"/>
+      <input type="submit" name="restore" value="Restore this revision" i18n:attributes="value"/>
+    </form>
+    <div tal:define="baseUrl options/currentOb/absolute_url;
+                     previous options/revCtx/previous|nothing;
+                     next options/revCtx/next|nothing">
+      <span tal:condition="previous" tal:omit-tag="">
+        <a tal:attributes="href python:'%s/load_revision/%s?pos:int=%d' % (baseUrl,
+                                                                           previous['key'],
+                                                                           options['pos'] + 1)"
+           i18n:translate="">← previous revision</a> |
+      </span>
+      <a tal:attributes="href python:options['currentOb'].absolute_url()" i18n:translate="">current revision</a>
+      <span tal:condition="next"> |
+        <a tal:attributes="href python:'%s/load_revision/%s?pos:int=%d' % (baseUrl,
+                                                                           next['key'],
+                                                                           options['pos'] - 1)"
+           i18n:translate="">next revision →</a>
+      </span>
+    </div>
+  </div>
+</div>
\ No newline at end of file
diff --git a/skins/generic/scrape_ie_history.py b/skins/generic/scrape_ie_history.py
new file mode 100644
index 0000000..daf65ce
--- /dev/null
+++ b/skins/generic/scrape_ie_history.py
@@ -0,0 +1,13 @@
+##parameters=url=''
+return '''<html><head>
+<script type="text/javascript">
+// <!--
+	function notifyAjaxLinkHandler() {
+		var url = document.body.innerHTML;
+		if (window.parent.linkHandler && url)
+			window.parent.linkHandler.ie_loadHistory(document.body.innerHTML);
+	}
+// -->
+</script>
+</head>
+<body onload="notifyAjaxLinkHandler();">%s</body></html>''' % url
\ No newline at end of file
diff --git a/skins/generic/search.py b/skins/generic/search.py
new file mode 100755
index 0000000..0d02e57
--- /dev/null
+++ b/skins/generic/search.py
@@ -0,0 +1,144 @@
+##parameters=
+from Products.CMFCore.utils import getToolByName
+from ZTUtils import make_query as mq
+from ZTUtils import make_hidden_input
+from Products.Plinn.utils import translate
+def _(message) : return translate(message, context).encode('utf-8')
+
+utool = getToolByName(context, 'portal_url')
+portal_url = utool()
+ctool = getToolByName(context, 'portal_catalog')
+mtool = getToolByName(context,'portal_membership')
+homeDir = mtool.getHomeFolder(verifyPermission=True)
+options = {}
+indexes = {}
+for i in ctool.indexes() :
+	indexes[i] = True
+hasindex = indexes.has_key
+
+form = context.REQUEST.form
+query = {}
+skip_vars = ['strCreator', 'ajax', 'b_start']
+
+# list typed criterions
+select_vars = ( 'review_state'
+			  , 'Subject'
+			  , 'portal_type'
+			  )
+noFollowVars = []
+
+# first cleaning: remove empty values / dict cast.
+for k, v in form.items() :
+	if not v : continue
+	if k in select_vars :
+		if same_type( v, [] ):
+			v = filter( None, v )
+		if not v:
+			continue
+	if hasattr(v, 'has_key') :
+		v = dict(v.items())
+	
+	query[ k ] = v
+
+# simplifications / cleaning again
+if query.has_key('portal_type') :
+	try : query['portal_type'].remove('Member Data')
+	except (ValueError, AttributeError) : pass
+else :
+	query['portal_type'] = context.portal_types.objectIds()
+	noFollowVars.append('portal_type')
+
+# clean parameters that are not indexes
+for k in skip_vars:
+	if query.has_key(k) :
+		del query[k]
+
+# expand creator search item
+if form.has_key('strCreator') and form['strCreator'].strip() :
+	query['listCreators'] = [ m.getId() for m in context.portal_membership.looseSearchMembers(form['strCreator']) ]
+
+# 'mofified' index solving
+if query.has_key('modified') :
+	def resolveDate(modified) :
+		today = context.ZopeTime().earliestTime()
+		dateResolution = {'yesterday'	: (today-1).Date()
+						, 'lastWeek'	: (today-7).Date()
+						, 'lastMonth'	: (today-31).Date()
+						}
+		member = mtool.getAuthenticatedMember()
+		if member :
+			lastLoginTime = member.getProperty('last_login_time', None)
+			if lastLoginTime :
+				dateResolution['lastLogin'] = lastLoginTime
+		return dateResolution.get(modified)
+	
+	date = resolveDate(query['modified'])
+	if date :
+		query['modified'] = {'query':date, 'range':'min'}
+	else :
+		del query['modified']
+
+sort_on = query.get('sort_on', 'fTitle')
+if hasindex(sort_on) :
+	query['sort_on'] = sort_on
+	query['sort_order'] = query.get('sort_order', 'ascending')
+else :
+	if query.has_key('sort_on')		: query.pop('sort_on')
+	if query.has_key('sort_order')	: query.pop('sort_order')	
+
+def makeColumnHeader(indexName) :
+	toggleSortOrder = indexName == sort_on
+	columnQuery = query.copy()
+	for name in noFollowVars :
+		if columnQuery.has_key(name) :
+			columnQuery.pop(name)
+	columnQuery['sort_on'] = indexName
+	sort_order = query.get('sort_order', 'ascending')
+	if toggleSortOrder :
+		if sort_order == 'ascending' :
+			sort_order = 'reverse'
+		elif sort_order == 'reverse' :
+			sort_order = 'ascending'
+	columnQuery['sort_order'] = sort_order
+	url = '%s/search?%s' % (portal_url, mq(**columnQuery))
+	
+	toggleImg = None
+	if toggleSortOrder : # e.g. selected
+		if query['sort_order'] == 'ascending' :
+			toggleImg = {'src':'%s/arrowUp.gif' % portal_url
+					 	,'alt' : _('ascending sort')}
+
+		elif query['sort_order'] == 'reverse' :
+			toggleImg = {'src':'%s/arrowDown.gif' % portal_url
+					 	,'alt' : _('ascending sort')}
+	return {'url':url, 'img':toggleImg}
+			
+
+options['makeColumnHeader'] = makeColumnHeader
+results = ctool( **query )
+options['results'] = results
+options['resultsLength'] = len(results)
+if homeDir and results :
+	options['canSaveAsTopic'] = True
+	args = query.copy()
+	for name in noFollowVars :
+		try : args.pop(name)
+		except : pass
+	if form.has_key('modified') :
+		possibleValues = {'yesterday'	: 1
+						 ,'lastWeek'	: 7
+						 ,'lastMonth' : 31}
+		value = possibleValues.get(form['modified'])
+		if value :
+			d = {'critType'	: 'Friendly Date Criterion'
+				,'value'	: value
+				,'operation': 'max'
+				,'daterange': 'old'}
+			args['modified'] = d
+		else :
+			try : del args['modified']
+			except KeyError : pass
+	options['queryAsHiddenInputs'] = make_hidden_input(**args)
+else :
+	options['canSaveAsTopic'] = False
+return context.search_results_template(**options)
diff --git a/skins/generic/search_form.pt b/skins/generic/search_form.pt
new file mode 100644
index 0000000..b2e86cd
--- /dev/null
+++ b/skins/generic/search_form.pt
@@ -0,0 +1,116 @@
+<html xmlns:tal="http://xml.zope.org/namespaces/tal"
+      xmlns:metal="http://xml.zope.org/namespaces/metal"
+      metal:use-macro="here/main_template/macros/master">
+  <head>
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
+  </head>
+<body>
+<div metal:fill-slot="main_no_tabs" i18n:domain="cmf_default">
+
+<div class="Desktop">
+
+<h1 i18n:translate="">Search inside <span tal:replace="here/Title"
+                                   i18n:name="title" >portal</span></h1>
+
+<form tal:attributes="action string:${here/portal_url}/search">
+
+<table class="FormLayout">
+	<tr valign="top">
+		<th i18n:translate="">Full Text</th>
+		<td>
+			<input name="SearchableText" size="40" />
+			<dl class="FieldHelp">
+				<dd i18n:translate="">For a simple text search, enter your search term
+				     here.  Multiple words may be found by combining
+				     them with <b>AND</b> and <b>OR</b>.  This will
+				     find text in items' contents, title and
+				     description.
+				</dd>
+			</dl>
+		</td>
+	</tr>
+	<tr>
+	<th i18n:translate="">Title</th>
+	<td><input name="Title" size="40" /></td>
+	</tr>
+	<tr>
+		<th i18n:translate="">Description</th>
+		<td>
+			<input name="Description" size="40" />
+			<dl class="FieldHelp">
+				<dd i18n:translate=""> You may also search the items' descriptions and
+				titles specifically.  Multiple words may be found
+				by combining them with <b>AND</b> and <b>OR</b>.
+				</dd>
+			</dl>
+		</td>
+	</tr>
+	<tr>
+		<th i18n:translate="">Review Status</th>
+		<td>
+			<select name="review_state" size="4" multiple>
+				<option value="" selected i18n:translate="">-- any --</option>
+				<option value="private" i18n:translate="">private</option>
+				<option value="pending" i18n:translate="">pending</option>
+				<option value="published" i18n:translate="">published</option>
+			</select>
+			<dl class="FieldHelp">
+				<dd i18n:translate="">If you wish to constrain results to items in certain states, select them from this list.</dd>
+			</dl>
+		</td>
+	</tr>
+	<tr>
+		<th i18n:translate="">Find new items since...</th>
+		<td>
+			<select name="modified">
+				<option value="" i18n:translate="">Ever</option>
+				<option tal:condition="python:not(here.portal_membership.isAnonymousUser())"
+				        value="lastLogin" i18n:translate="">Last login</option>
+				<option value="yesterday" i18n:translate="">Yesterday</option>
+				<option value="lastWeek"  i18n:translate="">Last week</option>
+				<option value="lastMonth" i18n:translate="">Last month</option>
+			</select>
+			<dl class="FieldHelp">
+				<dd i18n:translate="">You may find only recent items by selecting a time-frame.</dd>
+			</dl>
+		</td>
+	</tr>
+	<tr>
+		<th i18n:translate="">Item type</th>
+		<td tal:define="typeinfos here/searchableTypes" >
+			<select name="portal_type:list" multiple size="5">
+				<option value="" selected i18n:translate="">-- any --</option>
+				<option tal:repeat="typeinfo typeinfos" tal:attributes="value typeinfo/getId" tal:content="typeinfo/Title" i18n:translate=""></option>
+			</select>
+			<dl class="FieldHelp">
+				<dd i18n:translate="">You may limit your results to particular kinds of
+				items by selecting them above.  To find all kinds
+				of items, do not select anything.
+				</dd>
+			</dl>
+		</td>
+	</tr>
+
+	<tr tal:condition="python:mtool.checkPermission('List portal members', here)">
+		<th i18n:translate="">Creator</th>
+		<td>
+			<input name="strCreator" size="20" />
+			<dl class="FieldHelp">
+				<dd i18n:translate="">To find items by a particular user, enter one or more of his properties (login, name, email...).</dd>
+			</dl>
+		</td>
+	</tr>
+
+ <tr>
+  <td><br /></td>
+  <td>
+    <input type="submit" value=" Search " i18n:attributes="value" />
+  </td>
+ </tr>
+</table>
+</form>
+
+</div>
+</div>
+</body>
+</html>
\ No newline at end of file
diff --git a/skins/generic/search_results_template.pt b/skins/generic/search_results_template.pt
new file mode 100644
index 0000000..9532dc4
--- /dev/null
+++ b/skins/generic/search_results_template.pt
@@ -0,0 +1,92 @@
+<html xmlns:tal="http://xml.zope.org/namespaces/tal"
+      xmlns:metal="http://xml.zope.org/namespaces/metal"
+      metal:use-macro="here/main_template/macros/master">
+  <head>
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
+  </head>
+  <body>
+    <div metal:fill-slot="main_no_tabs" i18n:domain="plinn" tal:omit-tag=""
+         tal:define="b_start python:0;b_start request/b_start | b_start;
+                          results options/results;
+                          stext request/SearchableText|nothing;
+                          resultsLength options/resultsLength;
+                          Batch python:modules['Products.Plinn'].Batch;
+                          batch python:Batch(results, 20, b_start, orphan=1, quantumleap=1);
+                          mch nocall:options/makeColumnHeader">
+      <h2 i18n:translate="">Search Results</h2>
+      <div tal:condition="resultsLength" tal:omit-tag="">
+        <p i18n:translate=""
+         tal:condition="stext">Found <span tal:replace="python:len(results)"
+         i18n:name="count">100</span> <span i18n:name="item_s_match"
+         tal:content="python:resultsLength > 1 and 'items matching' or 'item matching'"
+         i18n:translate=""
+         tal:omit-tag="">items matching</span> '<span
+             tal:replace="request/SearchableText"
+             i18n:name="text">search term</span>'.</p>
+      <div tal:condition="not:stext">
+      <p tal:condition="python:resultsLength==1" i18n:translate="">Found 1 item.</p>
+      <p tal:condition="python:resultsLength>1" i18n:translate="">Found <span i18n:name="count" tal:content="resultsLength" tal:omit-tag="">2</span> items.</p>
+      </div>
+      </div>
+      <div metal:use-macro="here/batch_macros/macros/navigation">batch navigation</div>
+      <table class="listing" tal:condition="results" cellspacing="0">
+        <thead>
+          <tr>
+            <th width="16"><br/></th>
+            <th tal:define="ci python:mch('fTitle')">
+              <a i18n:translate="" tal:attributes="href ci/url">Title</a>
+              <img tal:condition="ci/img" tal:attributes="src ci/img/src; alt ci/img/alt"/>
+            </th>
+            <th tal:define="ci python:mch('Creator')">
+              <a i18n:translate="" tal:attributes="href ci/url">Creator</a>
+              <img tal:condition="ci/img" tal:attributes="src ci/img/src; alt ci/img/alt"/>
+            </th>
+            <th tal:define="ci python:mch('modified')">
+              <a i18n:translate="" tal:attributes="href ci/url">Last modified</a>
+              <img tal:condition="ci/img" tal:attributes="src ci/img/src; alt ci/img/alt"/>
+            </th>
+          </tr>
+        </thead>
+        <tbody tal:repeat="result batch" tal:omit-tag="">
+          <tr tal:define="objURL result/getURL;
+        								  oddrow repeat/result/odd"
+        		  tal:attributes="class python:test(oddrow, 'even', 'odd')">
+            <td>
+              <a tal:condition="result/getIcon|nothing"
+                 tal:attributes="href objURL">
+                <img src="" border="0"
+                     tal:define="alt result/Type"
+                     tal:attributes="src result/getIcon;alt alt;title alt" />
+              </a>
+            </td>
+            <td>
+              <a tal:attributes="href objURL">
+                <span tal:condition="result/Title" tal:replace="result/Title">Title</span>
+                <span tal:condition="not:result/Title" tal:omit-tag="" i18n:translate="">(No title)</span>
+              </a>
+            </td>
+            <td tal:content="python:mtool.getMembers(result.listCreators)[0].getMemberFullName(nameBefore=0)"
+                tal:on-error="python:len(result.listCreators) and result.listCreators[0] or ''"></td>
+            <td tal:content="python:result.modified.strftime(locale_date_fmt)">Date</td>
+          </tr>
+          <tr tal:condition="result/Description">
+            <td><br/></td>
+            <td colspan="3">
+              <em tal:content="structure result/Description">Description</em>
+            </td>
+          </tr>
+        </tbody>
+      </table>
+      <form tal:condition="options/canSaveAsTopic"
+            tal:attributes="action string:$portal_url/save_search_as_topic"
+            method="post">
+        <h3 i18n:translate="">Save this search as topic</h3>
+        <span i18n:translate="" tal:omit-tag="">Title:</span>
+        <input type="text" name="topic_title"/>
+        <div tal:replace="structure options/queryAsHiddenInputs"></div>
+        <input type="submit" name="addTopic" value="Save" i18n:attributes="value"/>
+      </form>
+      <p tal:condition="not:results" i18n:translate="">There are no items matching your specified criteria.</p>
+    </div>
+  </body>
+</html>
diff --git a/skins/generic/searchableTypes.py b/skins/generic/searchableTypes.py
new file mode 100644
index 0000000..58f9d40
--- /dev/null
+++ b/skins/generic/searchableTypes.py
@@ -0,0 +1,15 @@
+##parameters=
+folderishTypes = ['Plinn Folder', 'Calendar', 'Portfolio']
+ttool = context.portal_types
+allFtis = ttool.listTypeInfo()
+
+ftis = []
+for ft in folderishTypes :
+	folderishFti = ttool.getTypeInfo(ft)
+
+	for fti in allFtis :
+		if folderishFti.allowType(fti.id) and fti not in ftis :
+			ftis.append(fti)
+
+ftis.append(ttool['Discussion Item'])
+return ftis
\ No newline at end of file
diff --git a/skins/generic/send_email_form.pt b/skins/generic/send_email_form.pt
new file mode 100644
index 0000000..4e52520
--- /dev/null
+++ b/skins/generic/send_email_form.pt
@@ -0,0 +1,140 @@
+<html xmlns="http://www.w3.org/1999/xhtml" 
+      metal:use-macro="here/main_template/macros/master">
+
+  <head>
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8" />
+    <title>Envoi de message</title>
+  </head>
+
+  <body tal:omit-tag="" metal:fill-slot="main" i18n:domain="plinn">
+    <div tal:replace="options/send_fields|nothing"></div>
+    <form action="." method="post" tal:attributes="action string:${here/absolute_url}/send_email">
+      <table tal:define="og 				python:options.get ;
+      									 expand			python:og('expand', '');
+      									 other_adr	python:og('other_adr', []);
+      									 batchM			python:og('batchM', here.valid_roles());
+      									 customized_batch python:og('customized_batch', {}) ;
+      									 subject		python:og('subject', '');
+      									 text_body	python:og('text_body', '');
+      									 send_fields python:og('send_fields', {});
+      									 wfid request/wfid|nothing;
+      									 "
+      			 class="send_email_form">
+        <tr>
+          <td>
+            <h1 i18n:translate="">Send an email</h1>
+          </td>
+        </tr>
+        <tr>
+        	<td i18n:translate="">Recipients:</td>
+        </tr>
+        <tr>
+        	<td>
+        		<div tal:repeat="roleAndMembers here/getRecipients">
+        			<fieldset tal:define="r python:roleAndMembers[0] ; mir python:roleAndMembers[1]">
+	              <legend tal:content="python:r" i18n:translate="">Role name</legend>
+
+              	<div metal:use-macro="template/macros/send_field_chooser">To CC CCi</div>
+
+              	<!-- <=10 -->
+	            	<div tal:repeat="m mir" tal:omit-tag="" tal:condition="python:len(mir) <= 10">
+	                <label tal:define="selectAll python:r in batchM">
+	                  <input type="checkbox"
+	                         tal:attributes="value m/id;
+	                                         name python:'customized_batch.%s:list:record' % r;
+	                                         checked python:selectAll or m.id in customized_batch.get(r,[])" />
+	                  <span tal:replace="python:m.getMemberFullName(nameBefore=0)">membre</span>
+	                  <span tal:condition="python:m == member" i18n:translate="">(as copy)</span>
+	                </label>
+	              </div>
+
+
+		            <!-- >10 -->
+	              <div tal:omit-tag="" tal:condition="python:len(mir) > 10">
+
+	              	<div tal:define="selectAll python:r in batchM or len(customized_batch.get(r,[])) == len(mir)"
+	              			 tal:omit-tag="">
+
+		              	<!-- condensed display -->
+		              	<div tal:condition="python:not expand == r" tal:omit-tag="">
+				              <label tal:condition="python:selectAll or not customized_batch.has_key(r)">
+				              	<input type="checkbox" name="batchM:list" value="role" tal:attributes="value r ; checked python:selectAll or r in batchM" />
+				              	<span i18n:translate="">All (<span i18n:name="nofpers" tal:replace="python:len(mir)">120</span> persons)</span>
+				              </label>
+				              <div tal:condition="python:not( selectAll or not customized_batch.has_key(r) )" tal:omit-tag="">
+				              	<span tal:replace="python:len(customized_batch[r])">n</span>/<span tal:replace="python:len(mir)">tot</span> <span i18n:translate="" tal:content="python:len(customized_batch[r])>1 and 'persons selected' or 'person selected'" tal:omit-tag="">persons selected</span>
+				              	<!-- hidden inputs -->
+				              	<input type="hidden" tal:attributes="value python:' '.join(customized_batch[r]) ; name python:'customized_batch.%s:tokens:record'%r" />
+				              </div>
+				              <input type="submit" value="Show list" name="expand.role" tal:attributes="name string:expand.${r}:record" i18n:attributes="value" />
+			              </div>
+
+			              <!-- collaped display -->
+			              <div tal:condition="python:expand == r" tal:omit-tag="">
+                      <select size="10" multiple="multiple" name="customized_batch.role:list:record" tal:condition="python:expand == r"
+			                				tal:attributes="name python:'customized_batch.%s:list:record' % r">
+			                	<option tal:repeat="m mir" tal:attributes="value m/id ; selected python:(not customized_batch.has_key(r)) and True or (m.id in customized_batch[r])" tal:content="python:m.getMemberFullName(nameBefore=1)" >PIN Beno&icirc;t</option>
+			                </select>
+			                <br />
+			                <input type="submit" value="Validate" i18n:attributes="value" name="collapse" /> <span i18n:translate="" tal:omit-tag="">(not required)</span>
+		                </div>
+	                </div>
+		            </div>
+	            </fieldset>
+	          </div>
+          </td>
+        </tr>
+        <tr>
+          <td>
+          	<fieldset>
+              <legend i18n:translate="">Others (on address by line)</legend>
+              <textarea name="other_adr:lines" rows="3" cols="74" tal:content="python:'\n'.join(other_adr)"></textarea>
+            </fieldset>
+          </td>
+        </tr>
+        <tr>
+          <td><span i18n:translate="">Subject:</span><br />
+            <textarea name="subject" rows="1" cols="74" tal:content="subject"></textarea>
+          </td>
+        </tr>
+        <tr>
+          <td><span i18n:translate="">Message body:</span><br />
+            <textarea name="text_body" rows="18" cols="74" tal:content="text_body"></textarea>
+          </td>
+        </tr>
+        <tr>
+          <td>
+          	<input type="submit" value="Send email" i18n:attributes="value" />
+          	<div tal:condition="wfid">
+              <input type="hidden" name="wfid" tal:attributes="value wfid" /><br />
+              <em i18n:translate="">Note: This message will be stored in content history.</em>
+            </div>
+          </td>
+        </tr>
+      </table>
+    </form>
+  </body>
+</html>
+
+<tal:block tal:replace="nothing">
+  <div style="float:right" metal:define-macro="send_field_chooser" i18n:domain="plinn">
+    <label>
+      <input type="radio" value="to"
+             tal:attributes="name python:'send_fields.%s:record' % r;
+                             checked python:(not send_fields.get(r) and True) or (send_fields.get(r) == 'to')" />
+      <span i18n:translate="mail_to" tal:omit-tag="">To</span>
+    </label>
+    <label>
+      <input type="radio" value="cc"
+             tal:attributes="name python:'send_fields.%s:record' % r;
+                             checked python:send_fields.get(r) == 'cc'" />
+      <span i18n:translate="mail_cc" tal:omit-tag="">CC</span>
+    </label>
+    <label>
+      <input type="radio" value="bcc"
+             tal:attributes="name python:'send_fields.%s:record' % r;
+                             checked python:send_fields.get(r) == 'bcc'" />
+      <span i18n:translate="mail_bcc" tal:omit-tag="">BCC</span>
+    </label>
+  </div>
+</tal:block>
diff --git a/skins/generic/sizehr.py b/skins/generic/sizehr.py
new file mode 100644
index 0000000..90451ef
--- /dev/null
+++ b/skins/generic/sizehr.py
@@ -0,0 +1,10 @@
+##parameters=size
+
+ko = 1
+unitIndex=0
+units = ['o', 'Ko', 'Mo', 'Go']
+while float(size) / ko >= 1024 :
+	ko = ko * 1024
+	unitIndex = unitIndex + 1
+	
+return {'value' : round(float(size)/ko, 2), 'unit' : units[unitIndex]}
\ No newline at end of file
diff --git a/skins/generic/sort_folder_contents.py b/skins/generic/sort_folder_contents.py
new file mode 100644
index 0000000..e789941
--- /dev/null
+++ b/skins/generic/sort_folder_contents.py
@@ -0,0 +1,26 @@
+##parameters=objects, sorted_field, sorted_dir
+
+if not objects : return []
+
+mtool = context.portal_membership
+wftool = context.portal_workflow
+
+functions = {'title' : lambda ob : ob.title_or_id().lower() ,
+			 'date'	 : lambda ob : ob.modified() ,
+			 'submitTime' : lambda ob : wftool.getInfoFor(ob, 'time'),
+			 'actor' : lambda ob : mtool.getMemberFullNameById(wftool.getInfoFor(ob, 'actor')), 
+			 'Creator' : lambda ob : mtool.getMemberFullNameById(ob.Creator()),
+			 'review_state' : lambda ob : wftool.getInfoFor(ob, 'review_state', ''),
+			 }
+
+
+sort_func = functions.get(sorted_field, None)
+if sort_func is None :
+	if hasattr(objects[0], sorted_field):
+		sort_func = callable(getattr(objects[0], sorted_field)) and (lambda ob : getattr(ob, sorted_field)()) or (lambda ob : getattr(ob, sorted_field))
+	else :
+		return objects
+
+
+objects.sort(sorted_dir == 'down' and (lambda a,b: cmp(sort_func(b), sort_func(a))) or (lambda a,b: cmp(sort_func(a), sort_func(b))))
+return objects
diff --git a/skins/generic/standard_error_message.pt b/skins/generic/standard_error_message.pt
new file mode 100644
index 0000000..f90d3b5
--- /dev/null
+++ b/skins/generic/standard_error_message.pt
@@ -0,0 +1,73 @@
+<html xmlns:tal="http://xml.zope.org/namespaces/tal"
+      xmlns:metal="http://xml.zope.org/namespaces/metal"
+      metal:use-macro="here/main_template/macros/master">
+  <head>
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
+  </head>
+<body>
+<div metal:fill-slot="main" i18n:domain="cmf_default">
+<div class="Desktop">
+
+
+<div tal:condition="options/error_message"
+     tal:content="structure options/error_message" />
+
+<div tal:condition="not: options/error_message">
+  <h2 i18n:translate="">Site Error</h2>
+
+  <p i18n:translate="">An error was encountered while publishing this
+   resource.</p>
+
+  <p>
+    <strong i18n:translate="">Error Type:
+      <span tal:replace="options/error_type" i18n:name="error_type" />
+    </strong>
+    <br />
+    <strong i18n:translate="">Error Value:
+      <span tal:replace="options/error_value" i18n:name="error_value" />
+    </strong>
+    <br />
+  </p>
+
+  <hr noshade />
+
+  <p i18n:translate="">Troubleshooting Suggestions</p>
+
+  <ul>
+  <div tal:condition="python: options['error_type'] in ('KeyError'
+                                                       ,'NameError')">
+  <li i18n:translate="">This resource may be trying to reference a
+      nonexistent object or variable
+      <strong><span tal:replace="options/error_value"
+                    i18n:name="error_value" /></strong>.</li>
+  </div>
+  <li i18n:translate="">The URL may be incorrect.</li>
+  <li i18n:translate="">The parameters passed to this resource may be
+    incorrect.</li>
+  <li i18n:translate="">A resource that this resource relies on may be
+    encountering an error.</li>
+  </ul>
+
+  <p i18n:translate="">For more detailed information about the error, please
+  refer to the HTML source for this page.
+  </p>
+
+  <p i18n:translate="">If the error persists please contact the site
+    maintainer. Thank you for your patience.
+  </p>
+
+</div>
+
+<div tal:condition="python:mtool.checkPermission('Log Site Errors', portal_object)" tal:omit-tag="">
+<div tal:condition="options/error_log_url | nothing">
+  <hr noshade />
+  <a href="error_log_url" tal:attributes="href options/error_log_url"
+     i18n:translate="">
+    Show Error Log Entry
+  </a>
+</div>
+</div>
+</div>
+</div>
+</body>
+</html>
diff --git a/skins/generic/tabs.pt b/skins/generic/tabs.pt
new file mode 100644
index 0000000..8c018ea
--- /dev/null
+++ b/skins/generic/tabs.pt
@@ -0,0 +1,51 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+<html xmlns="http://www.w3.org/1999/xhtml">
+
+  <head>
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8" />
+    <title>tabs</title>
+    <link href="zpt_stylesheet.css" rel="stylesheet" media="screen" />
+    <link href="plinn_style.css" rel="stylesheet" media="screen" />
+  </head>
+
+  <body i18n:domain="plinn">
+
+    <div metal:define-macro="tabs"
+         tal:define="filteredActionsList python:[];
+                     dummy python:[ filteredActionsList.extend(l) for l in [ actions.get(key, []) for key in ['folder', 'object'] ] ];
+                     forceTab request/forceTab|nothing"
+         tal:condition="python:len(filteredActionsList) > 1" tal:omit-tag="">
+		<div metal:define-macro="standalone_tabs" tal:define="forceTab forceTab|nothing">
+      <ul class="contentTabs">
+        <li  class="selected" tal:replace="nothing">
+          <a href=".">View</a>
+        </li>
+        <li tal:repeat="action filteredActionsList"
+            tal:attributes="class python:( (forceTab == action['id']) or (request['URL0'].strip() == action['url'].strip() or request['URL0'].strip().split('/')[-1] == action['id']) ) and 'selected' or nothing">
+          <a href="#" tal:attributes="href action/url ; name action/id"
+             tal:content="action/title" i18n:translate="">Edit</a>
+        </li>
+      </ul>
+		</div>
+    </div>
+
+    <div metal:define-macro="additional_tabs"
+         tal:define="filteredActionsList python:actions.get('additional_tabs', [])"
+         tal:condition="filteredActionsList" tal:omit-tag="">
+    	<div metal:define-macro="standalone_additional_tabs" tal:define="forceTab forceTab|nothing">
+	      <ul class="additionalTabs">
+	        <li  class="selected" tal:replace="nothing">
+	          <a href=".">View</a>
+	        </li>
+	        <li tal:repeat="action filteredActionsList"
+	            tal:attributes="class python:( (forceTab == action['id']) or (request['URL0'].strip() == action['url'].strip() or request['URL0'].strip().split('/')[-1] == action['id']) ) and 'selected' or nothing">
+	          <a href="#" tal:attributes="href action/url ; name action/id"
+	             tal:content="action/title" i18n:translate="">Edit</a>
+	        </li>
+	      </ul>
+	    </div>
+    </div>
+    
+  </body>
+</html>
diff --git a/skins/generic/use_macro.pt b/skins/generic/use_macro.pt
new file mode 100644
index 0000000..30039e6
--- /dev/null
+++ b/skins/generic/use_macro.pt
@@ -0,0 +1,8 @@
+<fragments>
+<metal:block metal:use-macro="here/main_template_macros/macros/global_defines" />
+<tal:block tal:define="global dummy python:request.RESPONSE.setHeader('Content-Type', 'text/xml;;charset=utf-8')" />
+<tal:block tal:define="global Template python:getattr(here, request.form.get('template', options.get('template')));" />
+	<fragment tal:attributes="id options/fragmentId|request/fragmentId"><span tal:replace="structure string:&lt;![CDATA[" />
+		<metal:block use-macro="python:Template.macros[request.form.get('macro', options.get('macro'))]"/>
+	<span tal:replace="structure string:]]>" /></fragment>
+</fragments>
\ No newline at end of file
diff --git a/skins/generic/viewColorProperties.pt b/skins/generic/viewColorProperties.pt
new file mode 100644
index 0000000..ad98d1f
--- /dev/null
+++ b/skins/generic/viewColorProperties.pt
@@ -0,0 +1,24 @@
+<html metal:use-macro="here/main_template/macros/master">
+
+  <head>
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8">
+    <title>color table</title>
+  </head>
+
+  <body metal:fill-slot="main"
+  			tal:define="propsheet here/base_properties ;
+  									propMap propsheet/propertyMap ;
+  									strProps python:[ p for p in propMap if p['type'] == 'string' ] ;
+  									colorProps python:[ p for p in strProps if p['id'].lower().find('color') >=0 or (p['default_value'].startswith('#') and p['default_value'][1:].isalnum()  ) ]"
+  			tal:omit-tag="">
+		<h1>Color table</h1>
+    <table width="180" border="1" cellspacing="2" cellpadding="0">
+      <tr tal:repeat="prop colorProps">
+        <th tal:content="prop/id">color name</th>
+        <td tal:content="prop/default_value">#fde</td>
+        <td bgcolor="#ddd" tal:attributes="style string:background : ${prop/default_value};;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td>
+      </tr>
+    </table>
+  </body>
+
+</html>
\ No newline at end of file
diff --git a/skins/generic/viewCustomColorProperties.pt b/skins/generic/viewCustomColorProperties.pt
new file mode 100644
index 0000000..d0da846
--- /dev/null
+++ b/skins/generic/viewCustomColorProperties.pt
@@ -0,0 +1,24 @@
+<html metal:use-macro="here/main_template/macros/master">
+
+  <head>
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8">
+    <title>color table</title>
+  </head>
+
+  <body metal:fill-slot="main"
+  			tal:define="propsheet here/base_properties ;
+  									propMap propsheet/propertyMap ;
+  									strProps python:[ p for p in propMap if p['type'] == 'string' ] ;
+  									colorProps python:[ p for p in strProps if p['id'].lower().find('color') >=0 or (propsheet.getProperty(p['id']).startswith('#') and propsheet.getProperty(p['id'])[1:].isalnum()  ) ]"
+  			tal:omit-tag="">
+		<h1>Color table</h1>
+    <table width="180" border="1" cellspacing="2" cellpadding="0">
+      <tr tal:repeat="prop colorProps">
+        <th tal:content="prop/id">color name</th>
+        <td tal:content="python:propsheet.getProperty(prop['id'])">#fde</td>
+        <td bgcolor="#ddd" tal:attributes="style python:'background: %s' % propsheet.getProperty(prop['id'])">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td>
+      </tr>
+    </table>
+  </body>
+
+</html>
\ No newline at end of file
diff --git a/skins/generic/wf_macros.pt b/skins/generic/wf_macros.pt
new file mode 100644
index 0000000..0d7e245
--- /dev/null
+++ b/skins/generic/wf_macros.pt
@@ -0,0 +1,43 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+<html xmlns="http://www.w3.org/1999/xhtml">
+
+  <head>
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8" />
+    <title></title>
+  </head>
+
+  <body i18n:domain="plinn">
+
+    <div metal:define-macro="default_workflow"
+    		 tal:define="review_history python: wtool.getInfoFor(here, 'review_history', default=None)" >
+      <table cellspacing="0" class="listing" tal:condition="review_history">
+        <tr>
+          <th i18n:translate="">Date</th>
+          <th i18n:translate="">Actor</th>
+          <th i18n:translate="">Action</th>
+          <th i18n:translate="">Comments</th>
+          <th i18n:translate="">Email sent to</th>
+        </tr>
+        <div tal:repeat="item python:review_history[::-1]" tal:omit-tag="">
+	        <tr tal:define="oddrow repeat/item/odd" tal:attributes="class python:test(oddrow, 'even', 'odd')"
+	        		tal:condition="item/action">
+	        	<td tal:content="python:item['time'].strftime(locale_date_fmt)">time</td>
+	        	<td tal:content="python:mtool.getMemberFullNameById(item['actor'], nameBefore=0)">actor</td>
+            <td tal:content="python:item['action'].capitalize()" i18n:translate=""></td>
+            <td tal:define="comments item/comments"><span tal:replace="comments" /><em tal:condition="not:comments" i18n:translate="">(no comments)</em></td>
+            <td tal:define="email_sent python:item.get('email_sent', [])">
+            	<span tal:repeat="e email_sent">
+            		<span tal:content="python:mtool.getMemberFullNameById(e, nameBefore=0)">recipient</span><br />
+            	</span>
+            	<em tal:condition="not:email_sent" i18n:translate="">(no email sent)</em>
+            </td>
+          </tr>
+        </div>
+      </table>
+      <em i18n:translate="" i18n:domain="cmf_default" tal:condition="not:review_history">This item has not had any status changes.</em>
+    </div>
+
+  </body>
+
+</html>
\ No newline at end of file
diff --git a/skins/generic/widgets.pt b/skins/generic/widgets.pt
new file mode 100644
index 0000000..00d7af8
--- /dev/null
+++ b/skins/generic/widgets.pt
@@ -0,0 +1,141 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+<html xmlns="http://www.w3.org/1999/xhtml">
+
+  <head>
+    <meta http-equiv="content-type" content="text/html;charset=UTF-8" />
+    <title>widgets</title>
+    <link href="../patch_skins/plinn_style.css" rel="stylesheet" media="screen">
+  </head>
+
+  <body>
+    <pre>tabs</pre>
+    <hr/>
+    <table class="tabs" metal:define-macro="tabs">
+      <tr>
+        <td tal:repeat="ai_dict ai_dicts" tal:attributes="class python:(useQueryString and ['%s?%s' % (request['URL0'],  request['QUERY_STRING']) == ai_dict['url'], ] or [request['URL0'] == ai_dict['url'], ])[0] and 'selected' or nothing">
+          <a href="." tal:attributes="href ai_dict/url" tal:content="python:ai_dict['name'] or ai_dict['id']" i18n:translate="">Action 1</a>
+        </td>
+      </tr>
+    </table>
+    <pre>generic_header</pre>
+    <hr />
+    <div metal:define-macro="generic_header"
+     tal:define="mq python:modules['ZTUtils'].make_query;
+     						 url python:request.get('URL0');
+     						 cmfPerms python:modules['Products.CMFCore.permissions'];
+     						 ModifyPortalContent cmfPerms/ModifyPortalContent;
+     						 allow_edit python:mtool.checkPermission(ModifyPortalContent, here)">
+	    <table width="100%">
+	      <tr>
+	        <td tal:condition="allow_edit" i18n:domain="plinn">
+	          <a href="." title="Edit metadata" i18n:attributes="title" id="ToggleFormButton"
+	          	 tal:attributes="href python: '%s?%s' % (url , mq( request.form, {'edit_metadata':'titleAndDescForm'} ))"><img src="../images/collapsedPalette.gif" alt="Edit metadata" height="16" width="16" tal:attributes="src here/collapsedPalette.gif/absolute_url" border="0" i18n:attributes="alt" /></a>
+	        </td>
+	        <td width="100%" id="HeaderArea" tal:define="metadata_macro python:request.form.get('edit_metadata', 'viewTitleAndDesc')">
+	        	<span metal:use-macro="python:here.header_widgets.macros[metadata_macro]"></span>
+	        </td>
+	      </tr>
+	    </table>
+			<script type="text/javascript" tal:attributes="src here/palette.js/absolute_url"></script>
+			<script type="text/javascript" tal:attributes="src here/generic_header_script.js/absolute_url"></script>
+			<script type="text/javascript" tal:attributes="src here/calendar.js/absolute_url"></script>
+      <script type="text/javascript" tal:attributes="src string:${portal_url}/lang/calendar-fr.js"></script>
+      <script type="text/javascript" tal:attributes="src here/calendar-setup.js/absolute_url"></script>
+	    <script type="text/javascript">//<!--
+				initHeaderScript();
+				//-->
+			</script>
+    </div>
+    
+    <div metal:define-macro="clipboard" tal:condition="python:not request.SESSION.get('editBoxes')" tal:omit-tag="" i18n:domain="plinn" tal:on-error="python:here.emptyClipboard(empty=True,ajax=True) and None">
+    	<table tal:condition="clip" class="clipboard" cellspacing="0" tal:define="clip here/getCPInfoList">
+    		<tr><th i18n:translate="">Clipboard</th></tr>
+    		<tr><td>
+					<form tal:attributes="action string:${here/absolute_url}/emptyClipboard" method="post">
+	    			<ul>
+							<li tal:repeat="item clip" tal:attributes="class python:repeat['item'].odd() and 'odd' or 'even'"><input type="checkbox" name="indexes:int:list" tal:attributes="value repeat/item/index"/><a tal:attributes="href item/url ; title item/title"><img tal:attributes="src item/icon ; alt item/type ; height item/height ; width item/width" border="0" /> <span tal:replace="item/title">Title</span></a></li>
+						</ul>
+						<!--
+						<input type="submit" name="delete" value="Delete" i18n:attributes="value" style="float:left"/>
+						<input type="submit" name="empty" value="Empty" i18n:attributes="value" style="float:right" />
+  					-->
+					</form>
+				</td></tr>
+			</table>
+    </div>
+    
+		<div metal:define-macro="date_selector"
+		tal:define="isDict python:hasattr(date, 'keys');
+		year  python:str(isDict and date['year'] or date.year()) ;
+		month python:str(isDict and date['month'] or date.month()).zfill(2) ;
+		day python:str(isDict and date['day'] or date.day()).zfill(2) ;
+		hour python:str(isDict and date['hour'] or date.hour()).zfill(2) ;
+		minute python:str(isDict and date['minute'] or date.minute()).zfill(2);
+		defaultDate defaultDate|nothing"
+		i18n:domain="plinn"
+		tal:omit-tag="">
+		<div  tal:condition="defaultDate" tal:omit-tag="">
+  		<label>
+  	    <input type="checkbox" id="effective_date_cb" tal:attributes="id string:${dateName}_cb" />
+  	    <span tal:replace="defaultDateLabel|nothing">default</span>
+      </label><br />
+    </div>
+    <div tal:attributes="id string:${dateName}_fields">
+			<input type="hidden" tal:attributes="id dateName" /><span i18n:translate="" tal:omit-tag=""
+			><span i18n:name="month"
+			><input type="text" size="2" tal:attributes="id string:${dateName}_month; name string:${dateName}.month:record; value month"
+			/></span>&nbsp;/&nbsp;<span i18n:name="day"
+			><input type="text" size="2" tal:attributes="id string:${dateName}_day; name string:${dateName}.day:record; value day"
+			/></span>&nbsp;/&nbsp;<span i18n:name="year"
+			><input type="text" size="4" tal:attributes="id string:${dateName}_year; name string:${dateName}.year:record; value year"
+			/></span>&nbsp;&nbsp;<span i18n:name="hour"
+			><input type="text" size="2" tal:attributes="id string:${dateName}_hour; name string:${dateName}.hour:record; value hour"
+			/></span>&nbsp;:&nbsp;<span i18n:name="minute"
+			><input type="text" size="2" tal:attributes="id string:${dateName}_minute; name string:${dateName}.minute:record; value minute"
+			/></span></span>
+			<input type="button" value="..." tal:attributes="id string:show_${dateName}_cal" /><br />
+		<script type="text/javascript" tal:condition="not:defaultDate"
+tal:content="structure python:'''
+		// <!--\n
+		  new MetadataDateManager('%s');\n
+		// -->''' % dateName">
+		</script>
+		<script type="text/javascript" tal:condition="defaultDate"
+tal:content="structure python:'''
+		// <!--\n
+		  new MetadataDateManager('%s', new Date('%s'));\n
+		// -->''' % (dateName, defaultDate)">
+		</script>
+		</div>
+		</div>
+		
+    <table metal:define-macro="news_box"
+      class="news_box" cellspacing="0"
+      tal:define="ctool python:modules['Products.CMFCore.utils'].getToolByName(here, 'portal_catalog');
+                  news python:ctool(portal_type='News Item'
+                                  , sort_on='Date'
+                                  , sort_order='reverse'
+                                  , review_state='published')[:5]"
+      tal:condition="news"
+      i18n:domain="plinn">
+      <tr>
+        <th i18n:translate="">News</th>
+      </tr>
+      <tr tal:repeat="n news">
+        <td tal:define="oddrow repeat/n/odd" tal:attributes="class python:oddrow and 'odd' or 'even'">
+          <a tal:attributes="href n/getURL ; title n/Description">
+            <img border="0" alt="News Item" tal:attributes="src n/getIcon" i18n:attributes="alt" />
+            <span tal:replace="n/Title|n/getId"></span>
+            <div tal:content="python:DateTime(n.Date).strftime(locale_date_fmt)"></div>
+          </a>
+        </td>
+      </tr>
+    </table>
+    
+    
+    <div metal:define-macro="debug" tal:replace="nothing">
+    </div>
+  </body>
+
+</html>
diff --git a/skins/generic/wysiwyg_support.pt b/skins/generic/wysiwyg_support.pt
new file mode 100644
index 0000000..1497e61
--- /dev/null
+++ b/skins/generic/wysiwyg_support.pt
@@ -0,0 +1,129 @@
+<html i18n:domain="plinn">
+
+<div metal:define-macro="wysiwygEditorBox"
+		 tal:define="editor editor|nothing;
+								 editor python: editor or here.portal_membership.getAuthenticatedMember().getProperty('wysiwyg_editor');"
+		 tal:omit-tag="">
+
+	<div tal:condition="python:editor=='Epoz'" tal:omit-tag="">
+    <script type="text/javascript" tal:attributes="src python:'%s/%s?charset=%s' % (portal_url, 'epoz_multilingual.js', here.default_charset)"></script>
+    <script type="text/javascript" tal:attributes="src here/vcXMLRPC.js/absolute_url"></script>
+    <script type="text/javascript" tal:attributes="src here/epoz_script_main.js/absolute_url"></script>
+    <script type="text/javascript" tal:attributes="src here/epoz_redirect.js/absolute_url"></script>
+    <script type="text/javascript" tal:attributes="src here/epoz_plinn.js/absolute_url"></script>
+		<script type="text/javascript">
+		// <!--
+			_resetEpoz();
+		// -->
+		</script>
+		<div tal:define="pss modules/Products/PythonScripts/standard;
+										 text_format python: getattr(here,'text_format','html');
+										 is_stx python:text_format=='structured-text';
+										 is_ptx python:text_format=='plain';                    
+										 base_props here/base_properties;
+										 defaultStyle string:width: 99%;; height: 450px;; margin-top: 2px;; border: 1px solid #8cacbb;;;
+										 style style|defaultStyle;
+										 data python:(is_stx and pss.structured_text(inputvalue)) or (is_ptx and pss.newline_to_br(inputvalue)) or inputvalue"
+				 tal:omit-tag="">
+			<div id="EpozToolbar" tal:attributes="id nothing" style="display:none">
+				<div metal:define-macro="epoz_toolbox" i18n:domain="epoz" class="EpozToolbar">
+					<select id="formatblock" onchange="SelectFormat(this)" style="margin-bottom: 2px ; display:block">
+						<option value="" i18n:translate="">Normal</option>
+						<option value="<p>" i18n:translate="">Paragraph</option>
+						<option value="<h1>" i18n:translate="">Heading1</option>
+						<option value="<h2>" i18n:translate="">Heading2</option>
+						<option value="<h3>" i18n:translate="">Heading3</option>
+						<option value="<h4>" i18n:translate="">Heading4</option>
+						<option value="<h5>" i18n:translate="">Heading5</option>
+						<option value="<h6>" i18n:translate="">Heading6</option>
+						<option value="<pre>" i18n:translate="">Formatted</option>
+					</select>
+					<img  tal:attributes="src here/epoz_button_bold.gif/absolute_url" width="23" height="22" alt="Bold" title="Bold" onclick="FormatText('bold', '');" i18n:attributes="alt ; title"
+				/><img  tal:attributes="src here/epoz_button_italic.gif/absolute_url" width="23" height="22" alt="Italic" title="Italic" onclick="FormatText('italic', '');" i18n:attributes="alt ; title"
+				/><img  tal:attributes="src here/epoz_button_underline.gif/absolute_url" width="23" height="22" alt="Underline" title="Underline" onclick="FormatText('underline', '');" i18n:attributes="alt ; title"
+				/><img  tal:attributes="src here/epoz_button_strikethrough.gif/absolute_url" width="23" height="22" alt="Strikethrough" title="Strikethrough" onclick="FormatText('strikethrough', '');" i18n:attributes="alt ; title"
+				/>&nbsp;<img  tal:attributes="src here/epoz_button_subscript.gif/absolute_url" width="23" height="22" alt="Subscript" title="Subscript" onclick="FormatText('subscript', '');" i18n:attributes="alt ; title"
+				/><img  tal:attributes="src here/epoz_button_superscript.gif/absolute_url" width="23" height="22" alt="Superscript" title="Superscript" onclick="FormatText('superscript', '');" i18n:attributes="alt ; title"
+				/>&nbsp;<img  tal:attributes="src here/epoz_button_unformat.gif/absolute_url" width="23" height="22" alt="RemoveFormat" title="RemoveFormat" onclick="FormatText('removeformat', '');" i18n:attributes="alt ; title"
+				/>&nbsp;<img  tal:attributes="src here/epoz_button_textcolor.gif/absolute_url" width="23" height="22" alt="TextColor" title="TextColor" onclick="SetTextColor();" i18n:attributes="alt ; title"
+				/><img  tal:attributes="src here/epoz_button_bgcolor.gif/absolute_url" width="23" height="22" alt="BackColor" title="BackColor" onclick="SetBackColor();" i18n:attributes="alt ; title"
+				/>&nbsp;<img  tal:attributes="src here/epoz_button_left_just.gif/absolute_url" width="23" height="22" alt="AlignLeft" title="AlignLeft" onclick="FormatText('justifyleft', '');" i18n:attributes="alt ; title"
+				/><img  tal:attributes="src here/epoz_button_centre.gif/absolute_url" width="23" height="22" alt="Center" title="Center" onclick="FormatText('justifycenter', '');" i18n:attributes="alt ; title"
+				/><img  tal:attributes="src here/epoz_button_right_just.gif/absolute_url" width="23" height="22" alt="AlignRight" title="AlignRight" onclick="FormatText('justifyright', '');" i18n:attributes="alt ; title"
+				/>&nbsp;<img  tal:attributes="src here/epoz_button_numbered_list.gif/absolute_url" width="23" height="22" alt="OrderedList" title="OrderedList" onclick="FormatText('insertorderedlist', '');" i18n:attributes="alt ; title"
+				/><img  tal:attributes="src here/epoz_button_list.gif/absolute_url" width="23" height="22" alt="UnorderedList" title="UnorderedList" onclick="FormatText('insertunorderedlist', '');" i18n:attributes="alt ; title"
+				/><img  tal:attributes="src here/epoz_button_outdent.gif/absolute_url" width="23" height="22" alt="Outdent" title="Outdent" onclick="FormatText('outdent', '');" i18n:attributes="alt ; title"
+				/><img  tal:attributes="src here/epoz_button_indent.gif/absolute_url" width="23" height="22" alt="Indent" title="Indent" onclick="FormatText('indent', '');" i18n:attributes="alt ; title"
+				/>&nbsp;<img  tal:attributes="src here/epoz_button_hyperlink.gif/absolute_url" width="23" height="22" alt="InsertLink" title="InsertLink" onclick="CreateLink();" i18n:attributes="alt ; title"
+				/><img  tal:attributes="src here/epoz_button_anchor.gif/absolute_url" width="23" height="22" alt="InsertAnchor" title="InsertAnchor" onclick="CreateAnchor();" i18n:attributes="alt ; title"
+				/><img  tal:attributes="src here/epoz_button_image.gif/absolute_url" width="23" height="22" alt="InsertImage" title="InsertImage" onclick="CreateImage();" i18n:attributes="alt ; title"
+				/><img  tal:attributes="src here/epoz_button_hr.gif/absolute_url" width="23" height="22" alt="InsertRule" title="InsertRule" onclick="FormatText('inserthorizontalrule', '');" i18n:attributes="alt ; title"
+				/><img  tal:attributes="src here/epoz_button_table.gif/absolute_url" width="23" height="22" alt="InsertTable" title="InsertTable" i18n:attributes="alt ; title" onclick="window.open('epoz_script_table.html','EpozTable','toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=220,height=220')"
+				/>&nbsp;<img  tal:attributes="src here/epoz_button_undo.gif/absolute_url" width="23" height="22" alt="Undo" title="Undo" onclick="FormatText('undo', '');" i18n:attributes="alt ; title"
+				/><img  tal:attributes="src here/epoz_button_redo.gif/absolute_url" width="23" height="22" alt="Redo" title="Redo" onclick="FormatText('redo', '');" i18n:attributes="alt ; title"
+				/>
+				</div>
+	
+				<iframe frameborder="0" onload="initEpozWidget(this);"
+							  tal:attributes="src python:portal_url+ '/epoz_blank_iframe.html?charset=utf-8&css=zpt_stylesheet.css&customcss=plinn_style.css&pageurl=' + here.absolute_url(); style style">
+				</iframe>
+
+			</div><textarea  tal:attributes="id inputname ; name inputname ; style string:display: none;; $style" tal:content="data">
+			</textarea><div style="margin: 0px ; display:none"><input style="margin: 0px; width: 10px; height: 10px;" type="checkbox" onclick="redirectAndSwitchViewMode(this);" />&nbsp;<span style="font-size: 10px;">HTML</span></div>
+			<input type="hidden" name="onBeforeSubmit" value="SyncEpoz" />
+			<noscript>
+				<textarea tal:attributes="name inputname ; style style" tal:content="data"></textarea>
+			</noscript>
+		</div>
+  </div><!-- End wysiwyg code -->
+
+  <div tal:condition="python:editor in ['None', 'FCK']" tal:omit-tag="">
+	  <textarea cols="80" rows="25"
+	            tal:content="inputvalue"
+	            tal:define="defaultStyle string:width: 99%;; height: 450px;; margin-top: 2px;; border: 1px solid #8cacbb;;;
+										 			style style|defaultStyle;"
+	            tal:attributes="name inputname;
+															id inputname;
+	                            rows rows|default;
+	                            cols cols|default;
+	                            style style"></textarea>
+		<div tal:condition="python:editor=='FCK'">
+			<script type="text/javascript" tal:attributes="src here/fckeditor.js/absolute_url"></script>
+	    <script type="text/javascript"
+							tal:replace="structure python:here.fck_inline_script(BasePath=here.absolute_url() + '/',
+																																	 CustomConfigurationsPath=portal_url + '/fckconfigPlinn.js',
+																																	 fckId=inputname,
+																																	 contentPath=here.absolute_url(relative=1))"></script>
+		</div>
+	</div>
+</div>
+
+	<div metal:define-macro="textFormatSelector"
+			 tal:define="wysiwyg python: here.portal_membership.getAuthenticatedMember().getProperty('wysiwyg_editor')!='None';
+			 						 text_format python: getattr(here,'text_format','html')"
+			 tal:omit-tag="" i18n:domain="plinn">
+		<input type="hidden" name="text_format" value="html" tal:condition="wysiwyg" />
+		
+		<div tal:condition="not: wysiwyg">
+			<label i18n:translate="">Format</label><br/>
+			<label>
+				<input type="radio" name="text_format" value="structured-text"
+							 tal:attributes="checked python:test(text_format=='structured-text', 1, None);" />
+				<span i18n:translate="" tal:omit-tag="">Structured text</span>
+			</label><br />
+		
+			<label>
+				<input type="radio" name="text_format" value="html"
+							 tal:attributes="checked python:test(text_format=='html', 1, None)" />
+				<span i18n:translate="" tal:omit-tag="">HTML</span>
+			</label><br />
+		
+			<label>
+				<input type="radio" name="text_format" value="plain"
+							 tal:attributes="checked python:test(text_format=='plain', 1, None);" />
+				<span i18n:translate="" tal:omit-tag="">Plain text</span>
+			</label>
+		</div>
+	</div>
+
+</html>
\ No newline at end of file
diff --git a/skins/generic/zpt_stylesheet_print.css.dtml b/skins/generic/zpt_stylesheet_print.css.dtml
new file mode 100644
index 0000000..ed7edbd
--- /dev/null
+++ b/skins/generic/zpt_stylesheet_print.css.dtml
@@ -0,0 +1,507 @@
+/*
+
+Date de creation : 2 juin 2004
+
+E.N.S.M.P. - C.R.I. - Gilles Rosenbaum
+
+*********************************************
+Version pour impression de zpt_stylesheet.css
+*********************************************
+
+*/
+
+/* <dtml-with base_properties> */
+
+body {  
+  /* background-color: #ffd; Printing version */
+  background-color : white;
+  color: black;
+  font-family: &dtml-fontFamily;;
+  font-size : &dtml-fontBaseSize;;
+  margin: 0 2pt }
+
+h1, h2, h3, h4, h5, h6 {
+  font-family: &dtml-headingFontFamily;;
+}
+
+h1 { 
+  font-size:120%;
+}
+
+h2 { 
+  font-size:110%;
+}
+
+h3 { 
+  font-size:100%;
+}
+
+h4 {
+  font-style: italic;
+}
+
+a:link,
+a:visited,
+a:active { 
+  color: &dtml-linkColor;;
+  text-decoration: none;
+}
+
+a:hover {
+  color: #00f;
+  text-decoration: none;
+}
+
+table.ContentsList tr td {  }
+
+table.ContentsList tr td img {
+  border: 0;
+}
+
+table.FormLayout {
+    width: 99% }
+  
+table.FormLayout dl.FieldHelp dd {
+  font-size : 90% ;
+  font-style : italic}
+  
+table.FormLayout td.ListDefinition {
+  font-style: italic }
+  
+table.FormLayout td.ListName {
+  background-color: &dtml-tabsBackgroundColor;;
+  color: &dtml-globalFontColor;;
+  font-weight: bold;
+  vertical-align: middle;
+  padding-left: 2px;
+}
+  
+table.FormLayout th {
+  font-weight: bold;
+  text-align: right }
+  
+table.FormLayout tr {
+    vertical-align: top }
+    
+table.FormLayout tr td.TextField {
+  vertical-align: top }
+  
+table.FormLayout tr th.TextField {
+    vertical-align: top }
+    
+table.NewsItems {
+  border: 0 }
+
+table.SearchResults {
+  width: auto }
+
+table.SearchResults tr td img {
+  border: 0 }
+
+table.SearchResults tr th {
+  text-align: left }
+
+table.Wizard {
+  width: auto }
+
+table.Wizard tr {
+  vertical-align: top }
+
+table.Wizard tr th {
+  text-align: right }
+
+td {
+  vertical-align: top }
+
+td.NewsBorder {
+  background-color: #369 }
+
+td.NewsByLine {
+  color: #369;
+  background-color: #ccc;
+  text-align: left;
+  vertical-align: top }
+
+td.NewsListing {
+  color: #fff;
+  font-weight: bold;
+  background-color: #369 }
+
+td.NewsTitle {
+  color: #fff;
+  font-weight: bold;
+  background-color: #369;
+  text-align: center }
+
+
+/* Top bar */
+
+#Masthead {
+  background-color: &dtml-topbarBackgroundColor;;
+  width: 100%;
+  visibility : hidden;
+}
+
+#Masthead td {
+  vertical-align: middle;
+}
+
+#PortalLogo  {
+  vertical-align: middle;
+}
+
+#PortalLogo img {
+  border: none;
+}
+
+
+#PortalTitle {
+  font-family: &dtml-headingFontFamily;;
+  font-size: 120%;
+  font-weight: bold;
+}
+
+#NavBar { 
+  font-family: &dtml-headingFontFamily;;
+  font-size: &dtml-fontSmallSize;;
+  font-weight: bold;
+  text-align: right
+}
+
+#NavBar a {
+  color: &dtml-tabsFontColor;;
+}
+
+
+/* User menu bar */
+
+#MemberActionsBox {
+  width: 100%;
+  background-color: &dtml-globalBackgroundColor;;
+  color: &dtml-globalFontColor;;
+  font-weight: bold ;
+  font-size: &dtml-fontSmallSize;;
+  padding : 0 2px ;
+  visibility : hidden;
+}
+
+.ActionTitle {
+  color: &dtml-globalFontColor;
+}
+
+.ActionLink a:link,
+.ActionLink a:visited,
+.ActionLink a:active { 
+  color: white;
+  text-decoration: none 
+}
+
+.ActionLink a:hover { color: #9cf }
+
+
+/* Breadcrumbs + Search form */  
+#Breadcrumbs {
+  background: white;
+  font-size: &dtml-fontSmallSize;;
+  padding: 0 2px 1px 2px;
+  visibility : hidden;
+}
+
+/* 
+ Main column
+ */
+
+   
+/* Status messages */
+#DesktopStatusBar  {
+  background-color: &dtml-messageBackgroundColor;;
+  border: 1px solid &dtml-messageBorderColor;;
+  color: &dtml-fontColor;;
+  font-size: &dtml-fontSmallSize;;
+  font-weight: bold; 
+  margin: 0.5em 0em 1.5em 0em;
+  padding: 0.5em 1em;
+  vertical-align: middle;
+  visibility : hidden;
+}
+
+#DesktopStatusBar img {
+  vertical-align: middle; 
+  visibility : hidden;
+}
+
+/* Content tabs */
+
+/* creer pour l'impression */
+#ContentTabs {
+  visibility : hidden;
+}
+/* \creer pour l'impression */
+
+.contentTabs {
+  border-collapse: collapse;
+  white-space: nowrap;
+  padding-left: 1em;
+  margin: 0;
+}
+
+.contentTabs li, .additionalTabs li { 
+  display: inline;
+  font-size: &dtml-fontSmallSize;;
+}
+
+.contentTabs a {
+  background-color: &dtml-tabsBackgroundColor;;
+  color: &dtml-globalFontColor;;
+  /*border: &dtml-tabsBorderWidth; solid &dtml-tabsBorderColor;;*/
+  margin-right: 0.5em;
+  padding: 0 1em;
+}
+
+.contentTabs .selected a {
+  background-color: &dtml-tabsBorderColor;;
+  color: &dtml-tabsFontColor;;
+  border-top : 4px solid &dtml-tabsBorderColor;;
+}
+
+.contentTabs a:hover {
+  background-color: &dtml-tabsBorderColor;;
+  color: &dtml-tabsFontColor;;
+}
+
+.additionalTabs {
+  padding-right : 2em ;
+  padding-top : 2px ;
+  text-align : right ;
+  margin : 0 ;
+  background-color: &dtml-tabsBorderColor;;  
+}
+
+.additionalTabs a {
+  color: &dtml-tabsFontColor;;
+  padding: 0 1em;
+}
+
+#mainCell {
+  padding: 0.5em 1em;
+  width : 100%;
+  height : 100%;
+}
+
+#ForematterCell {
+  background: &dtml-contentBackgroundColor;;
+  padding-bottom : 1px ;
+  /* border: &dtml-tabsBorderWidth; solid &dtml-tabsBorderColor;; Printing version */
+  border : &dtml-tabsBorderWidth; solid black;
+}
+
+/* creer pour l'impression */
+#leftCell{
+  visibility : hidden;
+  position : absolute;
+}
+/* \creer pour l'impression */
+
+/* creer pour l'impression */
+#rightCell{
+  visibility : hidden;
+  position : absolute;
+}
+/* \creer pour l'impression */
+
+/* Header */
+.header {
+  background-color: &dtml-tabsBorderColor;;
+  border-bottom: &dtml-tabsBorderWidth; solid &dtml-tabsBorderColor;;
+  font-family: &dtml-headingFontFamily;;
+  border : 1px solid black; /* printing version */
+}
+
+/* Title */
+#DesktopTitle {
+  background: &dtml-tabsBackgroundColor;; /* Printing version */
+  /* background : black; */
+  font-size: 120%;
+  font-weight: bold;
+  /* color: &dtml-globalFontColor;; Printing version */
+  color : black;
+  margin : 0 ;
+  padding: 2px;
+  vertical-align : bottom ;
+}
+
+#DesktopTitle img {
+  vertical-align:middle;
+  padding-right: 2px;
+}
+
+/* Description */
+#DesktopDescription {
+  font-size: &dtml-fontSmallSize;;
+  color: &dtml-tabsFontColor;;
+}
+
+/* Content Byline */
+#ContentByLine {
+  background-color: &dtml-backgroundColor;;
+  font-size: &dtml-fontSmallSize;;
+  text-align: right;
+  padding: 0 1em;
+}
+
+#ContentByLine a {
+
+}
+
+/* Main content */
+#Desktop {
+  padding: 1em;
+  text-align: justify ;
+}
+
+/* Search form */
+
+#search_form {
+  font-size: &dtml-fontSmallSize;;
+}
+ 
+#Footer {
+  background-color : &dtml-globalBackgroundColor;;
+  color: &dtml-globalFontColor;;
+  font-size: &dtml-fontSmallSize;;
+  text-align: center;
+  padding : 1px 2px ;
+  visibility : hidden;
+}
+
+/* Folder contents */
+
+.listing {
+  width: 100%;
+  font-size: &dtml-fontSmallSize;;
+}
+
+.listing th { 
+  background-color: &dtml-tabsBorderColor;;
+  text-align: left;
+  padding: 2px 0 1px 4px;
+}
+
+.listing th a { 
+  color: &dtml-tabsFontColor;;
+}
+
+.listing .odd {
+  background-color: &dtml-oddRowBackgroundColor;;
+}
+.listing .even {
+  background-color: &dtml-evenRowBackgroundColor;;
+} 
+
+/* Batched navigation */
+
+.listingBar {
+  background-color: &dtml-tabsBackgroundColor;;
+  font-size: &dtml-fontSmallSize;;
+  border: 1px solid &dtml-tabsBorderColor;;
+  padding: 0em 1em;
+  margin:1em 0;
+  text-align: center;
+  vertical-align: top;
+}
+
+.listingBar span.previous {
+    text-align: left;
+    float: left;
+}
+
+.listingBar span.next {
+    text-align: right;
+    float: right;
+} 
+
+/* Recent news */
+
+.newsItem {
+  background-color: &dtml-contentBackgroundColor;;
+  margin: 1em 0;
+}
+
+.newsTitle {
+  background-color: &dtml-tabsBackgroundColor;;
+  color: &dtml-globalFontColor;;
+  font-weight: bold;
+  font-size: 120%;
+  padding: 0 2px;
+  border: &dtml-tabsBorderWidth; solid &dtml-tabsBorderColor;;
+}
+
+.newsTitle a {
+  color: &dtml-globalFontColor;;
+}
+
+.newsDescription {
+  font-family: &dtml-headingFontFamily;;
+  margin: 0 0.5em;
+}
+
+.newsContent {
+  padding: 0 1em 1em 1em;
+}
+
+.newsContent ul,
+.newsContent li {
+    display: block; 
+    list-style: none;
+    list-style-image: none;
+    margin: 0;
+    padding: 0;
+}
+
+.newsAbout {
+    display: block;
+    color: &dtml-discreetColor;;
+    font-size: &dtml-fontSmallSize;;
+    list-style: none;
+    list-style-image: none;
+    float: right;
+    text-align: right;
+}
+
+.newsAbout li {
+    display: inline;
+}
+
+.newsFooter {
+    font-size: &dtml-fontSmallSize;;    
+}
+
+.newsFooter li {
+    display: inline;
+    margin: 0 1em 0 0;
+}
+
+<dtml-comment>
+
+/* Not used */
+
+.ObjectStatus {
+  font-style: italic }
+
+.ContextActionsRow {
+  color: white;
+  background-color: #aaa }
+
+#ContextActionsBox {
+  background-color: #aaa;
+  padding: 0;
+  border: dotted 2px #ffa500 }
+
+#DiscussionAbove {
+  font-style: italic;
+  margin: 8pt 8pt 8pt 16pt;
+  border: dashed 2px #f00 }
+
+</dtml-comment>
+
+/* </dtml-with> */
diff --git a/skins/generic/zpt_stylesheet_print.css.dtml.metadata b/skins/generic/zpt_stylesheet_print.css.dtml.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/generic/zpt_stylesheet_print.css.dtml.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/images/GRUFGroups.gif b/skins/images/GRUFGroups.gif
new file mode 100644
index 0000000..6a7fb9f
Binary files /dev/null and b/skins/images/GRUFGroups.gif differ
diff --git a/skins/images/GRUFGroups.gif.metadata b/skins/images/GRUFGroups.gif.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/images/GRUFGroups.gif.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/images/Zope_logo.gif b/skins/images/Zope_logo.gif
new file mode 100644
index 0000000..a44857d
Binary files /dev/null and b/skins/images/Zope_logo.gif differ
diff --git a/skins/images/Zope_logo.gif.metadata b/skins/images/Zope_logo.gif.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/images/Zope_logo.gif.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/images/add.gif b/skins/images/add.gif
new file mode 100644
index 0000000..c6811be
Binary files /dev/null and b/skins/images/add.gif differ
diff --git a/skins/images/add.png b/skins/images/add.png
new file mode 100644
index 0000000..b69c397
Binary files /dev/null and b/skins/images/add.png differ
diff --git a/skins/images/add.png.metadata b/skins/images/add.png.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/images/add.png.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/images/application.png b/skins/images/application.png
new file mode 100644
index 0000000..92871f3
Binary files /dev/null and b/skins/images/application.png differ
diff --git a/skins/images/application.png.metadata b/skins/images/application.png.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/images/application.png.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/images/application.thumb.gif b/skins/images/application.thumb.gif
new file mode 100644
index 0000000..a416b86
Binary files /dev/null and b/skins/images/application.thumb.gif differ
diff --git a/skins/images/application.thumb.gif.metadata b/skins/images/application.thumb.gif.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/images/application.thumb.gif.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/images/arrowDown.gif b/skins/images/arrowDown.gif
new file mode 100644
index 0000000..47cb6a3
Binary files /dev/null and b/skins/images/arrowDown.gif differ
diff --git a/skins/images/arrowDown.gif.metadata b/skins/images/arrowDown.gif.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/images/arrowDown.gif.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/images/arrowUp.gif b/skins/images/arrowUp.gif
new file mode 100644
index 0000000..a600a05
Binary files /dev/null and b/skins/images/arrowUp.gif differ
diff --git a/skins/images/arrowUp.gif.metadata b/skins/images/arrowUp.gif.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/images/arrowUp.gif.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/images/arrow_l.gif b/skins/images/arrow_l.gif
new file mode 100644
index 0000000..abe99c0
Binary files /dev/null and b/skins/images/arrow_l.gif differ
diff --git a/skins/images/arrow_l.gif.metadata b/skins/images/arrow_l.gif.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/images/arrow_l.gif.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/images/arrow_r.gif b/skins/images/arrow_r.gif
new file mode 100644
index 0000000..83058c4
Binary files /dev/null and b/skins/images/arrow_r.gif differ
diff --git a/skins/images/arrow_r.gif.metadata b/skins/images/arrow_r.gif.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/images/arrow_r.gif.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/images/calendar_icon.gif b/skins/images/calendar_icon.gif
new file mode 100644
index 0000000..33c729a
Binary files /dev/null and b/skins/images/calendar_icon.gif differ
diff --git a/skins/images/calendar_icon.gif.metadata b/skins/images/calendar_icon.gif.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/images/calendar_icon.gif.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/images/cancel.gif b/skins/images/cancel.gif
new file mode 100644
index 0000000..bb49ce1
Binary files /dev/null and b/skins/images/cancel.gif differ
diff --git a/skins/images/cancel.gif.metadata b/skins/images/cancel.gif.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/images/cancel.gif.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/images/closeFormArrow.gif b/skins/images/closeFormArrow.gif
new file mode 100644
index 0000000..b2d0bb7
Binary files /dev/null and b/skins/images/closeFormArrow.gif differ
diff --git a/skins/images/closeFormArrow.gif.metadata b/skins/images/closeFormArrow.gif.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/images/closeFormArrow.gif.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/images/collapsePalette.gif b/skins/images/collapsePalette.gif
new file mode 100644
index 0000000..b2d0bb7
Binary files /dev/null and b/skins/images/collapsePalette.gif differ
diff --git a/skins/images/collapsePalette.gif.metadata b/skins/images/collapsePalette.gif.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/images/collapsePalette.gif.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/images/collapsedPalette.gif b/skins/images/collapsedPalette.gif
new file mode 100644
index 0000000..80c9409
Binary files /dev/null and b/skins/images/collapsedPalette.gif differ
diff --git a/skins/images/collapsedPalette.gif.metadata b/skins/images/collapsedPalette.gif.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/images/collapsedPalette.gif.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/images/d_arrowDown.gif b/skins/images/d_arrowDown.gif
new file mode 100644
index 0000000..8f3246d
Binary files /dev/null and b/skins/images/d_arrowDown.gif differ
diff --git a/skins/images/d_arrowDown.gif.metadata b/skins/images/d_arrowDown.gif.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/images/d_arrowDown.gif.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/images/d_arrowUp.gif b/skins/images/d_arrowUp.gif
new file mode 100644
index 0000000..9b8ece4
Binary files /dev/null and b/skins/images/d_arrowUp.gif differ
diff --git a/skins/images/d_arrowUp.gif.metadata b/skins/images/d_arrowUp.gif.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/images/d_arrowUp.gif.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/images/document_icon.gif b/skins/images/document_icon.gif
new file mode 100644
index 0000000..028e985
Binary files /dev/null and b/skins/images/document_icon.gif differ
diff --git a/skins/images/document_icon.gif.metadata b/skins/images/document_icon.gif.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/images/document_icon.gif.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/images/expandPalette.gif b/skins/images/expandPalette.gif
new file mode 100644
index 0000000..a973557
Binary files /dev/null and b/skins/images/expandPalette.gif differ
diff --git a/skins/images/expandPalette.gif.metadata b/skins/images/expandPalette.gif.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/images/expandPalette.gif.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/images/expandedPalette.gif b/skins/images/expandedPalette.gif
new file mode 100644
index 0000000..259a187
Binary files /dev/null and b/skins/images/expandedPalette.gif differ
diff --git a/skins/images/expandedPalette.gif.metadata b/skins/images/expandedPalette.gif.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/images/expandedPalette.gif.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/images/eye_down.gif b/skins/images/eye_down.gif
new file mode 100644
index 0000000..bdb1004
Binary files /dev/null and b/skins/images/eye_down.gif differ
diff --git a/skins/images/eye_down.gif.metadata b/skins/images/eye_down.gif.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/images/eye_down.gif.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/images/eye_up.gif b/skins/images/eye_up.gif
new file mode 100644
index 0000000..1203d7d
Binary files /dev/null and b/skins/images/eye_up.gif differ
diff --git a/skins/images/eye_up.gif.metadata b/skins/images/eye_up.gif.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/images/eye_up.gif.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/images/favicon.ico b/skins/images/favicon.ico
new file mode 100644
index 0000000..5b3cb85
Binary files /dev/null and b/skins/images/favicon.ico differ
diff --git a/skins/images/favicon.ico.metadata b/skins/images/favicon.ico.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/images/favicon.ico.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/images/go.gif b/skins/images/go.gif
new file mode 100644
index 0000000..c0eb69c
Binary files /dev/null and b/skins/images/go.gif differ
diff --git a/skins/images/go.gif.metadata b/skins/images/go.gif.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/images/go.gif.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/images/info.gif b/skins/images/info.gif
new file mode 100644
index 0000000..668a5e0
Binary files /dev/null and b/skins/images/info.gif differ
diff --git a/skins/images/info.gif.metadata b/skins/images/info.gif.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/images/info.gif.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/images/initialOpenFormArrow.gif b/skins/images/initialOpenFormArrow.gif
new file mode 100644
index 0000000..80c9409
Binary files /dev/null and b/skins/images/initialOpenFormArrow.gif differ
diff --git a/skins/images/initialOpenFormArrow.gif.metadata b/skins/images/initialOpenFormArrow.gif.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/images/initialOpenFormArrow.gif.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/images/link_icon.thumb.gif b/skins/images/link_icon.thumb.gif
new file mode 100644
index 0000000..0bdc821
Binary files /dev/null and b/skins/images/link_icon.thumb.gif differ
diff --git a/skins/images/link_icon.thumb.gif.metadata b/skins/images/link_icon.thumb.gif.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/images/link_icon.thumb.gif.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/images/list_bullet.gif b/skins/images/list_bullet.gif
new file mode 100644
index 0000000..f2b33c7
Binary files /dev/null and b/skins/images/list_bullet.gif differ
diff --git a/skins/images/list_bullet.gif.metadata b/skins/images/list_bullet.gif.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/images/list_bullet.gif.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/images/loading_progress.gif b/skins/images/loading_progress.gif
new file mode 100644
index 0000000..345f6b8
Binary files /dev/null and b/skins/images/loading_progress.gif differ
diff --git a/skins/images/loading_progress.gif.metadata b/skins/images/loading_progress.gif.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/images/loading_progress.gif.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/images/lock.gif b/skins/images/lock.gif
new file mode 100644
index 0000000..5a43f28
Binary files /dev/null and b/skins/images/lock.gif differ
diff --git a/skins/images/lock.gif.metadata b/skins/images/lock.gif.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/images/lock.gif.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/images/logo.gif b/skins/images/logo.gif
new file mode 100644
index 0000000..a8893de
Binary files /dev/null and b/skins/images/logo.gif differ
diff --git a/skins/images/logo.gif.metadata b/skins/images/logo.gif.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/images/logo.gif.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/images/logo_small.gif b/skins/images/logo_small.gif
new file mode 100644
index 0000000..b5d8b88
Binary files /dev/null and b/skins/images/logo_small.gif differ
diff --git a/skins/images/logo_small.gif.metadata b/skins/images/logo_small.gif.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/images/logo_small.gif.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/images/mi.gif b/skins/images/mi.gif
new file mode 100644
index 0000000..7aadd5e
Binary files /dev/null and b/skins/images/mi.gif differ
diff --git a/skins/images/mi.gif.metadata b/skins/images/mi.gif.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/images/mi.gif.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/images/mi_ani.gif b/skins/images/mi_ani.gif
new file mode 100644
index 0000000..34ae399
Binary files /dev/null and b/skins/images/mi_ani.gif differ
diff --git a/skins/images/mi_ani.gif.metadata b/skins/images/mi_ani.gif.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/images/mi_ani.gif.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/images/mi_dis.gif b/skins/images/mi_dis.gif
new file mode 100644
index 0000000..b6c5f19
Binary files /dev/null and b/skins/images/mi_dis.gif differ
diff --git a/skins/images/mi_dis.gif.metadata b/skins/images/mi_dis.gif.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/images/mi_dis.gif.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/images/new_event.gif b/skins/images/new_event.gif
new file mode 100644
index 0000000..ec7b93c
Binary files /dev/null and b/skins/images/new_event.gif differ
diff --git a/skins/images/new_event.gif.metadata b/skins/images/new_event.gif.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/images/new_event.gif.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/images/newsitem_icon.thumb.gif b/skins/images/newsitem_icon.thumb.gif
new file mode 100644
index 0000000..1c200be
Binary files /dev/null and b/skins/images/newsitem_icon.thumb.gif differ
diff --git a/skins/images/newsitem_icon.thumb.gif.metadata b/skins/images/newsitem_icon.thumb.gif.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/images/newsitem_icon.thumb.gif.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/images/openFormArrow.gif b/skins/images/openFormArrow.gif
new file mode 100644
index 0000000..a973557
Binary files /dev/null and b/skins/images/openFormArrow.gif differ
diff --git a/skins/images/openFormArrow.gif.metadata b/skins/images/openFormArrow.gif.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/images/openFormArrow.gif.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/images/pencil.gif b/skins/images/pencil.gif
new file mode 100644
index 0000000..431ad2c
Binary files /dev/null and b/skins/images/pencil.gif differ
diff --git a/skins/images/pencil.gif.metadata b/skins/images/pencil.gif.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/images/pencil.gif.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/images/pencil.png b/skins/images/pencil.png
new file mode 100755
index 0000000..0bfecd5
Binary files /dev/null and b/skins/images/pencil.png differ
diff --git a/skins/images/pencil.png.metadata b/skins/images/pencil.png.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/images/pencil.png.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/images/pl.gif b/skins/images/pl.gif
new file mode 100644
index 0000000..e6ce8b2
Binary files /dev/null and b/skins/images/pl.gif differ
diff --git a/skins/images/pl.gif.metadata b/skins/images/pl.gif.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/images/pl.gif.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/images/pl_ani.gif b/skins/images/pl_ani.gif
new file mode 100644
index 0000000..1f8c407
Binary files /dev/null and b/skins/images/pl_ani.gif differ
diff --git a/skins/images/pl_ani.gif.metadata b/skins/images/pl_ani.gif.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/images/pl_ani.gif.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/images/pl_blink.gif b/skins/images/pl_blink.gif
new file mode 100644
index 0000000..a4dfa85
Binary files /dev/null and b/skins/images/pl_blink.gif differ
diff --git a/skins/images/pl_blink.gif.metadata b/skins/images/pl_blink.gif.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/images/pl_blink.gif.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/images/pl_dis.gif b/skins/images/pl_dis.gif
new file mode 100644
index 0000000..3f3e416
Binary files /dev/null and b/skins/images/pl_dis.gif differ
diff --git a/skins/images/pl_dis.gif.metatada b/skins/images/pl_dis.gif.metatada
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/images/pl_dis.gif.metatada
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/images/plinn_icon.gif b/skins/images/plinn_icon.gif
new file mode 100644
index 0000000..8f8a97f
Binary files /dev/null and b/skins/images/plinn_icon.gif differ
diff --git a/skins/images/plinn_icon.gif.metadata b/skins/images/plinn_icon.gif.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/images/plinn_icon.gif.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/images/remove_event.gif b/skins/images/remove_event.gif
new file mode 100644
index 0000000..a5e18ea
Binary files /dev/null and b/skins/images/remove_event.gif differ
diff --git a/skins/images/remove_event.gif.metadata b/skins/images/remove_event.gif.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/images/remove_event.gif.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/images/rm.png b/skins/images/rm.png
new file mode 100644
index 0000000..23dcc85
Binary files /dev/null and b/skins/images/rm.png differ
diff --git a/skins/images/rm.png.metadata b/skins/images/rm.png.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/images/rm.png.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/images/rm_over.png b/skins/images/rm_over.png
new file mode 100644
index 0000000..c1e1b44
Binary files /dev/null and b/skins/images/rm_over.png differ
diff --git a/skins/images/rm_over.png.metadata b/skins/images/rm_over.png.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/images/rm_over.png.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/images/set_default_sorting.gif b/skins/images/set_default_sorting.gif
new file mode 100644
index 0000000..95321e2
Binary files /dev/null and b/skins/images/set_default_sorting.gif differ
diff --git a/skins/images/set_default_sorting.gif.metadata b/skins/images/set_default_sorting.gif.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/images/set_default_sorting.gif.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/images/text.gif b/skins/images/text.gif
new file mode 100644
index 0000000..de39dda
Binary files /dev/null and b/skins/images/text.gif differ
diff --git a/skins/images/text.gif.metatada b/skins/images/text.gif.metatada
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/images/text.gif.metatada
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/images/text.thumb.gif b/skins/images/text.thumb.gif
new file mode 100644
index 0000000..ac70c5c
Binary files /dev/null and b/skins/images/text.thumb.gif differ
diff --git a/skins/images/text.thumb.gif.metadata b/skins/images/text.thumb.gif.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/images/text.thumb.gif.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/images/validate.gif b/skins/images/validate.gif
new file mode 100644
index 0000000..8227aff
Binary files /dev/null and b/skins/images/validate.gif differ
diff --git a/skins/images/validate.gif.metadata b/skins/images/validate.gif.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/images/validate.gif.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/images/warning.gif b/skins/images/warning.gif
new file mode 100644
index 0000000..cb775e0
Binary files /dev/null and b/skins/images/warning.gif differ
diff --git a/skins/images/warning.gif.metadata b/skins/images/warning.gif.metadata
new file mode 100644
index 0000000..855fecc
--- /dev/null
+++ b/skins/images/warning.gif.metadata
@@ -0,0 +1,2 @@
+[default]
+cache=HTTPCache
diff --git a/skins/jscalendar/ChangeLog b/skins/jscalendar/ChangeLog
new file mode 100644
index 0000000..2d73e3a
--- /dev/null
+++ b/skins/jscalendar/ChangeLog
@@ -0,0 +1,500 @@
+2004-02-06  Mihai Bazon  <mishoo@localhost.localdomain>
+
+	* make-release.pl: ChangeLog included in the distribution (if found)
+
+	* calendar.js, doc/reference.tex, index.html: switched to version 0.9.6
+
+	* doc/Calendar.setup.tex, doc/reference.tex: updated documentation
+
+	* release-notes.html: updated release notes
+
+	* calendar.js: Fixed bug: Feb/29 and year change now keeps Feb in view
+
+	* calendar.js: fixed the "ESC" problem (call the close handler)
+
+	* calendar.js: fixed day of year range (1 to 366 instead of 0 to 365)
+
+	* calendar.js: fixed week number calculations
+
+	* doc/reference.tex: fixed (date input format)
+
+	* calendar.php: removed comment
+
+	* calendar-blue.css, calendar-blue2.css, calendar-brown.css, calendar-green.css, calendar-system.css, calendar-tas.css, calendar-win2k-1.css, calendar-win2k-2.css, calendar-win2k-cold-1.css, calendar-win2k-cold-2.css, calendar.js:
+	workaround for IE bug (you can't normally specify through CSS the style for
+	an element having two classes or more; we had to change a classname)
+
+	* calendar-blue.css, calendar-blue2.css, calendar-brown.css, calendar-green.css, calendar-system.css, calendar-tas.css, calendar-win2k-1.css, calendar-win2k-2.css, calendar-win2k-cold-1.css, calendar-win2k-cold-2.css:
+	smaller fonts on days that are in neighbor months
+
+2004-02-04  Mihai Bazon  <mishoo@localhost.localdomain>
+
+	* index.html: first demo shows the "showOtherMonths" capability
+
+	* calendar-setup.js: support new parameters in the calendar.
+	added: firstDay, showOthers, cache.
+
+	* calendar-blue.css, calendar-blue2.css, calendar-brown.css, calendar-green.css, calendar-system.css, calendar-win2k-1.css, calendar-win2k-2.css, calendar-win2k-cold-1.css, calendar-win2k-cold-2.css, calendar.js, lang/calendar-en.js, lang/calendar-ro.js:
+	new parameters: firstDayOfWeek, showsOtherMonths; removed mondayFirst.
+	This adds support for setting any day to be the first day of week (by just
+	clicking the day name in the display); also, if showsOtherMonths is enabled
+	then dates belonging to adjacent months that are in the current view will be
+	displayed and the calendar will have a fixed height.
+
+	all themes updated.
+
+	* test.php: test for calendar.php
+
+	* calendar.php: fixed bug (pass numeric values as numbers)
+
+2004-02-01  Mihai Bazon  <mishoo@localhost.localdomain>
+
+	* calendar.php: added PHP wrapper
+
+	* img.gif: icon updated
+
+	* TODO: updated TODO list
+
+2004-01-27  Mihai Bazon  <mishoo@localhost.localdomain>
+
+	* calendar.js:
+	Janusz Piwowarski sent over a patch for IE5 compatibility which is much more
+	elegant than the atrocities that I had wrote :-D  I'm gettin' old..  Thanks Janusz!
+
+	* lang/calendar-fi.js: updated
+
+2004-01-15  Mihai Bazon  <mishoo@localhost.localdomain>
+
+	* TODO: updated TODO list
+
+	* calendar-setup.js: default align changed to "Br"
+
+	* doc/reference.tex: changed default value for "align"
+
+	* calendar-setup.js: calling onchange event handler, if available
+
+	* calendar-setup.js: added "position" option
+
+	* simple-1.html: demonstrates "step" option
+
+	* calendar-setup.js: added "step" option
+
+	* calendar.js: added yearStep config parameter
+
+	* calendar.js:
+	fixed parseDate routine (the NaN bug which occurred when there was a space
+	after the date and no time)
+
+2004-01-14  Mihai Bazon  <mishoo@localhost.localdomain>
+
+	* lang/calendar-en.js: added "Time:"
+
+	* test-position.html: test for the new position algorithm
+
+	* index.html: do not destroy() the calendar
+	avoid bug in parseDate (%p must be separated by non-word characters)
+
+	* menuarrow2.gif: for calendar-blue2.css
+
+	* calendar-setup.js: honor "date" parameter if passed
+
+	* calendar.js: IE5 support is back
+	performance improvements in IE6 (mouseover combo boxes)
+	display "Time:" beside the clock area, if defined in the language file
+	new positioning algorithm (try to keep the calendar in page)
+	rewrote parseDate a little cleaner
+
+	* lang/calendar-el.js:
+	updated Greek translation (thanks Alexandros Pappas)
+
+2004-01-13  Mihai Bazon  <mishoo@localhost.localdomain>
+
+	* index.html: added style blue2, using utf-8 instead of iso-8859-2
+
+	* calendar.js: performance under IE (which sucks, by the way)
+
+	* doc/reference.tex: Sunny added to sponsor list
+
+	* doc/Calendar.setup.tex: documenting parameter 'electric'
+
+	* calendar-blue.css, calendar-blue2.css, calendar-brown.css, calendar-green.css, calendar-system.css, calendar-win2k-1.css, calendar-win2k-2.css, calendar-win2k-cold-1.css, calendar-win2k-cold-2.css:
+	fixed IE text size problems
+
+2004-01-08  Mihai Bazon  <mishoo@localhost.localdomain>
+
+	* lang/calendar-pl.js:
+	Polish translation updated to UTF-8 (thanks to Artur Filipiak)
+
+2004-01-07  Mihai Bazon  <mishoo@localhost.localdomain>
+
+	* lang/calendar-si.js: updated (David Milost)
+
+	* lang/calendar-si.js: Slovenian translation (thanks to David Milost)
+
+2003-12-21  Mihai Bazon  <mishoo@localhost.localdomain>
+
+	* TODO: updated TODO list
+
+	* lang/calendar-de.js: German translation (thanks to Peter Strotmann)
+
+2003-12-19  Mihai Bazon  <mishoo@localhost.localdomain>
+
+	* doc/reference.tex: Thank you, Ian Barrak
+
+2003-12-18  Mihai Bazon  <mishoo@localhost.localdomain>
+
+	* doc/reference.tex: fixed documentation bug (thanks Mike)
+
+2003-12-05  Mihai Bazon  <mishoo@localhost.localdomain>
+
+	* lang/calendar-ko-utf8.js:
+	UTF8 version of the Korean language (hopefully correct)
+
+	* lang/calendar-pl-utf8.js, lang/calendar-pl.js:
+	updated Polish translation (thanks to Janusz Piwowarski)
+
+2003-12-04  Mihai Bazon  <mishoo@localhost.localdomain>
+
+	* lang/calendar-fr.js:
+	French translation updated (thanks to Angiras Rama)
+
+2003-11-22  Mihai Bazon  <mishoo@localhost.localdomain>
+
+	* lang/calendar-da.js: updated (thanks to Jesper M. Christensen)
+
+2003-11-20  Mihai Bazon  <mishoo@localhost.localdomain>
+
+	* calendar-blue2.css, calendar-tas.css:
+	new styles (thanks to Wendall Mosemann for blue2, Mark Lynch for tas)
+
+	* lang/calendar-lt-utf8.js, lang/calendar-lt.js:
+	Lithuanian translation (thanks to Martynas Majeris)
+
+	* lang/calendar-sp.js: updated
+
+2003-11-17  Mihai Bazon  <mishoo@localhost.localdomain>
+
+	* TODO: added TODO list
+
+2003-11-14  Mihai Bazon  <mishoo@localhost.localdomain>
+
+	* lang/calendar-ko.js: Korean translation (thanks to Yourim Yi)
+
+2003-11-12  Mihai Bazon  <mishoo@localhost.localdomain>
+
+	* lang/calendar-jp.js: small bug fixed (thanks to TAHARA Yusei)
+
+2003-11-10  Mihai Bazon  <mishoo@localhost.localdomain>
+
+	* lang/calendar-fr.js: translation updated, thanks to Florent Ramiere
+
+	* calendar-setup.js:
+	added new parameter: electric (if false then the field will not get updated on each move)
+
+	* index.html: fixed DOCTYPE
+
+2003-11-07  Mihai Bazon  <mishoo@localhost.localdomain>
+
+	* calendar-setup.js:
+	fixed minor problem (maybe we're passing object reference instead of ID for
+	the flat calendar parent)
+
+2003-11-06  Mihai Bazon  <mishoo@localhost.localdomain>
+
+	* lang/calendar-fi.js:
+	added Finnish translation (thanks to Antti Tuppurainen)
+
+2003-11-05  Mihai Bazon  <mishoo@localhost.localdomain>
+
+	* release-notes.html: fixed typo
+
+	* doc/reference.tex, index.html, calendar.js: 0.9.5
+
+	* README: fixed license statement
+
+	* release-notes.html: updated release notes (0.9.5)
+
+2003-11-03  Mihai Bazon  <mishoo@localhost.localdomain>
+
+	* lang/calendar-de.js:
+	updated German translation (thanks to Gerhard Neiner)
+
+	* calendar-setup.js: fixed license statement
+
+	* calendar.js: whitespace
+
+	* calendar.js: fixed license statement
+
+	* calendar.js:
+	fixed positioning problem when input field is inside scrolled divs
+
+2003-11-01  Mihai Bazon  <mishoo@localhost.localdomain>
+
+	* lang/calendar-af.js: Afrikaan language (thanks to Derick Olivier)
+
+2003-10-31  Mihai Bazon  <mishoo@localhost.localdomain>
+
+	* lang/calendar-it.js:
+	updated IT translation (thanks to Christian Blaser)
+
+	* lang/calendar-es.js: updated ES translation, thanks to Raul
+
+2003-10-30  Mihai Bazon  <mishoo@localhost.localdomain>
+
+	* lang/calendar-hu.js: updated thanks to Istvan Karaszi
+
+	* index.html, simple-1.html, simple-2.html, simple-3.html:
+	switched to utf-8 all encodings
+
+	* lang/calendar-sk.js:
+	added Slovak translation (thanks to Peter Valach)
+
+	* lang/calendar-ro.js: switched to utf-8
+
+2003-10-29  Mihai Bazon  <mishoo@localhost.localdomain>
+
+	* lang/calendar-es.js:
+	updated translation, thanks to Jose Ma. Martinez Miralles
+
+	* doc/reference.tex:
+	fixed the footnote problem (thanks Dominique de Waleffe for the tip)
+
+	* lang/calendar-ro.js: fixed typo
+
+	* lang/calendar-sv.js: oops, license should be LGPL
+
+	* lang/calendar-sw.js: new swedish translation is calendar-sv.js
+
+	* menuarrow.gif, menuarrow.png:
+	oops, forgot little drop-down menu arrows
+
+	* lang/calendar-sv.js: swedish translation thanks to Leonard Norrgard
+
+	* index.html: oops, some other minor changes
+
+	* index.html, release-notes.html:
+	latest changes in release-notes and index page for 0.9.4
+
+	* doc/reference.tex, calendar.js:
+	added %s date format (# of seconds since Epoch)
+
+	* calendar.js:
+	A click on TODAY will not close the calendar, even in single-click mode
+
+2003-10-28  Mihai Bazon  <mishoo@localhost.localdomain>
+
+	* index.html: previous cal.html
+
+	* cal.html: moved to index.html
+
+	* README, cal.html, doc/reference.tex, lang/calendar-de.js, lang/calendar-en.js, lang/calendar-ro.js, release-notes.html:
+	LGPL license, forever.
+
+	* doc/Calendar.setup.tex, simple-1.html:
+	doc updated for the onUpdate parameter to Calendar.setup
+
+2003-10-26  Mihai Bazon  <mishoo@localhost.localdomain>
+
+	* calendar.js: fixed bug (correct display of the dropdown menus)
+
+	* doc/Calendar.setup.tex, doc/reference.tex, lang/calendar-de.js, lang/calendar-en.js, lang/calendar-ro.js, README, cal.html, calendar-blue.css, calendar-brown.css, calendar-green.css, calendar-setup.js, calendar-system.css, calendar-win2k-1.css, calendar-win2k-2.css, calendar-win2k-cold-1.css, calendar-win2k-cold-2.css, calendar.js, release-notes.html, simple-1.html, simple-3.html:
+	lots of changes for the 0.9.4 release (see the release-notes.html)
+
+2003-10-15  Mihai Bazon  <mishoo@localhost.localdomain>
+
+	* doc/reference.tex:
+	documentation updated for 0.9.4 (not yet finished though)
+
+2003-10-07  Mihai Bazon  <mishoo@localhost.localdomain>
+
+	* calendar.js, doc/reference.tex, release-notes.html, README, cal.html, calendar-setup.js:
+	modified project website
+
+2003-10-06  Mihai Bazon  <mishoo@localhost.localdomain>
+
+	* calendar-setup.js:
+	added some properties (onSelect, onClose, date) (thanks altblue)
+
+2003-09-24  Mihai Bazon  <mishoo@localhost.localdomain>
+
+	* simple-3.html: dateIsSpecial does not need the "date" argument ;-)
+
+2003-09-24  fsoft  <fsoft@mishoo>
+
+	* calendar.js, simple-3.html:
+	added year, month, day to getDateStatus() function
+
+2003-09-24  Mihai Bazon  <mishoo@localhost.localdomain>
+
+	* simple-3.html: example on how to use special dates
+
+	* calendar-setup.js, calendar.js, simple-1.html:
+	support for special dates (thanks fabio)
+
+2003-09-17  Mihai Bazon  <mishoo@localhost.localdomain>
+
+	* doc/reference.tex: fixed error in section 3.
+
+2003-08-01  Mihai Bazon  <mishoo@localhost.localdomain>
+
+	* lang/calendar-jp.js: added Japanese translation
+
+2003-07-16  Mihai Bazon  <mishoo@localhost.localdomain>
+
+	* simple-1.html: fixed problem with first example [IE,Opera]
+
+2003-07-09  Mihai Bazon  <mishoo@localhost.localdomain>
+
+	* doc/Calendar.setup.tex: fixed typo (closing parenthesis)
+
+	* lang/calendar-de.js:
+	added German translation, thanks to Hartwig Weinkauf
+
+2003-07-08  Mihai Bazon  <mishoo@localhost.localdomain>
+
+	* cal.html: added link to release-notes
+
+	* release-notes.html: 0.9.3 release notes
+
+	* make-release.pl:
+	Script to create distribution archive.  It needs some additional packages:
+
+	  - LaTeX
+	  - tex2page
+	  - jscrunch (JS compressor)
+
+	* doc/html/makedoc.sh, doc/html/reference.css, doc/reference.tex, doc/makedoc.sh:
+	documentation updates...
+
+	* calendar.js: added semicolon to make the code "compressible"
+
+2003-07-06  Mihai Bazon  <mishoo@localhost.localdomain>
+
+	* doc/reference.tex: spell checked
+
+	* doc/reference.tex: [minor] changed credits order
+
+	* doc/reference.tex: various improvements and additions
+
+	* doc/html/reference.css: minor eye-candy tweaks
+
+2003-07-05  Mihai Bazon  <mishoo@localhost.localdomain>
+
+	* doc/html/Calendar.setup.html.tex, doc/html/makedoc.sh, doc/html/reference.css, doc/html/reference.t2p, doc/hyperref.cfg, doc/makedoc.sh, doc/reference.tex, doc/Calendar.setup.tex, doc/Calendar.setup.pdf.tex:
+	full documentation in LaTeX, for PDF and HTML formats
+
+	* simple-2.html:
+	added demonstration of flat calendar with Calendar.setup
+
+	* simple-1.html:
+	modified some links, added link to documentation, added demonstration of
+	disableFunc property
+
+	* calendar-setup.js: added the ability to create flat calendar too
+
+	* cal.html: added links to documentation and simple-[12].html pages
+
+	* README: up-to-date...
+
+	* calendar-setup.html: removed: the documentation is unified
+
+2003-07-03  Mihai Bazon  <mishoo@localhost.localdomain>
+
+	* cal.html: some links to newly added files
+
+	* calendar-setup.html, calendar-setup.js, img.gif, simple-1.html:
+	added some files to simplify calendar creation for non-(JS)-programmers
+
+	* lang/calendar-zh.js: added simplified chinese (thanks ATang)
+
+2003-07-02  Mihai Bazon  <mishoo@localhost.localdomain>
+
+	* calendar.js: * "yy"-related... [small fix]
+
+	* calendar.js:
+	* #721833 fixed (yy format will understand years prior to 29 as 20xx)
+
+	* calendar.js: * added refresh() function
+
+	* calendar.js: * fixed bug when in single click mode
+	* added alignment options to "showAtElement" member function
+
+2003-06-25  Mihai Bazon  <mishoo@localhost.localdomain>
+
+	* lang/calendar-pt.js:
+	added portugese translation (thanks Nuno Barreto)
+
+2003-06-24  Mihai Bazon  <mishoo@localhost.localdomain>
+
+	* calendar.js:
+	call user handler when the date was changed using the keyboard
+
+	* bugtest-hidden-selects.html:
+	file to test bug with hidden select-s (thanks Ying Zhang for reporting and for this test file)
+
+	* lang/calendar-hr-utf8.js:
+	added croatian translation in utf8 (thanks Krunoslav Zubrinic)
+
+2003-06-23  Mihai Bazon  <mishoo@localhost.localdomain>
+
+	* lang/calendar-hu.js: added hungarian translation
+
+	* lang/calendar-hr.js:
+	added croatian translation (thanks to Krunoslav Zubrinic)
+
+2003-06-22  Mihai Bazon  <mishoo@localhost.localdomain>
+
+	* calendar.js:
+	* #723335 fixed (clicking TODAY will not select the today date if the
+	  disabledHandler rejects it)
+
+	* cal.html: * new code for to work with fix for bug #703238
+	* switch to new version
+
+	* calendar.js:
+	* some patches to make code compatible with Opera 7 (well, almost compatible)
+	* bug #703238 fixed (fix breaks compatibility with older code that uses
+	  calendar in single-click mode)
+	* bug #703814 fixed
+
+2003-04-09  Mihai Bazon  <mishoo@localhost.localdomain>
+
+	* lang/calendar-tr.js: added turkish lang file
+
+2003-03-19  Mihai Bazon  <mishoo@localhost.localdomain>
+
+	* lang/calendar-ru.js: russian translation added
+
+	* lang/calendar-no.js: norwegian translation added
+
+2003-03-15  Mihai Bazon  <mishoo@localhost.localdomain>
+
+	* lang/calendar-no.js: norwegian translation
+
+2003-03-12  Mihai Bazon  <mishoo@localhost.localdomain>
+
+	* lang/calendar-pl.js: added polish translation
+
+2003-03-11  Mihai Bazon  <mishoo@localhost.localdomain>
+
+	* calendar.js:
+	bugfix in parseDate (added base to parseInt, thanks Alan!)
+
+2003-03-05  Mihai Bazon  <mishoo@localhost.localdomain>
+
+	* calendar.js, lang/calendar-br.js, lang/calendar-ca.js, lang/calendar-cs-win.js, lang/calendar-da.js, lang/calendar-du.js, lang/calendar-el.js, lang/calendar-en.js, lang/calendar-es.js, lang/calendar-fr.js, lang/calendar-it.js, lang/calendar-nl.js, lang/calendar-ro.js, lang/calendar-sp.js, lang/calendar-sw.js:
+	New file.
+
+	* calendar.js, lang/calendar-br.js, lang/calendar-ca.js, lang/calendar-cs-win.js, lang/calendar-da.js, lang/calendar-du.js, lang/calendar-el.js, lang/calendar-en.js, lang/calendar-es.js, lang/calendar-fr.js, lang/calendar-it.js, lang/calendar-nl.js, lang/calendar-ro.js, lang/calendar-sp.js, lang/calendar-sw.js:
+	moved to CVS at sourceforge.net
+	release: 0.9.2 + new language packs
+
+
+	* README, cal.html, calendar-blue.css, calendar-brown.css, calendar-green.css, calendar-system.css, calendar-win2k-1.css, calendar-win2k-2.css, calendar-win2k-cold-1.css, calendar-win2k-cold-2.css:
+	New file.
+
+	* README, cal.html, calendar-blue.css, calendar-brown.css, calendar-green.css, calendar-system.css, calendar-win2k-1.css, calendar-win2k-2.css, calendar-win2k-cold-1.css, calendar-win2k-cold-2.css:
+	moved to CVS at sourceforge.net
+	release: 0.9.2 + new language packs
+
+
diff --git a/skins/jscalendar/README b/skins/jscalendar/README
new file mode 100644
index 0000000..a9f0d9f
--- /dev/null
+++ b/skins/jscalendar/README
@@ -0,0 +1,33 @@
+The DHTML Calendar
+-------------------
+
+  Author: Mihai Bazon, <mishoo@infoiasi.ro>
+          http://dynarch.com/mishoo/
+
+  This program is free software published under the
+  terms of the GNU Lesser General Public License.
+
+  For the entire license text please refer to
+  http://www.gnu.org/licenses/lgpl.html
+
+Contents
+---------
+
+  calendar.js     -- the main program file
+  lang/*.js       -- internalization files
+  *.css           -- color themes
+  cal.html        -- example usage file
+  doc/            -- documentation, in PDF and HTML
+  simple-1.html   -- quick setup examples [popup calendars]
+  simple-2.html   -- quick setup example for flat calendar
+  calendar.php    -- PHP wrapper
+  test.php        -- test file for the PHP wrapper
+
+Homepage
+---------
+
+  For details and latest versions please refer to calendar
+  homepage, located on my website:
+
+    http://dynarch.com/mishoo/calendar.epl
+
diff --git a/skins/jscalendar/bugtest-hidden-selects.html b/skins/jscalendar/bugtest-hidden-selects.html
new file mode 100644
index 0000000..df35337
--- /dev/null
+++ b/skins/jscalendar/bugtest-hidden-selects.html
@@ -0,0 +1,108 @@
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ro" lang="ro">
+
+<head>
+<title>Bug</title>
+<link rel="stylesheet" type="text/css" media="all" href="calendar-win2k-1.css" title="win2k-1" />
+
+<!-- import the calendar script -->
+<script type="text/javascript" src="calendar.js"></script>
+
+<!-- import the language module -->
+<script type="text/javascript" src="lang/calendar-en.js"></script>
+
+<!-- helper script that uses the calendar -->
+<script type="text/javascript">
+// This function gets called when the end-user clicks on some date.
+function selected(cal, date) {
+  cal.sel.value = date; // just update the date in the input field.
+  if (cal.sel.id == "sel1" || cal.sel.id == "sel3")
+    // if we add this call we close the calendar on single-click.
+    // just to exemplify both cases, we are using this only for the 1st
+    // and the 3rd field, while 2nd and 4th will still require double-click.
+    cal.callCloseHandler();
+}
+
+// And this gets called when the end-user clicks on the _selected_ date,
+// or clicks on the "Close" button.  It just hides the calendar without
+// destroying it.
+function closeHandler(cal) {
+  cal.hide();                        // hide the calendar
+}
+
+// This function shows the calendar under the element having the given id.
+// It takes care of catching "mousedown" signals on document and hiding the
+// calendar if the click was outside.
+function showCalendar(id, format) {
+  var el = document.getElementById(id);
+  if (calendar != null) {
+    // we already have some calendar created
+    calendar.hide();                 // so we hide it first.
+  } else {
+    // first-time call, create the calendar.
+    var cal = new Calendar(false, null, selected, closeHandler);
+    // uncomment the following line to hide the week numbers
+    // cal.weekNumbers = false;
+    calendar = cal;                  // remember it in the global var
+    cal.setRange(1900, 2070);        // min/max year allowed.
+    cal.create();
+  }
+  calendar.setDateFormat(format);    // set the specified date format
+  calendar.parseDate(el.value);      // try to parse the text in field
+  calendar.sel = el;                 // inform it what input field we use
+  calendar.showAtElement(el);        // show the calendar below it
+
+  return false;
+}
+
+var MINUTE = 60 * 1000;
+var HOUR = 60 * MINUTE;
+var DAY = 24 * HOUR;
+var WEEK = 7 * DAY;
+
+// If this handler returns true then the "date" given as
+// parameter will be disabled.  In this example we enable
+// only days within a range of 10 days from the current
+// date.
+// You can use the functions date.getFullYear() -- returns the year
+// as 4 digit number, date.getMonth() -- returns the month as 0..11,
+// and date.getDate() -- returns the date of the month as 1..31, to
+// make heavy calculations here.  However, beware that this function
+// should be very fast, as it is called for each day in a month when
+// the calendar is (re)constructed.
+function isDisabled(date) {
+  var today = new Date();
+  return (Math.abs(date.getTime() - today.getTime()) / DAY) > 10;
+}
+</script>
+</head>
+
+<body>
+<form>
+<b>Date:</b>
+<br>
+<input type="text" name="date1" id="sel1" size="30">
+<input type="button" value="..." onclick="return showCalendar('sel1', 'y-m-d');">
+<p>
+<br>
+<br><b>Visible &lt;select&gt;, hides and unhides as expected</b>
+<br>
+<select name="foo" multiple>
+<option value="1">can use the functions date.getFullYear() -- returns</option>
+<option value="2">4 digit number, date.getMonth() -- returns the month</option>
+<option value="3">heavy calculations here.  However, beware that this</option>
+</select>
+
+<p>
+<br><b>Hidden &lt;select&gt;, it should stay hidden (but doesn't)</b>
+<br>
+<select name="foo2" multiple style="visibility: hidden">
+<option value="1">this should</option>
+<option value="2">remain hidden right?</option>
+</select>
+
+<p>
+<br><b>Hidden textbox below, it stays hidden as expected</b>
+<br>
+<input type="text" name="foo3" value="this stays hidden just fine" style="visibility: hidden">
+</form>
+</body></html>
diff --git a/skins/jscalendar/calendar-blue.css b/skins/jscalendar/calendar-blue.css
new file mode 100644
index 0000000..86f260f
--- /dev/null
+++ b/skins/jscalendar/calendar-blue.css
@@ -0,0 +1,231 @@
+/* The main calendar widget.  DIV containing a table. */
+
+div.calendar { position: relative; }
+
+.calendar, .calendar table {
+  border: 1px solid #556;
+  font-size: 11px;
+  color: #000;
+  cursor: default;
+  background: #eef;
+  font-family: tahoma,verdana,sans-serif;
+}
+
+/* Header part -- contains navigation buttons and day names. */
+
+.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */
+  text-align: center;    /* They are the navigation buttons */
+  padding: 2px;          /* Make the buttons seem like they're pressing */
+}
+
+.calendar .nav {
+  background: #778 url(menuarrow.gif) no-repeat 100% 100%;
+}
+
+.calendar thead .title { /* This holds the current "month, year" */
+  font-weight: bold;      /* Pressing it will take you to the current date */
+  text-align: center;
+  background: #fff;
+  color: #000;
+  padding: 2px;
+}
+
+.calendar thead .headrow { /* Row <TR> containing navigation buttons */
+  background: #778;
+  color: #fff;
+}
+
+.calendar thead .daynames { /* Row <TR> containing the day names */
+  background: #bdf;
+}
+
+.calendar thead .name { /* Cells <TD> containing the day names */
+  border-bottom: 1px solid #556;
+  padding: 2px;
+  text-align: center;
+  color: #000;
+}
+
+.calendar thead .weekend { /* How a weekend day name shows in header */
+  color: #a66;
+}
+
+.calendar thead .hilite { /* How do the buttons in header appear when hover */
+  background-color: #aaf;
+  color: #000;
+  border: 1px solid #04f;
+  padding: 1px;
+}
+
+.calendar thead .active { /* Active (pressed) buttons in header */
+  background-color: #77c;
+  padding: 2px 0px 0px 2px;
+}
+
+/* The body part -- contains all the days in month. */
+
+.calendar tbody .day { /* Cells <TD> containing month days dates */
+  width: 2em;
+  color: #456;
+  text-align: right;
+  padding: 2px 4px 2px 2px;
+}
+.calendar tbody .day.othermonth {
+  font-size: 80%;
+  color: #bbb;
+}
+.calendar tbody .day.othermonth.oweekend {
+  color: #fbb;
+}
+
+.calendar table .wn {
+  padding: 2px 3px 2px 2px;
+  border-right: 1px solid #000;
+  background: #bdf;
+}
+
+.calendar tbody .rowhilite td {
+  background: #def;
+}
+
+.calendar tbody .rowhilite td.wn {
+  background: #eef;
+}
+
+.calendar tbody td.hilite { /* Hovered cells <TD> */
+  background: #def;
+  padding: 1px 3px 1px 1px;
+  border: 1px solid #bbb;
+}
+
+.calendar tbody td.active { /* Active (pressed) cells <TD> */
+  background: #cde;
+  padding: 2px 2px 0px 2px;
+}
+
+.calendar tbody td.selected { /* Cell showing today date */
+  font-weight: bold;
+  border: 1px solid #000;
+  padding: 1px 3px 1px 1px;
+  background: #fff;
+  color: #000;
+}
+
+.calendar tbody td.weekend { /* Cells showing weekend days */
+  color: #a66;
+}
+
+.calendar tbody td.today { /* Cell showing selected date */
+  font-weight: bold;
+  color: #00f;
+}
+
+.calendar tbody .disabled { color: #999; }
+
+.calendar tbody .emptycell { /* Empty cells (the best is to hide them) */
+  visibility: hidden;
+}
+
+.calendar tbody .emptyrow { /* Empty row (some months need less than 6 rows) */
+  display: none;
+}
+
+/* The footer part -- status bar and "Close" button */
+
+.calendar tfoot .footrow { /* The <TR> in footer (only one right now) */
+  text-align: center;
+  background: #556;
+  color: #fff;
+}
+
+.calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */
+  background: #fff;
+  color: #445;
+  border-top: 1px solid #556;
+  padding: 1px;
+}
+
+.calendar tfoot .hilite { /* Hover style for buttons in footer */
+  background: #aaf;
+  border: 1px solid #04f;
+  color: #000;
+  padding: 1px;
+}
+
+.calendar tfoot .active { /* Active (pressed) style for buttons in footer */
+  background: #77c;
+  padding: 2px 0px 0px 2px;
+}
+
+/* Combo boxes (menus that display months/years for direct selection) */
+
+.calendar .combo {
+  position: absolute;
+  display: none;
+  top: 0px;
+  left: 0px;
+  width: 4em;
+  cursor: default;
+  border: 1px solid #655;
+  background: #def;
+  color: #000;
+  font-size: 90%;
+}
+
+.calendar .combo .label,
+.calendar .combo .label-IEfix {
+  text-align: center;
+  padding: 1px;
+}
+
+.calendar .combo .label-IEfix {
+  width: 4em;
+}
+
+.calendar .combo .hilite {
+  background: #acf;
+}
+
+.calendar .combo .active {
+  border-top: 1px solid #46a;
+  border-bottom: 1px solid #46a;
+  background: #eef;
+  font-weight: bold;
+}
+
+.calendar td.time {
+  border-top: 1px solid #000;
+  padding: 1px 0px;
+  text-align: center;
+  background-color: #f4f0e8;
+}
+
+.calendar td.time .hour,
+.calendar td.time .minute,
+.calendar td.time .ampm {
+  padding: 0px 3px 0px 4px;
+  border: 1px solid #889;
+  font-weight: bold;
+  background-color: #fff;
+}
+
+.calendar td.time .ampm {
+  text-align: center;
+}
+
+.calendar td.time .colon {
+  padding: 0px 2px 0px 3px;
+  font-weight: bold;
+}
+
+.calendar td.time span.hilite {
+  border-color: #000;
+  background-color: #667;
+  color: #fff;
+}
+
+.calendar td.time span.active {
+  border-color: #f00;
+  background-color: #000;
+  color: #0f0;
+}
diff --git a/skins/jscalendar/calendar-blue2.css b/skins/jscalendar/calendar-blue2.css
new file mode 100644
index 0000000..94fe8e8
--- /dev/null
+++ b/skins/jscalendar/calendar-blue2.css
@@ -0,0 +1,235 @@
+/* The main calendar widget.  DIV containing a table. */
+
+div.calendar { position: relative; }
+
+.calendar, .calendar table {
+  border: 1px solid #206A9B;
+  font-size: 11px;
+  color: #000;
+  cursor: default;
+  background: #F1F8FC;
+  font-family: tahoma,verdana,sans-serif;
+}
+
+/* Header part -- contains navigation buttons and day names. */
+
+.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */
+  text-align: center;    /* They are the navigation buttons */
+  padding: 2px;          /* Make the buttons seem like they're pressing */
+}
+
+.calendar .nav {
+  background: #007ED1 url(menuarrow2.gif) no-repeat 100% 100%;
+}
+
+.calendar thead .title { /* This holds the current "month, year" */
+  font-weight: bold;      /* Pressing it will take you to the current date */
+  text-align: center;
+  background: #000;
+  color: #fff;
+  padding: 2px;
+}
+
+.calendar thead tr { /* Row <TR> containing navigation buttons */
+  background: #007ED1;
+  color: #fff;
+}
+
+.calendar thead .daynames { /* Row <TR> containing the day names */
+  background: #C7E1F3;
+}
+
+.calendar thead .name { /* Cells <TD> containing the day names */
+  border-bottom: 1px solid #206A9B;
+  padding: 2px;
+  text-align: center;
+  color: #000;
+}
+
+.calendar thead .weekend { /* How a weekend day name shows in header */
+  color: #a66;
+}
+
+.calendar thead .hilite { /* How do the buttons in header appear when hover */
+  background-color: #34ABFA;
+  color: #000;
+  border: 1px solid #016DC5;
+  padding: 1px;
+}
+
+.calendar thead .active { /* Active (pressed) buttons in header */
+  background-color: #006AA9;
+  border: 1px solid #008AFF;
+  padding: 2px 0px 0px 2px;
+}
+
+/* The body part -- contains all the days in month. */
+
+.calendar tbody .day { /* Cells <TD> containing month days dates */
+  width: 2em;
+  color: #456;
+  text-align: right;
+  padding: 2px 4px 2px 2px;
+}
+.calendar tbody .day.othermonth {
+  font-size: 80%;
+  color: #bbb;
+}
+.calendar tbody .day.othermonth.oweekend {
+  color: #fbb;
+}
+
+.calendar table .wn {
+  padding: 2px 3px 2px 2px;
+  border-right: 1px solid #000;
+  background: #C7E1F3;
+}
+
+.calendar tbody .rowhilite td {
+  background: #def;
+}
+
+.calendar tbody .rowhilite td.wn {
+  background: #F1F8FC;
+}
+
+.calendar tbody td.hilite { /* Hovered cells <TD> */
+  background: #def;
+  padding: 1px 3px 1px 1px;
+  border: 1px solid #8FC4E8;
+}
+
+.calendar tbody td.active { /* Active (pressed) cells <TD> */
+  background: #cde;
+  padding: 2px 2px 0px 2px;
+}
+
+.calendar tbody td.selected { /* Cell showing today date */
+  font-weight: bold;
+  border: 1px solid #000;
+  padding: 1px 3px 1px 1px;
+  background: #fff;
+  color: #000;
+}
+
+.calendar tbody td.weekend { /* Cells showing weekend days */
+  color: #a66;
+}
+
+.calendar tbody td.today { /* Cell showing selected date */
+  font-weight: bold;
+  color: #D50000;
+}
+
+.calendar tbody .disabled { color: #999; }
+
+.calendar tbody .emptycell { /* Empty cells (the best is to hide them) */
+  visibility: hidden;
+}
+
+.calendar tbody .emptyrow { /* Empty row (some months need less than 6 rows) */
+  display: none;
+}
+
+/* The footer part -- status bar and "Close" button */
+
+.calendar tfoot .footrow { /* The <TR> in footer (only one right now) */
+  text-align: center;
+  background: #206A9B;
+  color: #fff;
+}
+
+.calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */
+  background: #000;
+  color: #fff;
+  border-top: 1px solid #206A9B;
+  padding: 1px;
+}
+
+.calendar tfoot .hilite { /* Hover style for buttons in footer */
+  background: #B8DAF0;
+  border: 1px solid #178AEB;
+  color: #000;
+  padding: 1px;
+}
+
+.calendar tfoot .active { /* Active (pressed) style for buttons in footer */
+  background: #006AA9;
+  padding: 2px 0px 0px 2px;
+}
+
+/* Combo boxes (menus that display months/years for direct selection) */
+
+.calendar .combo {
+  position: absolute;
+  display: none;
+  top: 0px;
+  left: 0px;
+  width: 4em;
+  cursor: default;
+  border: 1px solid #655;
+  background: #def;
+  color: #000;
+  font-size: 90%;
+}
+
+.calendar .combo .label,
+.calendar .combo .label-IEfix {
+  text-align: center;
+  padding: 1px;
+}
+
+.calendar .combo .label-IEfix {
+  width: 4em;
+}
+
+.calendar .combo .hilite {
+  background: #34ABFA;
+  border-top: 1px solid #46a;
+  border-bottom: 1px solid #46a;
+  font-weight: bold;
+}
+
+.calendar .combo .active {
+  border-top: 1px solid #46a;
+  border-bottom: 1px solid #46a;
+  background: #F1F8FC;
+  font-weight: bold;
+}
+
+.calendar td.time {
+  border-top: 1px solid #000;
+  padding: 1px 0px;
+  text-align: center;
+  background-color: #E3F0F9;
+}
+
+.calendar td.time .hour,
+.calendar td.time .minute,
+.calendar td.time .ampm {
+  padding: 0px 3px 0px 4px;
+  border: 1px solid #889;
+  font-weight: bold;
+  background-color: #F1F8FC;
+}
+
+.calendar td.time .ampm {
+  text-align: center;
+}
+
+.calendar td.time .colon {
+  padding: 0px 2px 0px 3px;
+  font-weight: bold;
+}
+
+.calendar td.time span.hilite {
+  border-color: #000;
+  background-color: #267DB7;
+  color: #fff;
+}
+
+.calendar td.time span.active {
+  border-color: red;
+  background-color: #000;
+  color: #A5FF00;
+}
diff --git a/skins/jscalendar/calendar-brown.css b/skins/jscalendar/calendar-brown.css
new file mode 100644
index 0000000..ed638c4
--- /dev/null
+++ b/skins/jscalendar/calendar-brown.css
@@ -0,0 +1,224 @@
+/* The main calendar widget.  DIV containing a table. */
+
+div.calendar { position: relative; }
+
+.calendar, .calendar table {
+  border: 1px solid #655;
+  font-size: 11px;
+  color: #000;
+  cursor: default;
+  background: #ffd;
+  font-family: tahoma,verdana,sans-serif;
+}
+
+/* Header part -- contains navigation buttons and day names. */
+
+.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */
+  text-align: center;    /* They are the navigation buttons */
+  padding: 2px;          /* Make the buttons seem like they're pressing */
+}
+
+.calendar .nav {
+  background: #edc url(menuarrow.gif) no-repeat 100% 100%;
+}
+
+.calendar thead .title { /* This holds the current "month, year" */
+  font-weight: bold;      /* Pressing it will take you to the current date */
+  text-align: center;
+  background: #654;
+  color: #fed;
+  padding: 2px;
+}
+
+.calendar thead .headrow { /* Row <TR> containing navigation buttons */
+  background: #edc;
+  color: #000;
+}
+
+.calendar thead .name { /* Cells <TD> containing the day names */
+  border-bottom: 1px solid #655;
+  padding: 2px;
+  text-align: center;
+  color: #000;
+}
+
+.calendar thead .weekend { /* How a weekend day name shows in header */
+  color: #f00;
+}
+
+.calendar thead .hilite { /* How do the buttons in header appear when hover */
+  background-color: #faa;
+  color: #000;
+  border: 1px solid #f40;
+  padding: 1px;
+}
+
+.calendar thead .active { /* Active (pressed) buttons in header */
+  background-color: #c77;
+  padding: 2px 0px 0px 2px;
+}
+
+.calendar thead .daynames { /* Row <TR> containing the day names */
+  background: #fed;
+}
+
+/* The body part -- contains all the days in month. */
+
+.calendar tbody .day { /* Cells <TD> containing month days dates */
+  width: 2em;
+  text-align: right;
+  padding: 2px 4px 2px 2px;
+}
+.calendar tbody .day.othermonth {
+  font-size: 80%;
+  color: #bbb;
+}
+.calendar tbody .day.othermonth.oweekend {
+  color: #fbb;
+}
+
+.calendar table .wn {
+  padding: 2px 3px 2px 2px;
+  border-right: 1px solid #000;
+  background: #fed;
+}
+
+.calendar tbody .rowhilite td {
+  background: #ddf;
+}
+
+.calendar tbody .rowhilite td.wn {
+  background: #efe;
+}
+
+.calendar tbody td.hilite { /* Hovered cells <TD> */
+  background: #ffe;
+  padding: 1px 3px 1px 1px;
+  border: 1px solid #bbb;
+}
+
+.calendar tbody td.active { /* Active (pressed) cells <TD> */
+  background: #ddc;
+  padding: 2px 2px 0px 2px;
+}
+
+.calendar tbody td.selected { /* Cell showing today date */
+  font-weight: bold;
+  border: 1px solid #000;
+  padding: 1px 3px 1px 1px;
+  background: #fea;
+}
+
+.calendar tbody td.weekend { /* Cells showing weekend days */
+  color: #f00;
+}
+
+.calendar tbody td.today { font-weight: bold; }
+
+.calendar tbody .disabled { color: #999; }
+
+.calendar tbody .emptycell { /* Empty cells (the best is to hide them) */
+  visibility: hidden;
+}
+
+.calendar tbody .emptyrow { /* Empty row (some months need less than 6 rows) */
+  display: none;
+}
+
+/* The footer part -- status bar and "Close" button */
+
+.calendar tfoot .footrow { /* The <TR> in footer (only one right now) */
+  text-align: center;
+  background: #988;
+  color: #000;
+}
+
+.calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */
+  border-top: 1px solid #655;
+  background: #dcb;
+  color: #840;
+}
+
+.calendar tfoot .hilite { /* Hover style for buttons in footer */
+  background: #faa;
+  border: 1px solid #f40;
+  padding: 1px;
+}
+
+.calendar tfoot .active { /* Active (pressed) style for buttons in footer */
+  background: #c77;
+  padding: 2px 0px 0px 2px;
+}
+
+/* Combo boxes (menus that display months/years for direct selection) */
+
+.calendar .combo {
+  position: absolute;
+  display: none;
+  top: 0px;
+  left: 0px;
+  width: 4em;
+  cursor: default;
+  border: 1px solid #655;
+  background: #ffe;
+  color: #000;
+  font-size: 90%;
+}
+
+.calendar .combo .label,
+.calendar .combo .label-IEfix {
+  text-align: center;
+  padding: 1px;
+}
+
+.calendar .combo .label-IEfix {
+  width: 4em;
+}
+
+.calendar .combo .hilite {
+  background: #fc8;
+}
+
+.calendar .combo .active {
+  border-top: 1px solid #a64;
+  border-bottom: 1px solid #a64;
+  background: #fee;
+  font-weight: bold;
+}
+
+.calendar td.time {
+  border-top: 1px solid #a88;
+  padding: 1px 0px;
+  text-align: center;
+  background-color: #fed;
+}
+
+.calendar td.time .hour,
+.calendar td.time .minute,
+.calendar td.time .ampm {
+  padding: 0px 3px 0px 4px;
+  border: 1px solid #988;
+  font-weight: bold;
+  background-color: #fff;
+}
+
+.calendar td.time .ampm {
+  text-align: center;
+}
+
+.calendar td.time .colon {
+  padding: 0px 2px 0px 3px;
+  font-weight: bold;
+}
+
+.calendar td.time span.hilite {
+  border-color: #000;
+  background-color: #866;
+  color: #fff;
+}
+
+.calendar td.time span.active {
+  border-color: #f00;
+  background-color: #000;
+  color: #0f0;
+}
diff --git a/skins/jscalendar/calendar-green.css b/skins/jscalendar/calendar-green.css
new file mode 100644
index 0000000..df04de2
--- /dev/null
+++ b/skins/jscalendar/calendar-green.css
@@ -0,0 +1,228 @@
+/* The main calendar widget.  DIV containing a table. */
+
+div.calendar { position: relative; }
+
+.calendar, .calendar table {
+  border: 1px solid #565;
+  font-size: 11px;
+  color: #000;
+  cursor: default;
+  background: #efe;
+  font-family: tahoma,verdana,sans-serif;
+}
+
+/* Header part -- contains navigation buttons and day names. */
+
+.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */
+  text-align: center;    /* They are the navigation buttons */
+  padding: 2px;          /* Make the buttons seem like they're pressing */
+  background: #676;
+  color: #fff;
+  font-size: 90%;
+}
+
+.calendar .nav {
+  background: #676 url(menuarrow.gif) no-repeat 100% 100%;
+}
+
+.calendar thead .title { /* This holds the current "month, year" */
+  font-weight: bold;      /* Pressing it will take you to the current date */
+  text-align: center;
+  padding: 2px;
+  background: #250;
+  color: #efa;
+}
+
+.calendar thead .headrow { /* Row <TR> containing navigation buttons */
+}
+
+.calendar thead .name { /* Cells <TD> containing the day names */
+  border-bottom: 1px solid #565;
+  padding: 2px;
+  text-align: center;
+  color: #000;
+}
+
+.calendar thead .weekend { /* How a weekend day name shows in header */
+  color: #a66;
+}
+
+.calendar thead .hilite { /* How do the buttons in header appear when hover */
+  background-color: #afa;
+  color: #000;
+  border: 1px solid #084;
+  padding: 1px;
+}
+
+.calendar thead .active { /* Active (pressed) buttons in header */
+  background-color: #7c7;
+  padding: 2px 0px 0px 2px;
+}
+
+.calendar thead .daynames { /* Row <TR> containing the day names */
+  background: #dfb;
+}
+
+/* The body part -- contains all the days in month. */
+
+.calendar tbody .day { /* Cells <TD> containing month days dates */
+  width: 2em;
+  color: #564;
+  text-align: right;
+  padding: 2px 4px 2px 2px;
+}
+.calendar tbody .day.othermonth {
+  font-size: 80%;
+  color: #bbb;
+}
+.calendar tbody .day.othermonth.oweekend {
+  color: #fbb;
+}
+
+.calendar table .wn {
+  padding: 2px 3px 2px 2px;
+  border-right: 1px solid #8a8;
+  background: #dfb;
+}
+
+.calendar tbody .rowhilite td {
+  background: #dfd;
+}
+
+.calendar tbody .rowhilite td.wn {
+  background: #efe;
+}
+
+.calendar tbody td.hilite { /* Hovered cells <TD> */
+  background: #efd;
+  padding: 1px 3px 1px 1px;
+  border: 1px solid #bbb;
+}
+
+.calendar tbody td.active { /* Active (pressed) cells <TD> */
+  background: #dec;
+  padding: 2px 2px 0px 2px;
+}
+
+.calendar tbody td.selected { /* Cell showing today date */
+  font-weight: bold;
+  border: 1px solid #000;
+  padding: 1px 3px 1px 1px;
+  background: #f8fff8;
+  color: #000;
+}
+
+.calendar tbody td.weekend { /* Cells showing weekend days */
+  color: #a66;
+}
+
+.calendar tbody td.today { font-weight: bold; color: #0a0; }
+
+.calendar tbody .disabled { color: #999; }
+
+.calendar tbody .emptycell { /* Empty cells (the best is to hide them) */
+  visibility: hidden;
+}
+
+.calendar tbody .emptyrow { /* Empty row (some months need less than 6 rows) */
+  display: none;
+}
+
+/* The footer part -- status bar and "Close" button */
+
+.calendar tfoot .footrow { /* The <TR> in footer (only one right now) */
+  text-align: center;
+  background: #565;
+  color: #fff;
+}
+
+.calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */
+  padding: 2px;
+  background: #250;
+  color: #efa;
+}
+
+.calendar tfoot .hilite { /* Hover style for buttons in footer */
+  background: #afa;
+  border: 1px solid #084;
+  color: #000;
+  padding: 1px;
+}
+
+.calendar tfoot .active { /* Active (pressed) style for buttons in footer */
+  background: #7c7;
+  padding: 2px 0px 0px 2px;
+}
+
+/* Combo boxes (menus that display months/years for direct selection) */
+
+.calendar .combo {
+  position: absolute;
+  display: none;
+  top: 0px;
+  left: 0px;
+  width: 4em;
+  cursor: default;
+  border: 1px solid #565;
+  background: #efd;
+  color: #000;
+  font-size: 90%;
+}
+
+.calendar .combo .label,
+.calendar .combo .label-IEfix {
+  text-align: center;
+  padding: 1px;
+}
+
+.calendar .combo .label-IEfix {
+  width: 4em;
+}
+
+.calendar .combo .hilite {
+  background: #af8;
+}
+
+.calendar .combo .active {
+  border-top: 1px solid #6a4;
+  border-bottom: 1px solid #6a4;
+  background: #efe;
+  font-weight: bold;
+}
+
+.calendar td.time {
+  border-top: 1px solid #8a8;
+  padding: 1px 0px;
+  text-align: center;
+  background-color: #dfb;
+}
+
+.calendar td.time .hour,
+.calendar td.time .minute,
+.calendar td.time .ampm {
+  padding: 0px 3px 0px 4px;
+  border: 1px solid #898;
+  font-weight: bold;
+  background-color: #fff;
+}
+
+.calendar td.time .ampm {
+  text-align: center;
+}
+
+.calendar td.time .colon {
+  padding: 0px 2px 0px 3px;
+  font-weight: bold;
+}
+
+.calendar td.time span.hilite {
+  border-color: #000;
+  background-color: #686;
+  color: #fff;
+}
+
+.calendar td.time span.active {
+  border-color: #f00;
+  background-color: #000;
+  color: #0f0;
+}
diff --git a/skins/jscalendar/calendar-setup.js b/skins/jscalendar/calendar-setup.js
new file mode 100644
index 0000000..aa45007
--- /dev/null
+++ b/skins/jscalendar/calendar-setup.js
@@ -0,0 +1,181 @@
+/*  Copyright Mihai Bazon, 2002, 2003  |  http://dynarch.com/mishoo/
+ * ---------------------------------------------------------------------------
+ *
+ * The DHTML Calendar
+ *
+ * Details and latest version at:
+ * http://dynarch.com/mishoo/calendar.epl
+ *
+ * This script is distributed under the GNU Lesser General Public License.
+ * Read the entire license text here: http://www.gnu.org/licenses/lgpl.html
+ *
+ * This file defines helper functions for setting up the calendar.  They are
+ * intended to help non-programmers get a working calendar on their site
+ * quickly.  This script should not be seen as part of the calendar.  It just
+ * shows you what one can do with the calendar, while in the same time
+ * providing a quick and simple method for setting it up.  If you need
+ * exhaustive customization of the calendar creation process feel free to
+ * modify this code to suit your needs (this is recommended and much better
+ * than modifying calendar.js itself).
+ */
+
+// $Id: calendar-setup.js,v 1.15 2004/02/04 08:10:03 mishoo Exp $
+
+/**
+ *  This function "patches" an input field (or other element) to use a calendar
+ *  widget for date selection.
+ *
+ *  The "params" is a single object that can have the following properties:
+ *
+ *    prop. name   | description
+ *  -------------------------------------------------------------------------------------------------
+ *   inputField    | the ID of an input field to store the date
+ *   displayArea   | the ID of a DIV or other element to show the date
+ *   button        | ID of a button or other element that will trigger the calendar
+ *   eventName     | event that will trigger the calendar, without the "on" prefix (default: "click")
+ *   ifFormat      | date format that will be stored in the input field
+ *   daFormat      | the date format that will be used to display the date in displayArea
+ *   singleClick   | (true/false) wether the calendar is in single click mode or not (default: true)
+ *   firstDay      | numeric: 0 to 6.  "0" means display Sunday first, "1" means display Monday first, etc.
+ *   align         | alignment (default: "Br"); if you don't know what's this see the calendar documentation
+ *   range         | array with 2 elements.  Default: [1900, 2999] -- the range of years available
+ *   weekNumbers   | (true/false) if it's true (default) the calendar will display week numbers
+ *   flat          | null or element ID; if not null the calendar will be a flat calendar having the parent with the given ID
+ *   flatCallback  | function that receives a JS Date object and returns an URL to point the browser to (for flat calendar)
+ *   disableFunc   | function that receives a JS Date object and should return true if that date has to be disabled in the calendar
+ *   onSelect      | function that gets called when a date is selected.  You don't _have_ to supply this (the default is generally okay)
+ *   onClose       | function that gets called when the calendar is closed.  [default]
+ *   onUpdate      | function that gets called after the date is updated in the input field.  Receives a reference to the calendar.
+ *   date          | the date that the calendar will be initially displayed to
+ *   showsTime     | default: false; if true the calendar will include a time selector
+ *   timeFormat    | the time format; can be "12" or "24", default is "12"
+ *   electric      | if true (default) then given fields/date areas are updated for each move; otherwise they're updated only on close
+ *   step          | configures the step of the years in drop-down boxes; default: 2
+ *   position      | configures the calendar absolute position; default: null
+ *   cache         | if "true" (but default: "false") it will reuse the same calendar object, where possible
+ *   showOthers    | if "true" (but default: "false") it will show days from other months too
+ *
+ *  None of them is required, they all have default values.  However, if you
+ *  pass none of "inputField", "displayArea" or "button" you'll get a warning
+ *  saying "nothing to setup".
+ */
+Calendar.setup = function (params) {
+	function param_default(pname, def) { if (typeof params[pname] == "undefined") { params[pname] = def; } };
+
+	param_default("inputField",     null);
+	param_default("displayArea",    null);
+	param_default("button",         null);
+	param_default("eventName",      "click");
+	param_default("ifFormat",       "%Y/%m/%d");
+	param_default("daFormat",       "%Y/%m/%d");
+	param_default("singleClick",    true);
+	param_default("disableFunc",    null);
+	param_default("dateStatusFunc", params["disableFunc"]);	// takes precedence if both are defined
+	param_default("firstDay",       0); // defaults to "Sunday" first
+	param_default("align",          "Br");
+	param_default("range",          [1900, 2999]);
+	param_default("weekNumbers",    true);
+	param_default("flat",           null);
+	param_default("flatCallback",   null);
+	param_default("onSelect",       null);
+	param_default("onClose",        null);
+	param_default("onUpdate",       null);
+	param_default("date",           null);
+	param_default("showsTime",      false);
+	param_default("timeFormat",     "24");
+	param_default("electric",       true);
+	param_default("step",           2);
+	param_default("position",       null);
+	param_default("cache",          false);
+	param_default("showOthers",     false);
+
+	var tmp = ["inputField", "displayArea", "button"];
+	for (var i in tmp) {
+		if (typeof params[tmp[i]] == "string") {
+			params[tmp[i]] = document.getElementById(params[tmp[i]]);
+		}
+	}
+	if (!(params.flat || params.inputField || params.displayArea || params.button)) {
+		alert("Calendar.setup:\n  Nothing to setup (no fields found).  Please check your code");
+		return false;
+	}
+
+	function onSelect(cal) {
+		var p = cal.params;
+		var update = (cal.dateClicked || p.electric);
+		if (update && p.flat) {
+			if (typeof p.flatCallback == "function")
+				p.flatCallback(cal);
+			else
+				alert("No flatCallback given -- doing nothing.");
+			return false;
+		}
+		if (update && p.inputField) {
+			p.inputField.value = cal.date.print(p.ifFormat);
+			if (typeof p.inputField.onchange == "function")
+				p.inputField.onchange();
+		}
+		if (update && p.displayArea)
+			p.displayArea.innerHTML = cal.date.print(p.daFormat);
+		if (update && p.singleClick && cal.dateClicked)
+			cal.callCloseHandler();
+		if (update && typeof p.onUpdate == "function")
+			p.onUpdate(cal);
+	};
+
+	if (params.flat != null) {
+		if (typeof params.flat == "string")
+			params.flat = document.getElementById(params.flat);
+		if (!params.flat) {
+			alert("Calendar.setup:\n  Flat specified but can't find parent.");
+			return false;
+		}
+		var cal = new Calendar(params.firstDay, params.date, params.onSelect || onSelect);
+		cal.showsTime = params.showsTime;
+		cal.time24 = (params.timeFormat == "24");
+		cal.params = params;
+		cal.weekNumbers = params.weekNumbers;
+		cal.setRange(params.range[0], params.range[1]);
+		cal.setDateStatusHandler(params.dateStatusFunc);
+		cal.create(params.flat);
+		cal.show();
+		return false;
+	}
+
+	var triggerEl = params.button || params.displayArea || params.inputField;
+	triggerEl["on" + params.eventName] = function() {
+		var dateEl = params.inputField || params.displayArea;
+		var dateFmt = params.inputField ? params.ifFormat : params.daFormat;
+		var mustCreate = false;
+		var cal = window.calendar;
+		if (!(cal && params.cache)) {
+			window.calendar = cal = new Calendar(params.firstDay,
+							     params.date,
+							     params.onSelect || onSelect,
+							     params.onClose || function(cal) { cal.hide(); });
+			cal.showsTime = params.showsTime;
+			cal.time24 = (params.timeFormat == "24");
+			cal.weekNumbers = params.weekNumbers;
+			mustCreate = true;
+		} else {
+			if (params.date)
+				cal.setDate(params.date);
+			cal.hide();
+		}
+		cal.showsOtherMonths = params.showOthers;
+		cal.yearStep = params.step;
+		cal.setRange(params.range[0], params.range[1]);
+		cal.params = params;
+		cal.setDateStatusHandler(params.dateStatusFunc);
+		cal.setDateFormat(dateFmt);
+		if (mustCreate)
+			cal.create();
+		cal.parseDate(dateEl.value || dateEl.innerHTML);
+		cal.refresh();
+		if (!params.position)
+			cal.showAtElement(params.button || params.displayArea || params.inputField, params.align);
+		else
+			cal.showAt(params.position[0], params.position[1]);
+		return false;
+	};
+};
diff --git a/skins/jscalendar/calendar-setup_stripped.js b/skins/jscalendar/calendar-setup_stripped.js
new file mode 100644
index 0000000..cc64143
--- /dev/null
+++ b/skins/jscalendar/calendar-setup_stripped.js
@@ -0,0 +1,21 @@
+/*  Copyright Mihai Bazon, 2002, 2003  |  http://dynarch.com/mishoo/
+ * ---------------------------------------------------------------------------
+ *
+ * The DHTML Calendar
+ *
+ * Details and latest version at:
+ * http://dynarch.com/mishoo/calendar.epl
+ *
+ * This script is distributed under the GNU Lesser General Public License.
+ * Read the entire license text here: http://www.gnu.org/licenses/lgpl.html
+ *
+ * This file defines helper functions for setting up the calendar.  They are
+ * intended to help non-programmers get a working calendar on their site
+ * quickly.  This script should not be seen as part of the calendar.  It just
+ * shows you what one can do with the calendar, while in the same time
+ * providing a quick and simple method for setting it up.  If you need
+ * exhaustive customization of the calendar creation process feel free to
+ * modify this code to suit your needs (this is recommended and much better
+ * than modifying calendar.js itself).
+ */
+ Calendar.setup=function(params){function param_default(pname,def){if(typeof params[pname]=="undefined"){params[pname]=def;}};param_default("inputField",null);param_default("displayArea",null);param_default("button",null);param_default("eventName","click");param_default("ifFormat","%Y/%m/%d");param_default("daFormat","%Y/%m/%d");param_default("singleClick",true);param_default("disableFunc",null);param_default("dateStatusFunc",params["disableFunc"]);param_default("firstDay",0);param_default("align","Br");param_default("range",[1900,2999]);param_default("weekNumbers",true);param_default("flat",null);param_default("flatCallback",null);param_default("onSelect",null);param_default("onClose",null);param_default("onUpdate",null);param_default("date",null);param_default("showsTime",false);param_default("timeFormat","24");param_default("electric",true);param_default("step",2);param_default("position",null);param_default("cache",false);param_default("showOthers",false);var tmp=["inputField","displayArea","button"];for(var i in tmp){if(typeof params[tmp[i]]=="string"){params[tmp[i]]=document.getElementById(params[tmp[i]]);}}if(!(params.flat||params.inputField||params.displayArea||params.button)){alert("Calendar.setup:\n  Nothing to setup (no fields found).  Please check your code");return false;}function onSelect(cal){var p=cal.params;var update=(cal.dateClicked||p.electric);if(update&&p.flat){if(typeof p.flatCallback=="function")p.flatCallback(cal);else alert("No flatCallback given -- doing nothing.");return false;}if(update&&p.inputField){p.inputField.value=cal.date.print(p.ifFormat);if(typeof p.inputField.onchange=="function")p.inputField.onchange();}if(update&&p.displayArea)p.displayArea.innerHTML=cal.date.print(p.daFormat);if(update&&p.singleClick&&cal.dateClicked)cal.callCloseHandler();if(update&&typeof p.onUpdate=="function")p.onUpdate(cal);};if(params.flat!=null){if(typeof params.flat=="string")params.flat=document.getElementById(params.flat);if(!params.flat){alert("Calendar.setup:\n  Flat specified but can't find parent.");return false;}var cal=new Calendar(params.firstDay,params.date,params.onSelect||onSelect);cal.showsTime=params.showsTime;cal.time24=(params.timeFormat=="24");cal.params=params;cal.weekNumbers=params.weekNumbers;cal.setRange(params.range[0],params.range[1]);cal.setDateStatusHandler(params.dateStatusFunc);cal.create(params.flat);cal.show();return false;}var triggerEl=params.button||params.displayArea||params.inputField;triggerEl["on"+params.eventName]=function(){var dateEl=params.inputField||params.displayArea;var dateFmt=params.inputField?params.ifFormat:params.daFormat;var mustCreate=false;var cal=window.calendar;if(!(cal&&params.cache)){window.calendar=cal=new Calendar(params.firstDay,params.date,params.onSelect||onSelect,params.onClose||function(cal){cal.hide();});cal.showsTime=params.showsTime;cal.time24=(params.timeFormat=="24");cal.weekNumbers=params.weekNumbers;mustCreate=true;}else{if(params.date)cal.setDate(params.date);cal.hide();}cal.showsOtherMonths=params.showOthers;cal.yearStep=params.step;cal.setRange(params.range[0],params.range[1]);cal.params=params;cal.setDateStatusHandler(params.dateStatusFunc);cal.setDateFormat(dateFmt);if(mustCreate)cal.create();cal.parseDate(dateEl.value||dateEl.innerHTML);cal.refresh();if(!params.position)cal.showAtElement(params.button||params.displayArea||params.inputField,params.align);else cal.showAt(params.position[0],params.position[1]);return false;};};
\ No newline at end of file
diff --git a/skins/jscalendar/calendar-system.css b/skins/jscalendar/calendar-system.css
new file mode 100644
index 0000000..8055969
--- /dev/null
+++ b/skins/jscalendar/calendar-system.css
@@ -0,0 +1,250 @@
+/* The main calendar widget.  DIV containing a table. */
+
+.calendar {
+  position: relative;
+  display: none;
+  border: 1px solid;
+  border-color: #fff #000 #000 #fff;
+  font-size: 11px;
+  cursor: default;
+  background: Window;
+  color: WindowText;
+  font-family: tahoma,verdana,sans-serif;
+}
+
+.calendar table {
+  border: 1px solid;
+  border-color: #fff #000 #000 #fff;
+  font-size: 11px;
+  cursor: default;
+  background: Window;
+  color: WindowText;
+  font-family: tahoma,verdana,sans-serif;
+}
+
+/* Header part -- contains navigation buttons and day names. */
+
+.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */
+  text-align: center;
+  padding: 1px;
+  border: 1px solid;
+  border-color: ButtonHighlight ButtonShadow ButtonShadow ButtonHighlight;
+  background: ButtonFace;
+}
+
+.calendar .nav {
+  background: ButtonFace url(menuarrow.gif) no-repeat 100% 100%;
+}
+
+.calendar thead .title { /* This holds the current "month, year" */
+  font-weight: bold;
+  padding: 1px;
+  border: 1px solid #000;
+  background: ActiveCaption;
+  color: CaptionText;
+  text-align: center;
+}
+
+.calendar thead .headrow { /* Row <TR> containing navigation buttons */
+}
+
+.calendar thead .daynames { /* Row <TR> containing the day names */
+}
+
+.calendar thead .name { /* Cells <TD> containing the day names */
+  border-bottom: 1px solid ButtonShadow;
+  padding: 2px;
+  text-align: center;
+  background: ButtonFace;
+  color: ButtonText;
+}
+
+.calendar thead .weekend { /* How a weekend day name shows in header */
+  color: #f00;
+}
+
+.calendar thead .hilite { /* How do the buttons in header appear when hover */
+  border: 2px solid;
+  padding: 0px;
+  border-color: ButtonHighlight ButtonShadow ButtonShadow ButtonHighlight;
+}
+
+.calendar thead .active { /* Active (pressed) buttons in header */
+  border-width: 1px;
+  padding: 2px 0px 0px 2px;
+  border-color: ButtonShadow ButtonHighlight ButtonHighlight ButtonShadow;
+}
+
+/* The body part -- contains all the days in month. */
+
+.calendar tbody .day { /* Cells <TD> containing month days dates */
+  width: 2em;
+  text-align: right;
+  padding: 2px 4px 2px 2px;
+}
+.calendar tbody .day.othermonth {
+  font-size: 80%;
+  color: #aaa;
+}
+.calendar tbody .day.othermonth.oweekend {
+  color: #faa;
+}
+
+.calendar table .wn {
+  padding: 2px 3px 2px 2px;
+  border-right: 1px solid ButtonShadow;
+  background: ButtonFace;
+  color: ButtonText;
+}
+
+.calendar tbody .rowhilite td {
+  background: Highlight;
+  color: HighlightText;
+}
+
+.calendar tbody td.hilite { /* Hovered cells <TD> */
+  padding: 1px 3px 1px 1px;
+  border-top: 1px solid #fff;
+  border-right: 1px solid #000;
+  border-bottom: 1px solid #000;
+  border-left: 1px solid #fff;
+}
+
+.calendar tbody td.active { /* Active (pressed) cells <TD> */
+  padding: 2px 2px 0px 2px;
+  border: 1px solid;
+  border-color: ButtonShadow ButtonHighlight ButtonHighlight ButtonShadow;
+}
+
+.calendar tbody td.selected { /* Cell showing selected date */
+  font-weight: bold;
+  border: 1px solid;
+  border-color: ButtonShadow ButtonHighlight ButtonHighlight ButtonShadow;
+  padding: 2px 2px 0px 2px;
+  background: ButtonFace;
+  color: ButtonText;
+}
+
+.calendar tbody td.weekend { /* Cells showing weekend days */
+  color: #f00;
+}
+
+.calendar tbody td.today { /* Cell showing today date */
+  font-weight: bold;
+  color: #00f;
+}
+
+.calendar tbody td.disabled { color: GrayText; }
+
+.calendar tbody .emptycell { /* Empty cells (the best is to hide them) */
+  visibility: hidden;
+}
+
+.calendar tbody .emptyrow { /* Empty row (some months need less than 6 rows) */
+  display: none;
+}
+
+/* The footer part -- status bar and "Close" button */
+
+.calendar tfoot .footrow { /* The <TR> in footer (only one right now) */
+}
+
+.calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */
+  background: ButtonFace;
+  padding: 1px;
+  border: 1px solid;
+  border-color: ButtonShadow ButtonHighlight ButtonHighlight ButtonShadow;
+  color: ButtonText;
+  text-align: center;
+}
+
+.calendar tfoot .hilite { /* Hover style for buttons in footer */
+  border-top: 1px solid #fff;
+  border-right: 1px solid #000;
+  border-bottom: 1px solid #000;
+  border-left: 1px solid #fff;
+  padding: 1px;
+  background: #e4e0d8;
+}
+
+.calendar tfoot .active { /* Active (pressed) style for buttons in footer */
+  padding: 2px 0px 0px 2px;
+  border-top: 1px solid #000;
+  border-right: 1px solid #fff;
+  border-bottom: 1px solid #fff;
+  border-left: 1px solid #000;
+}
+
+/* Combo boxes (menus that display months/years for direct selection) */
+
+.calendar .combo {
+  position: absolute;
+  display: none;
+  width: 4em;
+  top: 0px;
+  left: 0px;
+  cursor: default;
+  border: 1px solid;
+  border-color: ButtonHighlight ButtonShadow ButtonShadow ButtonHighlight;
+  background: Menu;
+  color: MenuText;
+  font-size: 90%;
+  padding: 1px;
+}
+
+.calendar .combo .label,
+.calendar .combo .label-IEfix {
+  text-align: center;
+  padding: 1px;
+}
+
+.calendar .combo .label-IEfix {
+  width: 4em;
+}
+
+.calendar .combo .active {
+  padding: 0px;
+  border: 1px solid #000;
+}
+
+.calendar .combo .hilite {
+  background: Highlight;
+  color: HighlightText;
+}
+
+.calendar td.time {
+  border-top: 1px solid ButtonShadow;
+  padding: 1px 0px;
+  text-align: center;
+  background-color: ButtonFace;
+}
+
+.calendar td.time .hour,
+.calendar td.time .minute,
+.calendar td.time .ampm {
+  padding: 0px 3px 0px 4px;
+  border: 1px solid #889;
+  font-weight: bold;
+  background-color: Menu;
+}
+
+.calendar td.time .ampm {
+  text-align: center;
+}
+
+.calendar td.time .colon {
+  padding: 0px 2px 0px 3px;
+  font-weight: bold;
+}
+
+.calendar td.time span.hilite {
+  border-color: #000;
+  background-color: Highlight;
+  color: HighlightText;
+}
+
+.calendar td.time span.active {
+  border-color: #f00;
+  background-color: #000;
+  color: #0f0;
+}
diff --git a/skins/jscalendar/calendar-tas.css b/skins/jscalendar/calendar-tas.css
new file mode 100644
index 0000000..c336e71
--- /dev/null
+++ b/skins/jscalendar/calendar-tas.css
@@ -0,0 +1,238 @@
+/* The main calendar widget.  DIV containing a table. */
+
+div.calendar { position: relative; }
+
+.calendar, .calendar table {
+  border: 1px solid #655;
+  font-size: 11px;
+  color: #000;
+  cursor: default;
+  background: #ffd;
+  font-family: tahoma,verdana,sans-serif;
+  filter:
+progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#DDDCCC,EndColorStr=#FFFFFF);
+}
+
+/* Header part -- contains navigation buttons and day names. */
+
+.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */
+  text-align: center;    /* They are the navigation buttons */
+  padding: 2px;          /* Make the buttons seem like they're pressing */
+  color:#363636;
+}
+
+.calendar .nav {
+  background: #edc url(menuarrow.gif) no-repeat 100% 100%;
+}
+
+.calendar thead .title { /* This holds the current "month, year" */
+  font-weight: bold;      /* Pressing it will take you to the current date */
+  text-align: center;
+  background: #654;
+  color: #363636;
+  padding: 2px;
+  filter:
+progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#ffffff,EndColorStr=#dddccc);
+}
+
+.calendar thead .headrow { /* Row <TR> containing navigation buttons */
+  /*background: #3B86A0;*/
+  color: #363636;
+  font-weight: bold; 	
+filter:
+progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#ffffff,EndColorStr=#3b86a0);
+}
+
+.calendar thead .name { /* Cells <TD> containing the day names */
+  border-bottom: 1px solid #655;
+  padding: 2px;
+  text-align: center;
+  color: #363636;
+    filter:
+progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#DDDCCC,EndColorStr=#FFFFFF);
+}
+
+.calendar thead .weekend { /* How a weekend day name shows in header */
+  color: #f00;
+}
+
+.calendar thead .hilite { /* How do the buttons in header appear when hover */
+  background-color: #ffcc86;
+  color: #000;
+  border: 1px solid #b59345;
+  padding: 1px;
+}
+
+.calendar thead .active { /* Active (pressed) buttons in header */
+  background-color: #c77;
+  padding: 2px 0px 0px 2px;
+}
+
+.calendar thead .daynames { /* Row <TR> containing the day names */
+  background: #fed;
+}
+
+/* The body part -- contains all the days in month. */
+
+.calendar tbody .day { /* Cells <TD> containing month days dates */
+  width: 2em;
+  text-align: right;
+  padding: 2px 4px 2px 2px;
+}
+.calendar tbody .day.othermonth {
+  font-size: 80%;
+  color: #aaa;
+}
+.calendar tbody .day.othermonth.oweekend {
+  color: #faa;
+}
+
+.calendar table .wn {
+  padding: 2px 3px 2px 2px;
+  border-right: 1px solid #000;
+  background: #fed;
+}
+
+.calendar tbody .rowhilite td {
+ background: #ddf;
+  
+}
+
+.calendar tbody .rowhilite td.wn {
+  background: #efe;
+}
+
+.calendar tbody td.hilite { /* Hovered cells <TD> */
+  background: #ffe;
+  padding: 1px 3px 1px 1px;
+  border: 1px solid #bbb;
+}
+
+.calendar tbody td.active { /* Active (pressed) cells <TD> */
+  background: #ddc;
+  padding: 2px 2px 0px 2px;
+}
+
+.calendar tbody td.selected { /* Cell showing today date */
+  font-weight: bold;
+  border: 1px solid #000;
+  padding: 1px 3px 1px 1px;
+  background: #fea;
+}
+
+.calendar tbody td.weekend { /* Cells showing weekend days */
+  color: #f00;
+}
+
+.calendar tbody td.today { font-weight: bold; }
+
+.calendar tbody .disabled { color: #999; }
+
+.calendar tbody .emptycell { /* Empty cells (the best is to hide them) */
+  visibility: hidden;
+}
+
+.calendar tbody .emptyrow { /* Empty row (some months need less than 6 rows) */
+  display: none;
+}
+
+/* The footer part -- status bar and "Close" button */
+
+.calendar tfoot .footrow { /* The <TR> in footer (only one right now) */
+  text-align: center;
+  background: #988;
+  color: #000;
+  
+}
+
+.calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */
+  border-top: 1px solid #655;
+  background: #dcb;
+  color: #363636;
+  font-weight: bold;
+	filter:
+progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#FFFFFF,EndColorStr=#DDDCCC);
+}
+.calendar tfoot .hilite { /* Hover style for buttons in footer */
+  background: #faa;
+  border: 1px solid #f40;
+  padding: 1px;
+}
+
+.calendar tfoot .active { /* Active (pressed) style for buttons in footer */
+  background: #c77;
+  padding: 2px 0px 0px 2px;
+}
+
+/* Combo boxes (menus that display months/years for direct selection) */
+
+.combo {
+  position: absolute;
+  display: none;
+  top: 0px;
+  left: 0px;
+  width: 4em;
+  cursor: default;
+  border: 1px solid #655;
+  background: #ffe;
+  color: #000;
+  font-size: smaller;
+}
+
+.combo .label,
+.combo .label-IEfix {
+  text-align: center;
+  padding: 1px;
+}
+
+.combo .label-IEfix {
+  width: 4em;
+}
+
+.combo .hilite {
+  background: #fc8;
+}
+
+.combo .active {
+  border-top: 1px solid #a64;
+  border-bottom: 1px solid #a64;
+  background: #fee;
+  font-weight: bold;
+}
+
+.calendar td.time {
+  border-top: 1px solid #a88;
+  padding: 1px 0px;
+  text-align: center;
+  background-color: #fed;
+}
+
+.calendar td.time .hour,
+.calendar td.time .minute,
+.calendar td.time .ampm {
+  padding: 0px 3px 0px 4px;
+  border: 1px solid #988;
+  font-weight: bold;
+  background-color: #fff;
+}
+
+.calendar td.time .ampm {
+  text-align: center;
+}
+
+.calendar td.time .colon {
+  padding: 0px 2px 0px 3px;
+  font-weight: bold;
+}
+
+.calendar td.time span.hilite {
+  border-color: #000;
+  background-color: #866;
+  color: #fff;
+}
+
+.calendar td.time span.active {
+  border-color: #f00;
+  background-color: #000;
+  color: #0f0;
+}
diff --git a/skins/jscalendar/calendar-win2k-1.css b/skins/jscalendar/calendar-win2k-1.css
new file mode 100644
index 0000000..2c008c6
--- /dev/null
+++ b/skins/jscalendar/calendar-win2k-1.css
@@ -0,0 +1,270 @@
+/* The main calendar widget.  DIV containing a table. */
+
+.calendar {
+  position: relative;
+  display: none;
+  border-top: 2px solid #fff;
+  border-right: 2px solid #000;
+  border-bottom: 2px solid #000;
+  border-left: 2px solid #fff;
+  font-size: 11px;
+  color: #000;
+  cursor: default;
+  background: #d4d0c8;
+  font-family: tahoma,verdana,sans-serif;
+}
+
+.calendar table {
+  border-top: 1px solid #000;
+  border-right: 1px solid #fff;
+  border-bottom: 1px solid #fff;
+  border-left: 1px solid #000;
+  font-size: 11px;
+  color: #000;
+  cursor: default;
+  background: #d4d0c8;
+  font-family: tahoma,verdana,sans-serif;
+}
+
+/* Header part -- contains navigation buttons and day names. */
+
+.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */
+  text-align: center;
+  padding: 1px;
+  border-top: 1px solid #fff;
+  border-right: 1px solid #000;
+  border-bottom: 1px solid #000;
+  border-left: 1px solid #fff;
+}
+
+.calendar .nav {
+  background: transparent url(menuarrow.gif) no-repeat 100% 100%;
+}
+
+.calendar thead .title { /* This holds the current "month, year" */
+  font-weight: bold;
+  padding: 1px;
+  border: 1px solid #000;
+  background: #848078;
+  color: #fff;
+  text-align: center;
+}
+
+.calendar thead .headrow { /* Row <TR> containing navigation buttons */
+}
+
+.calendar thead .daynames { /* Row <TR> containing the day names */
+}
+
+.calendar thead .name { /* Cells <TD> containing the day names */
+  border-bottom: 1px solid #000;
+  padding: 2px;
+  text-align: center;
+  background: #f4f0e8;
+}
+
+.calendar thead .weekend { /* How a weekend day name shows in header */
+  color: #f00;
+}
+
+.calendar thead .hilite { /* How do the buttons in header appear when hover */
+  border-top: 2px solid #fff;
+  border-right: 2px solid #000;
+  border-bottom: 2px solid #000;
+  border-left: 2px solid #fff;
+  padding: 0px;
+  background-color: #e4e0d8;
+}
+
+.calendar thead .active { /* Active (pressed) buttons in header */
+  padding: 2px 0px 0px 2px;
+  border-top: 1px solid #000;
+  border-right: 1px solid #fff;
+  border-bottom: 1px solid #fff;
+  border-left: 1px solid #000;
+  background-color: #c4c0b8;
+}
+
+/* The body part -- contains all the days in month. */
+
+.calendar tbody .day { /* Cells <TD> containing month days dates */
+  width: 2em;
+  text-align: right;
+  padding: 2px 4px 2px 2px;
+}
+.calendar tbody .day.othermonth {
+  font-size: 80%;
+  color: #aaa;
+}
+.calendar tbody .day.othermonth.oweekend {
+  color: #faa;
+}
+
+.calendar table .wn {
+  padding: 2px 3px 2px 2px;
+  border-right: 1px solid #000;
+  background: #f4f0e8;
+}
+
+.calendar tbody .rowhilite td {
+  background: #e4e0d8;
+}
+
+.calendar tbody .rowhilite td.wn {
+  background: #d4d0c8;
+}
+
+.calendar tbody td.hilite { /* Hovered cells <TD> */
+  padding: 1px 3px 1px 1px;
+  border-top: 1px solid #fff;
+  border-right: 1px solid #000;
+  border-bottom: 1px solid #000;
+  border-left: 1px solid #fff;
+}
+
+.calendar tbody td.active { /* Active (pressed) cells <TD> */
+  padding: 2px 2px 0px 2px;
+  border-top: 1px solid #000;
+  border-right: 1px solid #fff;
+  border-bottom: 1px solid #fff;
+  border-left: 1px solid #000;
+}
+
+.calendar tbody td.selected { /* Cell showing selected date */
+  font-weight: bold;
+  border-top: 1px solid #000;
+  border-right: 1px solid #fff;
+  border-bottom: 1px solid #fff;
+  border-left: 1px solid #000;
+  padding: 2px 2px 0px 2px;
+  background: #e4e0d8;
+}
+
+.calendar tbody td.weekend { /* Cells showing weekend days */
+  color: #f00;
+}
+
+.calendar tbody td.today { /* Cell showing today date */
+  font-weight: bold;
+  color: #00f;
+}
+
+.calendar tbody .disabled { color: #999; }
+
+.calendar tbody .emptycell { /* Empty cells (the best is to hide them) */
+  visibility: hidden;
+}
+
+.calendar tbody .emptyrow { /* Empty row (some months need less than 6 rows) */
+  display: none;
+}
+
+/* The footer part -- status bar and "Close" button */
+
+.calendar tfoot .footrow { /* The <TR> in footer (only one right now) */
+}
+
+.calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */
+  background: #f4f0e8;
+  padding: 1px;
+  border: 1px solid #000;
+  background: #848078;
+  color: #fff;
+  text-align: center;
+}
+
+.calendar tfoot .hilite { /* Hover style for buttons in footer */
+  border-top: 1px solid #fff;
+  border-right: 1px solid #000;
+  border-bottom: 1px solid #000;
+  border-left: 1px solid #fff;
+  padding: 1px;
+  background: #e4e0d8;
+}
+
+.calendar tfoot .active { /* Active (pressed) style for buttons in footer */
+  padding: 2px 0px 0px 2px;
+  border-top: 1px solid #000;
+  border-right: 1px solid #fff;
+  border-bottom: 1px solid #fff;
+  border-left: 1px solid #000;
+}
+
+/* Combo boxes (menus that display months/years for direct selection) */
+
+.calendar .combo {
+  position: absolute;
+  display: none;
+  width: 4em;
+  top: 0px;
+  left: 0px;
+  cursor: default;
+  border-top: 1px solid #fff;
+  border-right: 1px solid #000;
+  border-bottom: 1px solid #000;
+  border-left: 1px solid #fff;
+  background: #e4e0d8;
+  font-size: 90%;
+  padding: 1px;
+}
+
+.calendar .combo .label,
+.calendar .combo .label-IEfix {
+  text-align: center;
+  padding: 1px;
+}
+
+.calendar .combo .label-IEfix {
+  width: 4em;
+}
+
+.calendar .combo .active {
+  background: #c4c0b8;
+  padding: 0px;
+  border-top: 1px solid #000;
+  border-right: 1px solid #fff;
+  border-bottom: 1px solid #fff;
+  border-left: 1px solid #000;
+}
+
+.calendar .combo .hilite {
+  background: #048;
+  color: #fea;
+}
+
+.calendar td.time {
+  border-top: 1px solid #000;
+  padding: 1px 0px;
+  text-align: center;
+  background-color: #f4f0e8;
+}
+
+.calendar td.time .hour,
+.calendar td.time .minute,
+.calendar td.time .ampm {
+  padding: 0px 3px 0px 4px;
+  border: 1px solid #889;
+  font-weight: bold;
+  background-color: #fff;
+}
+
+.calendar td.time .ampm {
+  text-align: center;
+}
+
+.calendar td.time .colon {
+  padding: 0px 2px 0px 3px;
+  font-weight: bold;
+}
+
+.calendar td.time span.hilite {
+  border-color: #000;
+  background-color: #766;
+  color: #fff;
+}
+
+.calendar td.time span.active {
+  border-color: #f00;
+  background-color: #000;
+  color: #0f0;
+}
diff --git a/skins/jscalendar/calendar-win2k-2.css b/skins/jscalendar/calendar-win2k-2.css
new file mode 100644
index 0000000..6001cfa
--- /dev/null
+++ b/skins/jscalendar/calendar-win2k-2.css
@@ -0,0 +1,270 @@
+/* The main calendar widget.  DIV containing a table. */
+
+.calendar {
+  position: relative;
+  display: none;
+  border-top: 2px solid #fff;
+  border-right: 2px solid #000;
+  border-bottom: 2px solid #000;
+  border-left: 2px solid #fff;
+  font-size: 11px;
+  color: #000;
+  cursor: default;
+  background: #d4c8d0;
+  font-family: tahoma,verdana,sans-serif;
+}
+
+.calendar table {
+  border-top: 1px solid #000;
+  border-right: 1px solid #fff;
+  border-bottom: 1px solid #fff;
+  border-left: 1px solid #000;
+  font-size: 11px;
+  color: #000;
+  cursor: default;
+  background: #d4c8d0;
+  font-family: tahoma,verdana,sans-serif;
+}
+
+/* Header part -- contains navigation buttons and day names. */
+
+.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */
+  text-align: center;
+  padding: 1px;
+  border-top: 1px solid #fff;
+  border-right: 1px solid #000;
+  border-bottom: 1px solid #000;
+  border-left: 1px solid #fff;
+}
+
+.calendar .nav {
+  background: transparent url(menuarrow.gif) no-repeat 100% 100%;
+}
+
+.calendar thead .title { /* This holds the current "month, year" */
+  font-weight: bold;
+  padding: 1px;
+  border: 1px solid #000;
+  background: #847880;
+  color: #fff;
+  text-align: center;
+}
+
+.calendar thead .headrow { /* Row <TR> containing navigation buttons */
+}
+
+.calendar thead .daynames { /* Row <TR> containing the day names */
+}
+
+.calendar thead .name { /* Cells <TD> containing the day names */
+  border-bottom: 1px solid #000;
+  padding: 2px;
+  text-align: center;
+  background: #f4e8f0;
+}
+
+.calendar thead .weekend { /* How a weekend day name shows in header */
+  color: #f00;
+}
+
+.calendar thead .hilite { /* How do the buttons in header appear when hover */
+  border-top: 2px solid #fff;
+  border-right: 2px solid #000;
+  border-bottom: 2px solid #000;
+  border-left: 2px solid #fff;
+  padding: 0px;
+  background-color: #e4d8e0;
+}
+
+.calendar thead .active { /* Active (pressed) buttons in header */
+  padding: 2px 0px 0px 2px;
+  border-top: 1px solid #000;
+  border-right: 1px solid #fff;
+  border-bottom: 1px solid #fff;
+  border-left: 1px solid #000;
+  background-color: #c4b8c0;
+}
+
+/* The body part -- contains all the days in month. */
+
+.calendar tbody .day { /* Cells <TD> containing month days dates */
+  width: 2em;
+  text-align: right;
+  padding: 2px 4px 2px 2px;
+}
+.calendar tbody .day.othermonth {
+  font-size: 80%;
+  color: #aaa;
+}
+.calendar tbody .day.othermonth.oweekend {
+  color: #faa;
+}
+
+.calendar table .wn {
+  padding: 2px 3px 2px 2px;
+  border-right: 1px solid #000;
+  background: #f4e8f0;
+}
+
+.calendar tbody .rowhilite td {
+  background: #e4d8e0;
+}
+
+.calendar tbody .rowhilite td.wn {
+  background: #d4c8d0;
+}
+
+.calendar tbody td.hilite { /* Hovered cells <TD> */
+  padding: 1px 3px 1px 1px;
+  border-top: 1px solid #fff;
+  border-right: 1px solid #000;
+  border-bottom: 1px solid #000;
+  border-left: 1px solid #fff;
+}
+
+.calendar tbody td.active { /* Active (pressed) cells <TD> */
+  padding: 2px 2px 0px 2px;
+  border-top: 1px solid #000;
+  border-right: 1px solid #fff;
+  border-bottom: 1px solid #fff;
+  border-left: 1px solid #000;
+}
+
+.calendar tbody td.selected { /* Cell showing selected date */
+  font-weight: bold;
+  border-top: 1px solid #000;
+  border-right: 1px solid #fff;
+  border-bottom: 1px solid #fff;
+  border-left: 1px solid #000;
+  padding: 2px 2px 0px 2px;
+  background: #e4d8e0;
+}
+
+.calendar tbody td.weekend { /* Cells showing weekend days */
+  color: #f00;
+}
+
+.calendar tbody td.today { /* Cell showing today date */
+  font-weight: bold;
+  color: #00f;
+}
+
+.calendar tbody .disabled { color: #999; }
+
+.calendar tbody .emptycell { /* Empty cells (the best is to hide them) */
+  visibility: hidden;
+}
+
+.calendar tbody .emptyrow { /* Empty row (some months need less than 6 rows) */
+  display: none;
+}
+
+/* The footer part -- status bar and "Close" button */
+
+.calendar tfoot .footrow { /* The <TR> in footer (only one right now) */
+}
+
+.calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */
+  background: #f4e8f0;
+  padding: 1px;
+  border: 1px solid #000;
+  background: #847880;
+  color: #fff;
+  text-align: center;
+}
+
+.calendar tfoot .hilite { /* Hover style for buttons in footer */
+  border-top: 1px solid #fff;
+  border-right: 1px solid #000;
+  border-bottom: 1px solid #000;
+  border-left: 1px solid #fff;
+  padding: 1px;
+  background: #e4d8e0;
+}
+
+.calendar tfoot .active { /* Active (pressed) style for buttons in footer */
+  padding: 2px 0px 0px 2px;
+  border-top: 1px solid #000;
+  border-right: 1px solid #fff;
+  border-bottom: 1px solid #fff;
+  border-left: 1px solid #000;
+}
+
+/* Combo boxes (menus that display months/years for direct selection) */
+
+.calendar .combo {
+  position: absolute;
+  display: none;
+  width: 4em;
+  top: 0px;
+  left: 0px;
+  cursor: default;
+  border-top: 1px solid #fff;
+  border-right: 1px solid #000;
+  border-bottom: 1px solid #000;
+  border-left: 1px solid #fff;
+  background: #e4d8e0;
+  font-size: 90%;
+  padding: 1px;
+}
+
+.calendar .combo .label,
+.calendar .combo .label-IEfix {
+  text-align: center;
+  padding: 1px;
+}
+
+.calendar .combo .label-IEfix {
+  width: 4em;
+}
+
+.calendar .combo .active {
+  background: #d4c8d0;
+  padding: 0px;
+  border-top: 1px solid #000;
+  border-right: 1px solid #fff;
+  border-bottom: 1px solid #fff;
+  border-left: 1px solid #000;
+}
+
+.calendar .combo .hilite {
+  background: #408;
+  color: #fea;
+}
+
+.calendar td.time {
+  border-top: 1px solid #000;
+  padding: 1px 0px;
+  text-align: center;
+  background-color: #f4f0e8;
+}
+
+.calendar td.time .hour,
+.calendar td.time .minute,
+.calendar td.time .ampm {
+  padding: 0px 3px 0px 4px;
+  border: 1px solid #889;
+  font-weight: bold;
+  background-color: #fff;
+}
+
+.calendar td.time .ampm {
+  text-align: center;
+}
+
+.calendar td.time .colon {
+  padding: 0px 2px 0px 3px;
+  font-weight: bold;
+}
+
+.calendar td.time span.hilite {
+  border-color: #000;
+  background-color: #766;
+  color: #fff;
+}
+
+.calendar td.time span.active {
+  border-color: #f00;
+  background-color: #000;
+  color: #0f0;
+}
diff --git a/skins/jscalendar/calendar-win2k-cold-1.css b/skins/jscalendar/calendar-win2k-cold-1.css
new file mode 100644
index 0000000..bb5c2cb
--- /dev/null
+++ b/skins/jscalendar/calendar-win2k-cold-1.css
@@ -0,0 +1,264 @@
+/* The main calendar widget.  DIV containing a table. */
+
+.calendar {
+  position: relative;
+  display: none;
+  border-top: 2px solid #fff;
+  border-right: 2px solid #000;
+  border-bottom: 2px solid #000;
+  border-left: 2px solid #fff;
+  font-size: 11px;
+  color: #000;
+  cursor: default;
+  background: #c8d0d4;
+  font-family: tahoma,verdana,sans-serif;
+}
+
+.calendar table {
+  border-top: 1px solid #000;
+  border-right: 1px solid #fff;
+  border-bottom: 1px solid #fff;
+  border-left: 1px solid #000;
+  font-size: 11px;
+  color: #000;
+  cursor: default;
+  background: #c8d0d4;
+  font-family: tahoma,verdana,sans-serif;
+}
+
+/* Header part -- contains navigation buttons and day names. */
+
+.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */
+  text-align: center;
+  padding: 1px;
+  border-top: 1px solid #fff;
+  border-right: 1px solid #000;
+  border-bottom: 1px solid #000;
+  border-left: 1px solid #fff;
+}
+
+.calendar .nav {
+  background: transparent url(menuarrow.gif) no-repeat 100% 100%;
+}
+
+.calendar thead .title { /* This holds the current "month, year" */
+  font-weight: bold;
+  padding: 1px;
+  border: 1px solid #000;
+  background: #788084;
+  color: #fff;
+  text-align: center;
+}
+
+.calendar thead .headrow { /* Row <TR> containing navigation buttons */
+}
+
+.calendar thead .daynames { /* Row <TR> containing the day names */
+}
+
+.calendar thead .name { /* Cells <TD> containing the day names */
+  border-bottom: 1px solid #000;
+  padding: 2px;
+  text-align: center;
+  background: #e8f0f4;
+}
+
+.calendar thead .weekend { /* How a weekend day name shows in header */
+  color: #f00;
+}
+
+.calendar thead .hilite { /* How do the buttons in header appear when hover */
+  border-top: 2px solid #fff;
+  border-right: 2px solid #000;
+  border-bottom: 2px solid #000;
+  border-left: 2px solid #fff;
+  padding: 0px;
+  background-color: #d8e0e4;
+}
+
+.calendar thead .active { /* Active (pressed) buttons in header */
+  padding: 2px 0px 0px 2px;
+  border-top: 1px solid #000;
+  border-right: 1px solid #fff;
+  border-bottom: 1px solid #fff;
+  border-left: 1px solid #000;
+  background-color: #b8c0c4;
+}
+
+/* The body part -- contains all the days in month. */
+
+.calendar tbody .day { /* Cells <TD> containing month days dates */
+  width: 2em;
+  text-align: right;
+  padding: 2px 4px 2px 2px;
+}
+.calendar tbody .day.othermonth {
+  font-size: 80%;
+  color: #aaa;
+}
+.calendar tbody .day.othermonth.oweekend {
+  color: #faa;
+}
+
+.calendar table .wn {
+  padding: 2px 3px 2px 2px;
+  border-right: 1px solid #000;
+  background: #e8f4f0;
+}
+
+.calendar tbody .rowhilite td {
+  background: #d8e4e0;
+}
+
+.calendar tbody .rowhilite td.wn {
+  background: #c8d4d0;
+}
+
+.calendar tbody td.hilite { /* Hovered cells <TD> */
+  padding: 1px 3px 1px 1px;
+  border: 1px solid;
+  border-color: #fff #000 #000 #fff;
+}
+
+.calendar tbody td.active { /* Active (pressed) cells <TD> */
+  padding: 2px 2px 0px 2px;
+  border: 1px solid;
+  border-color: #000 #fff #fff #000;
+}
+
+.calendar tbody td.selected { /* Cell showing selected date */
+  font-weight: bold;
+  padding: 2px 2px 0px 2px;
+  border: 1px solid;
+  border-color: #000 #fff #fff #000;
+  background: #d8e0e4;
+}
+
+.calendar tbody td.weekend { /* Cells showing weekend days */
+  color: #f00;
+}
+
+.calendar tbody td.today { /* Cell showing today date */
+  font-weight: bold;
+  color: #00f;
+}
+
+.calendar tbody .disabled { color: #999; }
+
+.calendar tbody .emptycell { /* Empty cells (the best is to hide them) */
+  visibility: hidden;
+}
+
+.calendar tbody .emptyrow { /* Empty row (some months need less than 6 rows) */
+  display: none;
+}
+
+/* The footer part -- status bar and "Close" button */
+
+.calendar tfoot .footrow { /* The <TR> in footer (only one right now) */
+}
+
+.calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */
+  background: #e8f0f4;
+  padding: 1px;
+  border: 1px solid #000;
+  background: #788084;
+  color: #fff;
+  text-align: center;
+}
+
+.calendar tfoot .hilite { /* Hover style for buttons in footer */
+  border-top: 1px solid #fff;
+  border-right: 1px solid #000;
+  border-bottom: 1px solid #000;
+  border-left: 1px solid #fff;
+  padding: 1px;
+  background: #d8e0e4;
+}
+
+.calendar tfoot .active { /* Active (pressed) style for buttons in footer */
+  padding: 2px 0px 0px 2px;
+  border-top: 1px solid #000;
+  border-right: 1px solid #fff;
+  border-bottom: 1px solid #fff;
+  border-left: 1px solid #000;
+}
+
+/* Combo boxes (menus that display months/years for direct selection) */
+
+.calendar .combo {
+  position: absolute;
+  display: none;
+  width: 4em;
+  top: 0px;
+  left: 0px;
+  cursor: default;
+  border-top: 1px solid #fff;
+  border-right: 1px solid #000;
+  border-bottom: 1px solid #000;
+  border-left: 1px solid #fff;
+  background: #d8e0e4;
+  font-size: 90%;
+  padding: 1px;
+}
+
+.calendar .combo .label,
+.calendar .combo .label-IEfix {
+  text-align: center;
+  padding: 1px;
+}
+
+.calendar .combo .label-IEfix {
+  width: 4em;
+}
+
+.calendar .combo .active {
+  background: #c8d0d4;
+  padding: 0px;
+  border-top: 1px solid #000;
+  border-right: 1px solid #fff;
+  border-bottom: 1px solid #fff;
+  border-left: 1px solid #000;
+}
+
+.calendar .combo .hilite {
+  background: #048;
+  color: #aef;
+}
+
+.calendar td.time {
+  border-top: 1px solid #000;
+  padding: 1px 0px;
+  text-align: center;
+  background-color: #e8f0f4;
+}
+
+.calendar td.time .hour,
+.calendar td.time .minute,
+.calendar td.time .ampm {
+  padding: 0px 3px 0px 4px;
+  border: 1px solid #889;
+  font-weight: bold;
+  background-color: #fff;
+}
+
+.calendar td.time .ampm {
+  text-align: center;
+}
+
+.calendar td.time .colon {
+  padding: 0px 2px 0px 3px;
+  font-weight: bold;
+}
+
+.calendar td.time span.hilite {
+  border-color: #000;
+  background-color: #667;
+  color: #fff;
+}
+
+.calendar td.time span.active {
+  border-color: #f00;
+  background-color: #000;
+  color: #0f0;
+}
diff --git a/skins/jscalendar/calendar-win2k-cold-2.css b/skins/jscalendar/calendar-win2k-cold-2.css
new file mode 100644
index 0000000..b43ce57
--- /dev/null
+++ b/skins/jscalendar/calendar-win2k-cold-2.css
@@ -0,0 +1,270 @@
+/* The main calendar widget.  DIV containing a table. */
+
+.calendar {
+  position: relative;
+  display: none;
+  border-top: 2px solid #fff;
+  border-right: 2px solid #000;
+  border-bottom: 2px solid #000;
+  border-left: 2px solid #fff;
+  font-size: 11px;
+  color: #000;
+  cursor: default;
+  background: #c8d4d0;
+  font-family: tahoma,verdana,sans-serif;
+}
+
+.calendar table {
+  border-top: 1px solid #000;
+  border-right: 1px solid #fff;
+  border-bottom: 1px solid #fff;
+  border-left: 1px solid #000;
+  font-size: 11px;
+  color: #000;
+  cursor: default;
+  background: #c8d4d0;
+  font-family: tahoma,verdana,sans-serif;
+}
+
+/* Header part -- contains navigation buttons and day names. */
+
+.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */
+  text-align: center;
+  padding: 1px;
+  border-top: 1px solid #fff;
+  border-right: 1px solid #000;
+  border-bottom: 1px solid #000;
+  border-left: 1px solid #fff;
+}
+
+.calendar .nav {
+  background: transparent url(menuarrow.gif) no-repeat 100% 100%;
+}
+
+.calendar thead .title { /* This holds the current "month, year" */
+  font-weight: bold;
+  padding: 1px;
+  border: 1px solid #000;
+  background: #788480;
+  color: #fff;
+  text-align: center;
+}
+
+.calendar thead .headrow { /* Row <TR> containing navigation buttons */
+}
+
+.calendar thead .daynames { /* Row <TR> containing the day names */
+}
+
+.calendar thead .name { /* Cells <TD> containing the day names */
+  border-bottom: 1px solid #000;
+  padding: 2px;
+  text-align: center;
+  background: #e8f4f0;
+}
+
+.calendar thead .weekend { /* How a weekend day name shows in header */
+  color: #f00;
+}
+
+.calendar thead .hilite { /* How do the buttons in header appear when hover */
+  border-top: 2px solid #fff;
+  border-right: 2px solid #000;
+  border-bottom: 2px solid #000;
+  border-left: 2px solid #fff;
+  padding: 0px;
+  background-color: #d8e4e0;
+}
+
+.calendar thead .active { /* Active (pressed) buttons in header */
+  padding: 2px 0px 0px 2px;
+  border-top: 1px solid #000;
+  border-right: 1px solid #fff;
+  border-bottom: 1px solid #fff;
+  border-left: 1px solid #000;
+  background-color: #b8c4c0;
+}
+
+/* The body part -- contains all the days in month. */
+
+.calendar tbody .day { /* Cells <TD> containing month days dates */
+  width: 2em;
+  text-align: right;
+  padding: 2px 4px 2px 2px;
+}
+.calendar tbody .day.othermonth {
+  font-size: 80%;
+  color: #aaa;
+}
+.calendar tbody .day.othermonth.oweekend {
+  color: #faa;
+}
+
+.calendar table .wn {
+  padding: 2px 3px 2px 2px;
+  border-right: 1px solid #000;
+  background: #e8f4f0;
+}
+
+.calendar tbody .rowhilite td {
+  background: #d8e4e0;
+}
+
+.calendar tbody .rowhilite td.wn {
+  background: #c8d4d0;
+}
+
+.calendar tbody td.hilite { /* Hovered cells <TD> */
+  padding: 1px 3px 1px 1px;
+  border-top: 1px solid #fff;
+  border-right: 1px solid #000;
+  border-bottom: 1px solid #000;
+  border-left: 1px solid #fff;
+}
+
+.calendar tbody td.active { /* Active (pressed) cells <TD> */
+  padding: 2px 2px 0px 2px;
+  border-top: 1px solid #000;
+  border-right: 1px solid #fff;
+  border-bottom: 1px solid #fff;
+  border-left: 1px solid #000;
+}
+
+.calendar tbody td.selected { /* Cell showing selected date */
+  font-weight: bold;
+  border-top: 1px solid #000;
+  border-right: 1px solid #fff;
+  border-bottom: 1px solid #fff;
+  border-left: 1px solid #000;
+  padding: 2px 2px 0px 2px;
+  background: #d8e4e0;
+}
+
+.calendar tbody td.weekend { /* Cells showing weekend days */
+  color: #f00;
+}
+
+.calendar tbody td.today { /* Cell showing today date */
+  font-weight: bold;
+  color: #00f;
+}
+
+.calendar tbody .disabled { color: #999; }
+
+.calendar tbody .emptycell { /* Empty cells (the best is to hide them) */
+  visibility: hidden;
+}
+
+.calendar tbody .emptyrow { /* Empty row (some months need less than 6 rows) */
+  display: none;
+}
+
+/* The footer part -- status bar and "Close" button */
+
+.calendar tfoot .footrow { /* The <TR> in footer (only one right now) */
+}
+
+.calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */
+  background: #e8f4f0;
+  padding: 1px;
+  border: 1px solid #000;
+  background: #788480;
+  color: #fff;
+  text-align: center;
+}
+
+.calendar tfoot .hilite { /* Hover style for buttons in footer */
+  border-top: 1px solid #fff;
+  border-right: 1px solid #000;
+  border-bottom: 1px solid #000;
+  border-left: 1px solid #fff;
+  padding: 1px;
+  background: #d8e4e0;
+}
+
+.calendar tfoot .active { /* Active (pressed) style for buttons in footer */
+  padding: 2px 0px 0px 2px;
+  border-top: 1px solid #000;
+  border-right: 1px solid #fff;
+  border-bottom: 1px solid #fff;
+  border-left: 1px solid #000;
+}
+
+/* Combo boxes (menus that display months/years for direct selection) */
+
+.calendar .combo {
+  position: absolute;
+  display: none;
+  width: 4em;
+  top: 0px;
+  left: 0px;
+  cursor: default;
+  border-top: 1px solid #fff;
+  border-right: 1px solid #000;
+  border-bottom: 1px solid #000;
+  border-left: 1px solid #fff;
+  background: #d8e4e0;
+  font-size: 90%;
+  padding: 1px;
+}
+
+.calendar .combo .label,
+.calendar .combo .label-IEfix {
+  text-align: center;
+  padding: 1px;
+}
+
+.calendar .combo .label-IEfix {
+  width: 4em;
+}
+
+.calendar .combo .active {
+  background: #c8d4d0;
+  padding: 0px;
+  border-top: 1px solid #000;
+  border-right: 1px solid #fff;
+  border-bottom: 1px solid #fff;
+  border-left: 1px solid #000;
+}
+
+.calendar .combo .hilite {
+  background: #048;
+  color: #aef;
+}
+
+.calendar td.time {
+  border-top: 1px solid #000;
+  padding: 1px 0px;
+  text-align: center;
+  background-color: #e8f0f4;
+}
+
+.calendar td.time .hour,
+.calendar td.time .minute,
+.calendar td.time .ampm {
+  padding: 0px 3px 0px 4px;
+  border: 1px solid #889;
+  font-weight: bold;
+  background-color: #fff;
+}
+
+.calendar td.time .ampm {
+  text-align: center;
+}
+
+.calendar td.time .colon {
+  padding: 0px 2px 0px 3px;
+  font-weight: bold;
+}
+
+.calendar td.time span.hilite {
+  border-color: #000;
+  background-color: #667;
+  color: #fff;
+}
+
+.calendar td.time span.active {
+  border-color: #f00;
+  background-color: #000;
+  color: #0f0;
+}
diff --git a/skins/jscalendar/calendar.js b/skins/jscalendar/calendar.js
new file mode 100644
index 0000000..b1f3521
--- /dev/null
+++ b/skins/jscalendar/calendar.js
@@ -0,0 +1,1715 @@
+/*  Copyright Mihai Bazon, 2002, 2003  |  http://dynarch.com/mishoo/
+ * ------------------------------------------------------------------
+ *
+ * The DHTML Calendar, version 0.9.6 "Keep cool but don't freeze"
+ *
+ * Details and latest version at:
+ * http://dynarch.com/mishoo/calendar.epl
+ *
+ * This script is distributed under the GNU Lesser General Public License.
+ * Read the entire license text here: http://www.gnu.org/licenses/lgpl.html
+ */
+
+// $Id: calendar.js,v 1.34 2004/02/06 18:53:11 mishoo Exp $
+
+/** The Calendar object constructor. */
+Calendar = function (firstDayOfWeek, dateStr, onSelected, onClose) {
+	// member variables
+	this.activeDiv = null;
+	this.currentDateEl = null;
+	this.getDateStatus = null;
+	this.timeout = null;
+	this.onSelected = onSelected || null;
+	this.onClose = onClose || null;
+	this.dragging = false;
+	this.hidden = false;
+	this.minYear = 1970;
+	this.maxYear = 2050;
+	this.dateFormat = Calendar._TT["DEF_DATE_FORMAT"];
+	this.ttDateFormat = Calendar._TT["TT_DATE_FORMAT"];
+	this.isPopup = true;
+	this.weekNumbers = true;
+	this.firstDayOfWeek = firstDayOfWeek; // 0 for Sunday, 1 for Monday, etc.
+	this.showsOtherMonths = false;
+	this.dateStr = dateStr;
+	this.ar_days = null;
+	this.showsTime = false;
+	this.time24 = true;
+	this.yearStep = 2;
+	// HTML elements
+	this.table = null;
+	this.element = null;
+	this.tbody = null;
+	this.firstdayname = null;
+	// Combo boxes
+	this.monthsCombo = null;
+	this.yearsCombo = null;
+	this.hilitedMonth = null;
+	this.activeMonth = null;
+	this.hilitedYear = null;
+	this.activeYear = null;
+	// Information
+	this.dateClicked = false;
+
+	// one-time initializations
+	if (typeof Calendar._SDN == "undefined") {
+		// table of short day names
+		if (typeof Calendar._SDN_len == "undefined")
+			Calendar._SDN_len = 3;
+		var ar = new Array();
+		for (var i = 8; i > 0;) {
+			ar[--i] = Calendar._DN[i].substr(0, Calendar._SDN_len);
+		}
+		Calendar._SDN = ar;
+		// table of short month names
+		if (typeof Calendar._SMN_len == "undefined")
+			Calendar._SMN_len = 3;
+		ar = new Array();
+		for (var i = 12; i > 0;) {
+			ar[--i] = Calendar._MN[i].substr(0, Calendar._SMN_len);
+		}
+		Calendar._SMN = ar;
+	}
+};
+
+// ** constants
+
+/// "static", needed for event handlers.
+Calendar._C = null;
+
+/// detect a special case of "web browser"
+Calendar.is_ie = ( /msie/i.test(navigator.userAgent) &&
+		   !/opera/i.test(navigator.userAgent) );
+
+Calendar.is_ie5 = ( Calendar.is_ie && /msie 5\.0/i.test(navigator.userAgent) );
+
+/// detect Opera browser
+Calendar.is_opera = /opera/i.test(navigator.userAgent);
+
+/// detect KHTML-based browsers
+Calendar.is_khtml = /Konqueror|Safari|KHTML/i.test(navigator.userAgent);
+
+// BEGIN: UTILITY FUNCTIONS; beware that these might be moved into a separate
+//        library, at some point.
+
+Calendar.getAbsolutePos = function(el) {
+	var SL = 0, ST = 0;
+	var is_div = /^div$/i.test(el.tagName);
+	if (is_div && el.scrollLeft)
+		SL = el.scrollLeft;
+	if (is_div && el.scrollTop)
+		ST = el.scrollTop;
+	var r = { x: el.offsetLeft - SL, y: el.offsetTop - ST };
+	if (el.offsetParent) {
+		var tmp = this.getAbsolutePos(el.offsetParent);
+		r.x += tmp.x;
+		r.y += tmp.y;
+	}
+	return r;
+};
+
+Calendar.isRelated = function (el, evt) {
+	var related = evt.relatedTarget;
+	if (!related) {
+		var type = evt.type;
+		if (type == "mouseover") {
+			related = evt.fromElement;
+		} else if (type == "mouseout") {
+			related = evt.toElement;
+		}
+	}
+	while (related) {
+		if (related == el) {
+			return true;
+		}
+		related = related.parentNode;
+	}
+	return false;
+};
+
+Calendar.removeClass = function(el, className) {
+	if (!(el && el.className)) {
+		return;
+	}
+	var cls = el.className.split(" ");
+	var ar = new Array();
+	for (var i = cls.length; i > 0;) {
+		if (cls[--i] != className) {
+			ar[ar.length] = cls[i];
+		}
+	}
+	el.className = ar.join(" ");
+};
+
+Calendar.addClass = function(el, className) {
+	Calendar.removeClass(el, className);
+	el.className += " " + className;
+};
+
+Calendar.getElement = function(ev) {
+	if (Calendar.is_ie) {
+		return window.event.srcElement;
+	} else {
+		return ev.currentTarget;
+	}
+};
+
+Calendar.getTargetElement = function(ev) {
+	if (Calendar.is_ie) {
+		return window.event.srcElement;
+	} else {
+		return ev.target;
+	}
+};
+
+Calendar.stopEvent = function(ev) {
+	ev || (ev = window.event);
+	if (Calendar.is_ie) {
+		ev.cancelBubble = true;
+		ev.returnValue = false;
+	} else {
+		ev.preventDefault();
+		ev.stopPropagation();
+	}
+	return false;
+};
+
+Calendar.addEvent = function(el, evname, func) {
+	if (el.attachEvent) { // IE
+		el.attachEvent("on" + evname, func);
+	} else if (el.addEventListener) { // Gecko / W3C
+		el.addEventListener(evname, func, true);
+	} else {
+		el["on" + evname] = func;
+	}
+};
+
+Calendar.removeEvent = function(el, evname, func) {
+	if (el.detachEvent) { // IE
+		el.detachEvent("on" + evname, func);
+	} else if (el.removeEventListener) { // Gecko / W3C
+		el.removeEventListener(evname, func, true);
+	} else {
+		el["on" + evname] = null;
+	}
+};
+
+Calendar.createElement = function(type, parent) {
+	var el = null;
+	if (document.createElementNS) {
+		// use the XHTML namespace; IE won't normally get here unless
+		// _they_ "fix" the DOM2 implementation.
+		el = document.createElementNS("http://www.w3.org/1999/xhtml", type);
+	} else {
+		el = document.createElement(type);
+	}
+	if (typeof parent != "undefined") {
+		parent.appendChild(el);
+	}
+	return el;
+};
+
+// END: UTILITY FUNCTIONS
+
+// BEGIN: CALENDAR STATIC FUNCTIONS
+
+/** Internal -- adds a set of events to make some element behave like a button. */
+Calendar._add_evs = function(el) {
+	with (Calendar) {
+		addEvent(el, "mouseover", dayMouseOver);
+		addEvent(el, "mousedown", dayMouseDown);
+		addEvent(el, "mouseout", dayMouseOut);
+		if (is_ie) {
+			addEvent(el, "dblclick", dayMouseDblClick);
+			el.setAttribute("unselectable", true);
+		}
+	}
+};
+
+Calendar.findMonth = function(el) {
+	if (typeof el.month != "undefined") {
+		return el;
+	} else if (typeof el.parentNode.month != "undefined") {
+		return el.parentNode;
+	}
+	return null;
+};
+
+Calendar.findYear = function(el) {
+	if (typeof el.year != "undefined") {
+		return el;
+	} else if (typeof el.parentNode.year != "undefined") {
+		return el.parentNode;
+	}
+	return null;
+};
+
+Calendar.showMonthsCombo = function () {
+	var cal = Calendar._C;
+	if (!cal) {
+		return false;
+	}
+	var cal = cal;
+	var cd = cal.activeDiv;
+	var mc = cal.monthsCombo;
+	if (cal.hilitedMonth) {
+		Calendar.removeClass(cal.hilitedMonth, "hilite");
+	}
+	if (cal.activeMonth) {
+		Calendar.removeClass(cal.activeMonth, "active");
+	}
+	var mon = cal.monthsCombo.getElementsByTagName("div")[cal.date.getMonth()];
+	Calendar.addClass(mon, "active");
+	cal.activeMonth = mon;
+	var s = mc.style;
+	s.display = "block";
+	if (cd.navtype < 0)
+		s.left = cd.offsetLeft + "px";
+	else {
+		var mcw = mc.offsetWidth;
+		if (typeof mcw == "undefined")
+			// Konqueror brain-dead techniques
+			mcw = 50;
+		s.left = (cd.offsetLeft + cd.offsetWidth - mcw) + "px";
+	}
+	s.top = (cd.offsetTop + cd.offsetHeight) + "px";
+};
+
+Calendar.showYearsCombo = function (fwd) {
+	var cal = Calendar._C;
+	if (!cal) {
+		return false;
+	}
+	var cal = cal;
+	var cd = cal.activeDiv;
+	var yc = cal.yearsCombo;
+	if (cal.hilitedYear) {
+		Calendar.removeClass(cal.hilitedYear, "hilite");
+	}
+	if (cal.activeYear) {
+		Calendar.removeClass(cal.activeYear, "active");
+	}
+	cal.activeYear = null;
+	var Y = cal.date.getFullYear() + (fwd ? 1 : -1);
+	var yr = yc.firstChild;
+	var show = false;
+	for (var i = 12; i > 0; --i) {
+		if (Y >= cal.minYear && Y <= cal.maxYear) {
+			yr.firstChild.data = Y;
+			yr.year = Y;
+			yr.style.display = "block";
+			show = true;
+		} else {
+			yr.style.display = "none";
+		}
+		yr = yr.nextSibling;
+		Y += fwd ? cal.yearStep : -cal.yearStep;
+	}
+	if (show) {
+		var s = yc.style;
+		s.display = "block";
+		if (cd.navtype < 0)
+			s.left = cd.offsetLeft + "px";
+		else {
+			var ycw = yc.offsetWidth;
+			if (typeof ycw == "undefined")
+				// Konqueror brain-dead techniques
+				ycw = 50;
+			s.left = (cd.offsetLeft + cd.offsetWidth - ycw) + "px";
+		}
+		s.top = (cd.offsetTop + cd.offsetHeight) + "px";
+	}
+};
+
+// event handlers
+
+Calendar.tableMouseUp = function(ev) {
+	var cal = Calendar._C;
+	if (!cal) {
+		return false;
+	}
+	if (cal.timeout) {
+		clearTimeout(cal.timeout);
+	}
+	var el = cal.activeDiv;
+	if (!el) {
+		return false;
+	}
+	var target = Calendar.getTargetElement(ev);
+	ev || (ev = window.event);
+	Calendar.removeClass(el, "active");
+	if (target == el || target.parentNode == el) {
+		Calendar.cellClick(el, ev);
+	}
+	var mon = Calendar.findMonth(target);
+	var date = null;
+	if (mon) {
+		date = new Date(cal.date);
+		if (mon.month != date.getMonth()) {
+			date.setMonth(mon.month);
+			cal.setDate(date);
+			cal.dateClicked = false;
+			cal.callHandler();
+		}
+	} else {
+		var year = Calendar.findYear(target);
+		if (year) {
+			date = new Date(cal.date);
+			if (year.year != date.getFullYear()) {
+				date.setFullYear(year.year);
+				cal.setDate(date);
+				cal.dateClicked = false;
+				cal.callHandler();
+			}
+		}
+	}
+	with (Calendar) {
+		removeEvent(document, "mouseup", tableMouseUp);
+		removeEvent(document, "mouseover", tableMouseOver);
+		removeEvent(document, "mousemove", tableMouseOver);
+		cal._hideCombos();
+		_C = null;
+		return stopEvent(ev);
+	}
+};
+
+Calendar.tableMouseOver = function (ev) {
+	var cal = Calendar._C;
+	if (!cal) {
+		return;
+	}
+	var el = cal.activeDiv;
+	var target = Calendar.getTargetElement(ev);
+	if (target == el || target.parentNode == el) {
+		Calendar.addClass(el, "hilite active");
+		Calendar.addClass(el.parentNode, "rowhilite");
+	} else {
+		if (typeof el.navtype == "undefined" || (el.navtype != 50 && (el.navtype == 0 || Math.abs(el.navtype) > 2)))
+			Calendar.removeClass(el, "active");
+		Calendar.removeClass(el, "hilite");
+		Calendar.removeClass(el.parentNode, "rowhilite");
+	}
+	ev || (ev = window.event);
+	if (el.navtype == 50 && target != el) {
+		var pos = Calendar.getAbsolutePos(el);
+		var w = el.offsetWidth;
+		var x = ev.clientX;
+		var dx;
+		var decrease = true;
+		if (x > pos.x + w) {
+			dx = x - pos.x - w;
+			decrease = false;
+		} else
+			dx = pos.x - x;
+
+		if (dx < 0) dx = 0;
+		var range = el._range;
+		var current = el._current;
+		var count = Math.floor(dx / 10) % range.length;
+		for (var i = range.length; --i >= 0;)
+			if (range[i] == current)
+				break;
+		while (count-- > 0)
+			if (decrease) {
+				if (--i < 0)
+					i = range.length - 1;
+			} else if ( ++i >= range.length )
+				i = 0;
+		var newval = range[i];
+		el.firstChild.data = newval;
+
+		cal.onUpdateTime();
+	}
+	var mon = Calendar.findMonth(target);
+	if (mon) {
+		if (mon.month != cal.date.getMonth()) {
+			if (cal.hilitedMonth) {
+				Calendar.removeClass(cal.hilitedMonth, "hilite");
+			}
+			Calendar.addClass(mon, "hilite");
+			cal.hilitedMonth = mon;
+		} else if (cal.hilitedMonth) {
+			Calendar.removeClass(cal.hilitedMonth, "hilite");
+		}
+	} else {
+		if (cal.hilitedMonth) {
+			Calendar.removeClass(cal.hilitedMonth, "hilite");
+		}
+		var year = Calendar.findYear(target);
+		if (year) {
+			if (year.year != cal.date.getFullYear()) {
+				if (cal.hilitedYear) {
+					Calendar.removeClass(cal.hilitedYear, "hilite");
+				}
+				Calendar.addClass(year, "hilite");
+				cal.hilitedYear = year;
+			} else if (cal.hilitedYear) {
+				Calendar.removeClass(cal.hilitedYear, "hilite");
+			}
+		} else if (cal.hilitedYear) {
+			Calendar.removeClass(cal.hilitedYear, "hilite");
+		}
+	}
+	return Calendar.stopEvent(ev);
+};
+
+Calendar.tableMouseDown = function (ev) {
+	if (Calendar.getTargetElement(ev) == Calendar.getElement(ev)) {
+		return Calendar.stopEvent(ev);
+	}
+};
+
+Calendar.calDragIt = function (ev) {
+	var cal = Calendar._C;
+	if (!(cal && cal.dragging)) {
+		return false;
+	}
+	var posX;
+	var posY;
+	if (Calendar.is_ie) {
+		posY = window.event.clientY + document.body.scrollTop;
+		posX = window.event.clientX + document.body.scrollLeft;
+	} else {
+		posX = ev.pageX;
+		posY = ev.pageY;
+	}
+	cal.hideShowCovered();
+	var st = cal.element.style;
+	st.left = (posX - cal.xOffs) + "px";
+	st.top = (posY - cal.yOffs) + "px";
+	return Calendar.stopEvent(ev);
+};
+
+Calendar.calDragEnd = function (ev) {
+	var cal = Calendar._C;
+	if (!cal) {
+		return false;
+	}
+	cal.dragging = false;
+	with (Calendar) {
+		removeEvent(document, "mousemove", calDragIt);
+		removeEvent(document, "mouseup", calDragEnd);
+		tableMouseUp(ev);
+	}
+	cal.hideShowCovered();
+};
+
+Calendar.dayMouseDown = function(ev) {
+	var el = Calendar.getElement(ev);
+	if (el.disabled) {
+		return false;
+	}
+	var cal = el.calendar;
+	cal.activeDiv = el;
+	Calendar._C = cal;
+	if (el.navtype != 300) with (Calendar) {
+		if (el.navtype == 50) {
+			el._current = el.firstChild.data;
+			addEvent(document, "mousemove", tableMouseOver);
+		} else
+			addEvent(document, Calendar.is_ie5 ? "mousemove" : "mouseover", tableMouseOver);
+		addClass(el, "hilite active");
+		addEvent(document, "mouseup", tableMouseUp);
+	} else if (cal.isPopup) {
+		cal._dragStart(ev);
+	}
+	if (el.navtype == -1 || el.navtype == 1) {
+		if (cal.timeout) clearTimeout(cal.timeout);
+		cal.timeout = setTimeout("Calendar.showMonthsCombo()", 250);
+	} else if (el.navtype == -2 || el.navtype == 2) {
+		if (cal.timeout) clearTimeout(cal.timeout);
+		cal.timeout = setTimeout((el.navtype > 0) ? "Calendar.showYearsCombo(true)" : "Calendar.showYearsCombo(false)", 250);
+	} else {
+		cal.timeout = null;
+	}
+	return Calendar.stopEvent(ev);
+};
+
+Calendar.dayMouseDblClick = function(ev) {
+	Calendar.cellClick(Calendar.getElement(ev), ev || window.event);
+	if (Calendar.is_ie) {
+		document.selection.empty();
+	}
+};
+
+Calendar.dayMouseOver = function(ev) {
+	var el = Calendar.getElement(ev);
+	if (Calendar.isRelated(el, ev) || Calendar._C || el.disabled) {
+		return false;
+	}
+	if (el.ttip) {
+		if (el.ttip.substr(0, 1) == "_") {
+			el.ttip = el.caldate.print(el.calendar.ttDateFormat) + el.ttip.substr(1);
+		}
+		el.calendar.tooltips.firstChild.data = el.ttip;
+	}
+	if (el.navtype != 300) {
+		Calendar.addClass(el, "hilite");
+		if (el.caldate) {
+			Calendar.addClass(el.parentNode, "rowhilite");
+		}
+	}
+	return Calendar.stopEvent(ev);
+};
+
+Calendar.dayMouseOut = function(ev) {
+	with (Calendar) {
+		var el = getElement(ev);
+		if (isRelated(el, ev) || _C || el.disabled) {
+			return false;
+		}
+		removeClass(el, "hilite");
+		if (el.caldate) {
+			removeClass(el.parentNode, "rowhilite");
+		}
+		el.calendar.tooltips.firstChild.data = _TT["SEL_DATE"];
+		return stopEvent(ev);
+	}
+};
+
+/**
+ *  A generic "click" handler :) handles all types of buttons defined in this
+ *  calendar.
+ */
+Calendar.cellClick = function(el, ev) {
+	var cal = el.calendar;
+	var closing = false;
+	var newdate = false;
+	var date = null;
+	if (typeof el.navtype == "undefined") {
+		Calendar.removeClass(cal.currentDateEl, "selected");
+		Calendar.addClass(el, "selected");
+		closing = (cal.currentDateEl == el);
+		if (!closing) {
+			cal.currentDateEl = el;
+		}
+		cal.date = new Date(el.caldate);
+		date = cal.date;
+		newdate = true;
+		// a date was clicked
+		if (!(cal.dateClicked = !el.otherMonth))
+			cal._init(cal.firstDayOfWeek, date);
+	} else {
+		if (el.navtype == 200) {
+			Calendar.removeClass(el, "hilite");
+			cal.callCloseHandler();
+			return;
+		}
+		date = (el.navtype == 0) ? new Date() : new Date(cal.date);
+		// unless "today" was clicked, we assume no date was clicked so
+		// the selected handler will know not to close the calenar when
+		// in single-click mode.
+		// cal.dateClicked = (el.navtype == 0);
+		cal.dateClicked = false;
+		var year = date.getFullYear();
+		var mon = date.getMonth();
+		function setMonth(m) {
+			var day = date.getDate();
+			var max = date.getMonthDays(m);
+			if (day > max) {
+				date.setDate(max);
+			}
+			date.setMonth(m);
+		};
+		switch (el.navtype) {
+		    case 400:
+			Calendar.removeClass(el, "hilite");
+			var text = Calendar._TT["ABOUT"];
+			if (typeof text != "undefined") {
+				text += cal.showsTime ? Calendar._TT["ABOUT_TIME"] : "";
+			} else {
+				// FIXME: this should be removed as soon as lang files get updated!
+				text = "Help and about box text is not translated into this language.\n" +
+					"If you know this language and you feel generous please update\n" +
+					"the corresponding file in \"lang\" subdir to match calendar-en.js\n" +
+					"and send it back to <mishoo@infoiasi.ro> to get it into the distribution  ;-)\n\n" +
+					"Thank you!\n" +
+					"http://dynarch.com/mishoo/calendar.epl\n";
+			}
+			alert(text);
+			return;
+		    case -2:
+			if (year > cal.minYear) {
+				date.setFullYear(year - 1);
+			}
+			break;
+		    case -1:
+			if (mon > 0) {
+				setMonth(mon - 1);
+			} else if (year-- > cal.minYear) {
+				date.setFullYear(year);
+				setMonth(11);
+			}
+			break;
+		    case 1:
+			if (mon < 11) {
+				setMonth(mon + 1);
+			} else if (year < cal.maxYear) {
+				date.setFullYear(year + 1);
+				setMonth(0);
+			}
+			break;
+		    case 2:
+			if (year < cal.maxYear) {
+				date.setFullYear(year + 1);
+			}
+			break;
+		    case 100:
+			cal.setFirstDayOfWeek(el.fdow);
+			return;
+		    case 50:
+			var range = el._range;
+			var current = el.firstChild.data;
+			for (var i = range.length; --i >= 0;)
+				if (range[i] == current)
+					break;
+			if (ev && ev.shiftKey) {
+				if (--i < 0)
+					i = range.length - 1;
+			} else if ( ++i >= range.length )
+				i = 0;
+			var newval = range[i];
+			el.firstChild.data = newval;
+			cal.onUpdateTime();
+			return;
+		    case 0:
+			// TODAY will bring us here
+			if ((typeof cal.getDateStatus == "function") && cal.getDateStatus(date, date.getFullYear(), date.getMonth(), date.getDate())) {
+				// remember, "date" was previously set to new
+				// Date() if TODAY was clicked; thus, it
+				// contains today date.
+				return false;
+			}
+			break;
+		}
+		if (!date.equalsTo(cal.date)) {
+			cal.setDate(date);
+			newdate = true;
+		}
+	}
+	if (newdate) {
+		cal.callHandler();
+	}
+	if (closing) {
+		Calendar.removeClass(el, "hilite");
+		cal.callCloseHandler();
+	}
+};
+
+// END: CALENDAR STATIC FUNCTIONS
+
+// BEGIN: CALENDAR OBJECT FUNCTIONS
+
+/**
+ *  This function creates the calendar inside the given parent.  If _par is
+ *  null than it creates a popup calendar inside the BODY element.  If _par is
+ *  an element, be it BODY, then it creates a non-popup calendar (still
+ *  hidden).  Some properties need to be set before calling this function.
+ */
+Calendar.prototype.create = function (_par) {
+	var parent = null;
+	if (! _par) {
+		// default parent is the document body, in which case we create
+		// a popup calendar.
+		parent = document.getElementsByTagName("body")[0];
+		this.isPopup = true;
+	} else {
+		parent = _par;
+		this.isPopup = false;
+	}
+	this.date = this.dateStr ? new Date(this.dateStr) : new Date();
+
+	var table = Calendar.createElement("table");
+	this.table = table;
+	table.cellSpacing = 0;
+	table.cellPadding = 0;
+	table.calendar = this;
+	Calendar.addEvent(table, "mousedown", Calendar.tableMouseDown);
+
+	var div = Calendar.createElement("div");
+	this.element = div;
+	div.className = "calendar";
+	if (this.isPopup) {
+		div.style.position = "absolute";
+		div.style.display = "none";
+	}
+	div.appendChild(table);
+
+	var thead = Calendar.createElement("thead", table);
+	var cell = null;
+	var row = null;
+
+	var cal = this;
+	var hh = function (text, cs, navtype) {
+		cell = Calendar.createElement("td", row);
+		cell.colSpan = cs;
+		cell.className = "button";
+		if (navtype != 0 && Math.abs(navtype) <= 2)
+			cell.className += " nav";
+		Calendar._add_evs(cell);
+		cell.calendar = cal;
+		cell.navtype = navtype;
+		if (text.substr(0, 1) != "&") {
+			cell.appendChild(document.createTextNode(text));
+		}
+		else {
+			// FIXME: dirty hack for entities
+			cell.innerHTML = text;
+		}
+		return cell;
+	};
+
+	row = Calendar.createElement("tr", thead);
+	var title_length = 6;
+	(this.isPopup) && --title_length;
+	(this.weekNumbers) && ++title_length;
+
+	hh("?", 1, 400).ttip = Calendar._TT["INFO"];
+	this.title = hh("", title_length, 300);
+	this.title.className = "title";
+	if (this.isPopup) {
+		this.title.ttip = Calendar._TT["DRAG_TO_MOVE"];
+		this.title.style.cursor = "move";
+		hh("&#x00d7;", 1, 200).ttip = Calendar._TT["CLOSE"];
+	}
+
+	row = Calendar.createElement("tr", thead);
+	row.className = "headrow";
+
+	this._nav_py = hh("&#x00ab;", 1, -2);
+	this._nav_py.ttip = Calendar._TT["PREV_YEAR"];
+
+	this._nav_pm = hh("&#x2039;", 1, -1);
+	this._nav_pm.ttip = Calendar._TT["PREV_MONTH"];
+
+	this._nav_now = hh(Calendar._TT["TODAY"], this.weekNumbers ? 4 : 3, 0);
+	this._nav_now.ttip = Calendar._TT["GO_TODAY"];
+
+	this._nav_nm = hh("&#x203a;", 1, 1);
+	this._nav_nm.ttip = Calendar._TT["NEXT_MONTH"];
+
+	this._nav_ny = hh("&#x00bb;", 1, 2);
+	this._nav_ny.ttip = Calendar._TT["NEXT_YEAR"];
+
+	// day names
+	row = Calendar.createElement("tr", thead);
+	row.className = "daynames";
+	if (this.weekNumbers) {
+		cell = Calendar.createElement("td", row);
+		cell.className = "name wn";
+		cell.appendChild(document.createTextNode(Calendar._TT["WK"]));
+	}
+	for (var i = 7; i > 0; --i) {
+		cell = Calendar.createElement("td", row);
+		cell.appendChild(document.createTextNode(""));
+		if (!i) {
+			cell.navtype = 100;
+			cell.calendar = this;
+			Calendar._add_evs(cell);
+		}
+	}
+	this.firstdayname = (this.weekNumbers) ? row.firstChild.nextSibling : row.firstChild;
+	this._displayWeekdays();
+
+	var tbody = Calendar.createElement("tbody", table);
+	this.tbody = tbody;
+
+	for (i = 6; i > 0; --i) {
+		row = Calendar.createElement("tr", tbody);
+		if (this.weekNumbers) {
+			cell = Calendar.createElement("td", row);
+			cell.appendChild(document.createTextNode(""));
+		}
+		for (var j = 7; j > 0; --j) {
+			cell = Calendar.createElement("td", row);
+			cell.appendChild(document.createTextNode(""));
+			cell.calendar = this;
+			Calendar._add_evs(cell);
+		}
+	}
+
+	if (this.showsTime) {
+		row = Calendar.createElement("tr", tbody);
+		row.className = "time";
+
+		cell = Calendar.createElement("td", row);
+		cell.className = "time";
+		cell.colSpan = 2;
+		cell.innerHTML = Calendar._TT["TIME"] || "&nbsp;";
+
+		cell = Calendar.createElement("td", row);
+		cell.className = "time";
+		cell.colSpan = this.weekNumbers ? 4 : 3;
+
+		(function(){
+			function makeTimePart(className, init, range_start, range_end) {
+				var part = Calendar.createElement("span", cell);
+				part.className = className;
+				part.appendChild(document.createTextNode(init));
+				part.calendar = cal;
+				part.ttip = Calendar._TT["TIME_PART"];
+				part.navtype = 50;
+				part._range = [];
+				if (typeof range_start != "number")
+					part._range = range_start;
+				else {
+					for (var i = range_start; i <= range_end; ++i) {
+						var txt;
+						if (i < 10 && range_end >= 10) txt = '0' + i;
+						else txt = '' + i;
+						part._range[part._range.length] = txt;
+					}
+				}
+				Calendar._add_evs(part);
+				return part;
+			};
+			var hrs = cal.date.getHours();
+			var mins = cal.date.getMinutes();
+			var t12 = !cal.time24;
+			var pm = (hrs > 12);
+			if (t12 && pm) hrs -= 12;
+			var H = makeTimePart("hour", hrs, t12 ? 1 : 0, t12 ? 12 : 23);
+			var span = Calendar.createElement("span", cell);
+			span.appendChild(document.createTextNode(":"));
+			span.className = "colon";
+			var M = makeTimePart("minute", mins, 0, 59);
+			var AP = null;
+			cell = Calendar.createElement("td", row);
+			cell.className = "time";
+			cell.colSpan = 2;
+			if (t12)
+				AP = makeTimePart("ampm", pm ? "pm" : "am", ["am", "pm"]);
+			else
+				cell.innerHTML = "&nbsp;";
+
+			cal.onSetTime = function() {
+				var hrs = this.date.getHours();
+				var mins = this.date.getMinutes();
+				var pm = (hrs > 12);
+				if (pm && t12) hrs -= 12;
+				H.firstChild.data = (hrs < 10) ? ("0" + hrs) : hrs;
+				M.firstChild.data = (mins < 10) ? ("0" + mins) : mins;
+				if (t12)
+					AP.firstChild.data = pm ? "pm" : "am";
+			};
+
+			cal.onUpdateTime = function() {
+				var date = this.date;
+				var h = parseInt(H.firstChild.data, 10);
+				if (t12) {
+					if (/pm/i.test(AP.firstChild.data) && h < 12)
+						h += 12;
+					else if (/am/i.test(AP.firstChild.data) && h == 12)
+						h = 0;
+				}
+				var d = date.getDate();
+				var m = date.getMonth();
+				var y = date.getFullYear();
+				date.setHours(h);
+				date.setMinutes(parseInt(M.firstChild.data, 10));
+				date.setFullYear(y);
+				date.setMonth(m);
+				date.setDate(d);
+				this.dateClicked = false;
+				this.callHandler();
+			};
+		})();
+	} else {
+		this.onSetTime = this.onUpdateTime = function() {};
+	}
+
+	var tfoot = Calendar.createElement("tfoot", table);
+
+	row = Calendar.createElement("tr", tfoot);
+	row.className = "footrow";
+
+	cell = hh(Calendar._TT["SEL_DATE"], this.weekNumbers ? 8 : 7, 300);
+	cell.className = "ttip";
+	if (this.isPopup) {
+		cell.ttip = Calendar._TT["DRAG_TO_MOVE"];
+		cell.style.cursor = "move";
+	}
+	this.tooltips = cell;
+
+	div = Calendar.createElement("div", this.element);
+	this.monthsCombo = div;
+	div.className = "combo";
+	for (i = 0; i < Calendar._MN.length; ++i) {
+		var mn = Calendar.createElement("div");
+		mn.className = Calendar.is_ie ? "label-IEfix" : "label";
+		mn.month = i;
+		mn.appendChild(document.createTextNode(Calendar._SMN[i]));
+		div.appendChild(mn);
+	}
+
+	div = Calendar.createElement("div", this.element);
+	this.yearsCombo = div;
+	div.className = "combo";
+	for (i = 12; i > 0; --i) {
+		var yr = Calendar.createElement("div");
+		yr.className = Calendar.is_ie ? "label-IEfix" : "label";
+		yr.appendChild(document.createTextNode(""));
+		div.appendChild(yr);
+	}
+
+	this._init(this.firstDayOfWeek, this.date);
+	parent.appendChild(this.element);
+};
+
+/** keyboard navigation, only for popup calendars */
+Calendar._keyEvent = function(ev) {
+	if (!window.calendar) {
+		return false;
+	}
+	(Calendar.is_ie) && (ev = window.event);
+	var cal = window.calendar;
+	var act = (Calendar.is_ie || ev.type == "keypress");
+	if (ev.ctrlKey) {
+		switch (ev.keyCode) {
+		    case 37: // KEY left
+			act && Calendar.cellClick(cal._nav_pm);
+			break;
+		    case 38: // KEY up
+			act && Calendar.cellClick(cal._nav_py);
+			break;
+		    case 39: // KEY right
+			act && Calendar.cellClick(cal._nav_nm);
+			break;
+		    case 40: // KEY down
+			act && Calendar.cellClick(cal._nav_ny);
+			break;
+		    default:
+			return false;
+		}
+	} else switch (ev.keyCode) {
+	    case 32: // KEY space (now)
+		Calendar.cellClick(cal._nav_now);
+		break;
+	    case 27: // KEY esc
+		act && cal.callCloseHandler();
+		break;
+	    case 37: // KEY left
+	    case 38: // KEY up
+	    case 39: // KEY right
+	    case 40: // KEY down
+		if (act) {
+			var date = cal.date.getDate() - 1;
+			var el = cal.currentDateEl;
+			var ne = null;
+			var prev = (ev.keyCode == 37) || (ev.keyCode == 38);
+			switch (ev.keyCode) {
+			    case 37: // KEY left
+				(--date >= 0) && (ne = cal.ar_days[date]);
+				break;
+			    case 38: // KEY up
+				date -= 7;
+				(date >= 0) && (ne = cal.ar_days[date]);
+				break;
+			    case 39: // KEY right
+				(++date < cal.ar_days.length) && (ne = cal.ar_days[date]);
+				break;
+			    case 40: // KEY down
+				date += 7;
+				(date < cal.ar_days.length) && (ne = cal.ar_days[date]);
+				break;
+			}
+			if (!ne) {
+				if (prev) {
+					Calendar.cellClick(cal._nav_pm);
+				} else {
+					Calendar.cellClick(cal._nav_nm);
+				}
+				date = (prev) ? cal.date.getMonthDays() : 1;
+				el = cal.currentDateEl;
+				ne = cal.ar_days[date - 1];
+			}
+			Calendar.removeClass(el, "selected");
+			Calendar.addClass(ne, "selected");
+			cal.date = new Date(ne.caldate);
+			cal.callHandler();
+			cal.currentDateEl = ne;
+		}
+		break;
+	    case 13: // KEY enter
+		if (act) {
+			cal.callHandler();
+			cal.hide();
+		}
+		break;
+	    default:
+		return false;
+	}
+	return Calendar.stopEvent(ev);
+};
+
+/**
+ *  (RE)Initializes the calendar to the given date and firstDayOfWeek
+ */
+Calendar.prototype._init = function (firstDayOfWeek, date) {
+	var today = new Date();
+	this.table.style.visibility = "hidden";
+	var year = date.getFullYear();
+	if (year < this.minYear) {
+		year = this.minYear;
+		date.setFullYear(year);
+	} else if (year > this.maxYear) {
+		year = this.maxYear;
+		date.setFullYear(year);
+	}
+	this.firstDayOfWeek = firstDayOfWeek;
+	this.date = new Date(date);
+	var month = date.getMonth();
+	var mday = date.getDate();
+	var no_days = date.getMonthDays();
+
+	// calendar voodoo for computing the first day that would actually be
+	// displayed in the calendar, even if it's from the previous month.
+	// WARNING: this is magic. ;-)
+	date.setDate(1);
+	var day1 = (date.getDay() - this.firstDayOfWeek) % 7;
+	if (day1 < 0)
+		day1 += 7;
+	date.setDate(-day1);
+	date.setDate(date.getDate() + 1);
+
+	var row = this.tbody.firstChild;
+	var MN = Calendar._SMN[month];
+	var ar_days = new Array();
+	var weekend = Calendar._TT["WEEKEND"];
+	for (var i = 0; i < 6; ++i, row = row.nextSibling) {
+		var cell = row.firstChild;
+		if (this.weekNumbers) {
+			cell.className = "day wn";
+			cell.firstChild.data = date.getWeekNumber();
+			cell = cell.nextSibling;
+		}
+		row.className = "daysrow";
+		var hasdays = false;
+		for (var j = 0; j < 7; ++j, cell = cell.nextSibling, date.setDate(date.getDate() + 1)) {
+			var iday = date.getDate();
+			var wday = date.getDay();
+			cell.className = "day";
+			var current_month = (date.getMonth() == month);
+			if (!current_month) {
+				if (this.showsOtherMonths) {
+					cell.className += " othermonth";
+					cell.otherMonth = true;
+				} else {
+					cell.className = "emptycell";
+					cell.innerHTML = "&nbsp;";
+					cell.disabled = true;
+					continue;
+				}
+			} else {
+				cell.otherMonth = false;
+				hasdays = true;
+			}
+			cell.disabled = false;
+			cell.firstChild.data = iday;
+			if (typeof this.getDateStatus == "function") {
+				var status = this.getDateStatus(date, year, month, iday);
+				if (status === true) {
+					cell.className += " disabled";
+					cell.disabled = true;
+				} else {
+					if (/disabled/i.test(status))
+						cell.disabled = true;
+					cell.className += " " + status;
+				}
+			}
+			if (!cell.disabled) {
+				ar_days[ar_days.length] = cell;
+				cell.caldate = new Date(date);
+				cell.ttip = "_";
+				if (current_month && iday == mday) {
+					cell.className += " selected";
+					this.currentDateEl = cell;
+				}
+				if (date.getFullYear() == today.getFullYear() &&
+				    date.getMonth() == today.getMonth() &&
+				    iday == today.getDate()) {
+					cell.className += " today";
+					cell.ttip += Calendar._TT["PART_TODAY"];
+				}
+				if (weekend.indexOf(wday.toString()) != -1) {
+					cell.className += cell.otherMonth ? " oweekend" : " weekend";
+				}
+			}
+		}
+		if (!(hasdays || this.showsOtherMonths))
+			row.className = "emptyrow";
+	}
+	this.ar_days = ar_days;
+	this.title.firstChild.data = Calendar._MN[month] + ", " + year;
+	this.onSetTime();
+	this.table.style.visibility = "visible";
+	// PROFILE
+	// this.tooltips.firstChild.data = "Generated in " + ((new Date()) - today) + " ms";
+};
+
+/**
+ *  Calls _init function above for going to a certain date (but only if the
+ *  date is different than the currently selected one).
+ */
+Calendar.prototype.setDate = function (date) {
+	if (!date.equalsTo(this.date)) {
+		this._init(this.firstDayOfWeek, date);
+	}
+};
+
+/**
+ *  Refreshes the calendar.  Useful if the "disabledHandler" function is
+ *  dynamic, meaning that the list of disabled date can change at runtime.
+ *  Just * call this function if you think that the list of disabled dates
+ *  should * change.
+ */
+Calendar.prototype.refresh = function () {
+	this._init(this.firstDayOfWeek, this.date);
+};
+
+/** Modifies the "firstDayOfWeek" parameter (pass 0 for Synday, 1 for Monday, etc.). */
+Calendar.prototype.setFirstDayOfWeek = function (firstDayOfWeek) {
+	this._init(firstDayOfWeek, this.date);
+	this._displayWeekdays();
+};
+
+/**
+ *  Allows customization of what dates are enabled.  The "unaryFunction"
+ *  parameter must be a function object that receives the date (as a JS Date
+ *  object) and returns a boolean value.  If the returned value is true then
+ *  the passed date will be marked as disabled.
+ */
+Calendar.prototype.setDateStatusHandler = Calendar.prototype.setDisabledHandler = function (unaryFunction) {
+	this.getDateStatus = unaryFunction;
+};
+
+/** Customization of allowed year range for the calendar. */
+Calendar.prototype.setRange = function (a, z) {
+	this.minYear = a;
+	this.maxYear = z;
+};
+
+/** Calls the first user handler (selectedHandler). */
+Calendar.prototype.callHandler = function () {
+	if (this.onSelected) {
+		this.onSelected(this, this.date.print(this.dateFormat));
+	}
+};
+
+/** Calls the second user handler (closeHandler). */
+Calendar.prototype.callCloseHandler = function () {
+	if (this.onClose) {
+		this.onClose(this);
+	}
+	this.hideShowCovered();
+};
+
+/** Removes the calendar object from the DOM tree and destroys it. */
+Calendar.prototype.destroy = function () {
+	var el = this.element.parentNode;
+	el.removeChild(this.element);
+	Calendar._C = null;
+	window.calendar = null;
+};
+
+/**
+ *  Moves the calendar element to a different section in the DOM tree (changes
+ *  its parent).
+ */
+Calendar.prototype.reparent = function (new_parent) {
+	var el = this.element;
+	el.parentNode.removeChild(el);
+	new_parent.appendChild(el);
+};
+
+// This gets called when the user presses a mouse button anywhere in the
+// document, if the calendar is shown.  If the click was outside the open
+// calendar this function closes it.
+Calendar._checkCalendar = function(ev) {
+	if (!window.calendar) {
+		return false;
+	}
+	var el = Calendar.is_ie ? Calendar.getElement(ev) : Calendar.getTargetElement(ev);
+	for (; el != null && el != calendar.element; el = el.parentNode);
+	if (el == null) {
+		// calls closeHandler which should hide the calendar.
+		window.calendar.callCloseHandler();
+		return Calendar.stopEvent(ev);
+	}
+};
+
+/** Shows the calendar. */
+Calendar.prototype.show = function () {
+	var rows = this.table.getElementsByTagName("tr");
+	for (var i = rows.length; i > 0;) {
+		var row = rows[--i];
+		Calendar.removeClass(row, "rowhilite");
+		var cells = row.getElementsByTagName("td");
+		for (var j = cells.length; j > 0;) {
+			var cell = cells[--j];
+			Calendar.removeClass(cell, "hilite");
+			Calendar.removeClass(cell, "active");
+		}
+	}
+	this.element.style.display = "block";
+	this.hidden = false;
+	if (this.isPopup) {
+		window.calendar = this;
+		Calendar.addEvent(document, "keydown", Calendar._keyEvent);
+		Calendar.addEvent(document, "keypress", Calendar._keyEvent);
+		Calendar.addEvent(document, "mousedown", Calendar._checkCalendar);
+	}
+	this.hideShowCovered();
+};
+
+/**
+ *  Hides the calendar.  Also removes any "hilite" from the class of any TD
+ *  element.
+ */
+Calendar.prototype.hide = function () {
+	if (this.isPopup) {
+		Calendar.removeEvent(document, "keydown", Calendar._keyEvent);
+		Calendar.removeEvent(document, "keypress", Calendar._keyEvent);
+		Calendar.removeEvent(document, "mousedown", Calendar._checkCalendar);
+	}
+	this.element.style.display = "none";
+	this.hidden = true;
+	this.hideShowCovered();
+};
+
+/**
+ *  Shows the calendar at a given absolute position (beware that, depending on
+ *  the calendar element style -- position property -- this might be relative
+ *  to the parent's containing rectangle).
+ */
+Calendar.prototype.showAt = function (x, y) {
+	var s = this.element.style;
+	s.left = x + "px";
+	s.top = y + "px";
+	this.show();
+};
+
+/** Shows the calendar near a given element. */
+Calendar.prototype.showAtElement = function (el, opts) {
+	var self = this;
+	var p = Calendar.getAbsolutePos(el);
+	if (!opts || typeof opts != "string") {
+		this.showAt(p.x, p.y + el.offsetHeight);
+		return true;
+	}
+	function fixPosition(box) {
+		if (box.x < 0)
+			box.x = 0;
+		if (box.y < 0)
+			box.y = 0;
+		var cp = document.createElement("div");
+		var s = cp.style;
+		s.position = "absolute";
+		s.right = s.bottom = s.width = s.height = "0px";
+		document.body.appendChild(cp);
+		var br = Calendar.getAbsolutePos(cp);
+		document.body.removeChild(cp);
+		if (Calendar.is_ie) {
+			br.y += document.body.scrollTop;
+			br.x += document.body.scrollLeft;
+		} else {
+			br.y += window.scrollY;
+			br.x += window.scrollX;
+		}
+		var tmp = box.x + box.width - br.x;
+		if (tmp > 0) box.x -= tmp;
+		tmp = box.y + box.height - br.y;
+		if (tmp > 0) box.y -= tmp;
+	};
+	this.element.style.display = "block";
+	Calendar.continuation_for_the_fucking_khtml_browser = function() {
+		var w = self.element.offsetWidth;
+		var h = self.element.offsetHeight;
+		self.element.style.display = "none";
+		var valign = opts.substr(0, 1);
+		var halign = "l";
+		if (opts.length > 1) {
+			halign = opts.substr(1, 1);
+		}
+		// vertical alignment
+		switch (valign) {
+		    case "T": p.y -= h; break;
+		    case "B": p.y += el.offsetHeight; break;
+		    case "C": p.y += (el.offsetHeight - h) / 2; break;
+		    case "t": p.y += el.offsetHeight - h; break;
+		    case "b": break; // already there
+		}
+		// horizontal alignment
+		switch (halign) {
+		    case "L": p.x -= w; break;
+		    case "R": p.x += el.offsetWidth; break;
+		    case "C": p.x += (el.offsetWidth - w) / 2; break;
+		    case "r": p.x += el.offsetWidth - w; break;
+		    case "l": break; // already there
+		}
+		p.width = w;
+		p.height = h + 40;
+		self.monthsCombo.style.display = "none";
+		fixPosition(p);
+		self.showAt(p.x, p.y);
+	};
+	if (Calendar.is_khtml)
+		setTimeout("Calendar.continuation_for_the_fucking_khtml_browser()", 10);
+	else
+		Calendar.continuation_for_the_fucking_khtml_browser();
+};
+
+/** Customizes the date format. */
+Calendar.prototype.setDateFormat = function (str) {
+	this.dateFormat = str;
+};
+
+/** Customizes the tooltip date format. */
+Calendar.prototype.setTtDateFormat = function (str) {
+	this.ttDateFormat = str;
+};
+
+/**
+ *  Tries to identify the date represented in a string.  If successful it also
+ *  calls this.setDate which moves the calendar to the given date.
+ */
+Calendar.prototype.parseDate = function (str, fmt) {
+	var y = 0;
+	var m = -1;
+	var d = 0;
+	var a = str.split(/\W+/);
+	if (!fmt) {
+		fmt = this.dateFormat;
+	}
+	var b = fmt.match(/%./g);
+	var i = 0, j = 0;
+	var hr = 0;
+	var min = 0;
+	for (i = 0; i < a.length; ++i) {
+		if (!a[i])
+			continue;
+		switch (b[i]) {
+		    case "%d":
+		    case "%e":
+			d = parseInt(a[i], 10);
+			break;
+
+		    case "%m":
+			m = parseInt(a[i], 10) - 1;
+			break;
+
+		    case "%Y":
+		    case "%y":
+			y = parseInt(a[i], 10);
+			(y < 100) && (y += (y > 29) ? 1900 : 2000);
+			break;
+
+		    case "%b":
+		    case "%B":
+			for (j = 0; j < 12; ++j) {
+				if (Calendar._MN[j].substr(0, a[i].length).toLowerCase() == a[i].toLowerCase()) { m = j; break; }
+			}
+			break;
+
+		    case "%H":
+		    case "%I":
+		    case "%k":
+		    case "%l":
+			hr = parseInt(a[i], 10);
+			break;
+
+		    case "%P":
+		    case "%p":
+			if (/pm/i.test(a[i]) && hr < 12)
+				hr += 12;
+			break;
+
+		    case "%M":
+			min = parseInt(a[i], 10);
+			break;
+		}
+	}
+	if (y != 0 && m != -1 && d != 0) {
+		this.setDate(new Date(y, m, d, hr, min, 0));
+		return;
+	}
+	y = 0; m = -1; d = 0;
+	for (i = 0; i < a.length; ++i) {
+		if (a[i].search(/[a-zA-Z]+/) != -1) {
+			var t = -1;
+			for (j = 0; j < 12; ++j) {
+				if (Calendar._MN[j].substr(0, a[i].length).toLowerCase() == a[i].toLowerCase()) { t = j; break; }
+			}
+			if (t != -1) {
+				if (m != -1) {
+					d = m+1;
+				}
+				m = t;
+			}
+		} else if (parseInt(a[i], 10) <= 12 && m == -1) {
+			m = a[i]-1;
+		} else if (parseInt(a[i], 10) > 31 && y == 0) {
+			y = parseInt(a[i], 10);
+			(y < 100) && (y += (y > 29) ? 1900 : 2000);
+		} else if (d == 0) {
+			d = a[i];
+		}
+	}
+	if (y == 0) {
+		var today = new Date();
+		y = today.getFullYear();
+	}
+	if (m != -1 && d != 0) {
+		this.setDate(new Date(y, m, d, hr, min, 0));
+	}
+};
+
+Calendar.prototype.hideShowCovered = function () {
+	var self = this;
+	Calendar.continuation_for_the_fucking_khtml_browser = function() {
+		function getVisib(obj){
+			var value = obj.style.visibility;
+			if (!value) {
+				if (document.defaultView && typeof (document.defaultView.getComputedStyle) == "function") { // Gecko, W3C
+					if (!Calendar.is_khtml)
+						value = document.defaultView.
+							getComputedStyle(obj, "").getPropertyValue("visibility");
+					else
+						value = '';
+				} else if (obj.currentStyle) { // IE
+					value = obj.currentStyle.visibility;
+				} else
+					value = '';
+			}
+			return value;
+		};
+
+		var tags = new Array("applet", "iframe", "select");
+		var el = self.element;
+
+		var p = Calendar.getAbsolutePos(el);
+		var EX1 = p.x;
+		var EX2 = el.offsetWidth + EX1;
+		var EY1 = p.y;
+		var EY2 = el.offsetHeight + EY1;
+
+		for (var k = tags.length; k > 0; ) {
+			var ar = document.getElementsByTagName(tags[--k]);
+			var cc = null;
+
+			for (var i = ar.length; i > 0;) {
+				cc = ar[--i];
+
+				p = Calendar.getAbsolutePos(cc);
+				var CX1 = p.x;
+				var CX2 = cc.offsetWidth + CX1;
+				var CY1 = p.y;
+				var CY2 = cc.offsetHeight + CY1;
+
+				if (self.hidden || (CX1 > EX2) || (CX2 < EX1) || (CY1 > EY2) || (CY2 < EY1)) {
+					if (!cc.__msh_save_visibility) {
+						cc.__msh_save_visibility = getVisib(cc);
+					}
+					cc.style.visibility = cc.__msh_save_visibility;
+				} else {
+					if (!cc.__msh_save_visibility) {
+						cc.__msh_save_visibility = getVisib(cc);
+					}
+					cc.style.visibility = "hidden";
+				}
+			}
+		}
+	};
+	if (Calendar.is_khtml)
+		setTimeout("Calendar.continuation_for_the_fucking_khtml_browser()", 10);
+	else
+		Calendar.continuation_for_the_fucking_khtml_browser();
+};
+
+/** Internal function; it displays the bar with the names of the weekday. */
+Calendar.prototype._displayWeekdays = function () {
+	var fdow = this.firstDayOfWeek;
+	var cell = this.firstdayname;
+	var weekend = Calendar._TT["WEEKEND"];
+	for (var i = 0; i < 7; ++i) {
+		cell.className = "day name";
+		var realday = (i + fdow) % 7;
+		if (i) {
+			cell.ttip = Calendar._TT["DAY_FIRST"].replace("%s", Calendar._DN[realday]);
+			cell.navtype = 100;
+			cell.calendar = this;
+			cell.fdow = realday;
+			Calendar._add_evs(cell);
+		}
+		if (weekend.indexOf(realday.toString()) != -1) {
+			Calendar.addClass(cell, "weekend");
+		}
+		cell.firstChild.data = Calendar._SDN[(i + fdow) % 7];
+		cell = cell.nextSibling;
+	}
+};
+
+/** Internal function.  Hides all combo boxes that might be displayed. */
+Calendar.prototype._hideCombos = function () {
+	this.monthsCombo.style.display = "none";
+	this.yearsCombo.style.display = "none";
+};
+
+/** Internal function.  Starts dragging the element. */
+Calendar.prototype._dragStart = function (ev) {
+	if (this.dragging) {
+		return;
+	}
+	this.dragging = true;
+	var posX;
+	var posY;
+	if (Calendar.is_ie) {
+		posY = window.event.clientY + document.body.scrollTop;
+		posX = window.event.clientX + document.body.scrollLeft;
+	} else {
+		posY = ev.clientY + window.scrollY;
+		posX = ev.clientX + window.scrollX;
+	}
+	var st = this.element.style;
+	this.xOffs = posX - parseInt(st.left);
+	this.yOffs = posY - parseInt(st.top);
+	with (Calendar) {
+		addEvent(document, "mousemove", calDragIt);
+		addEvent(document, "mouseup", calDragEnd);
+	}
+};
+
+// BEGIN: DATE OBJECT PATCHES
+
+/** Adds the number of days array to the Date object. */
+Date._MD = new Array(31,28,31,30,31,30,31,31,30,31,30,31);
+
+/** Constants used for time computations */
+Date.SECOND = 1000 /* milliseconds */;
+Date.MINUTE = 60 * Date.SECOND;
+Date.HOUR   = 60 * Date.MINUTE;
+Date.DAY    = 24 * Date.HOUR;
+Date.WEEK   =  7 * Date.DAY;
+
+/** Returns the number of days in the current month */
+Date.prototype.getMonthDays = function(month) {
+	var year = this.getFullYear();
+	if (typeof month == "undefined") {
+		month = this.getMonth();
+	}
+	if (((0 == (year%4)) && ( (0 != (year%100)) || (0 == (year%400)))) && month == 1) {
+		return 29;
+	} else {
+		return Date._MD[month];
+	}
+};
+
+/** Returns the number of day in the year. */
+Date.prototype.getDayOfYear = function() {
+	var now = new Date(this.getFullYear(), this.getMonth(), this.getDate(), 0, 0, 0);
+	var then = new Date(this.getFullYear(), 0, 0, 0, 0, 0);
+	var time = now - then;
+	return Math.floor(time / Date.DAY);
+};
+
+/** Returns the number of the week in year, as defined in ISO 8601. */
+Date.prototype.getWeekNumber = function() {
+	var d = new Date(this.getFullYear(), this.getMonth(), this.getDate(), 0, 0, 0);
+	var DoW = d.getDay();
+	d.setDate(d.getDate() - (DoW + 6) % 7 + 3); // Nearest Thu
+	var ms = d.valueOf(); // GMT
+	d.setMonth(0);
+	d.setDate(4); // Thu in Week 1
+	return Math.round((ms - d.valueOf()) / (7 * 864e5)) + 1;
+};
+
+/** Checks dates equality (ignores time) */
+Date.prototype.equalsTo = function(date) {
+	return ((this.getFullYear() == date.getFullYear()) &&
+		(this.getMonth() == date.getMonth()) &&
+		(this.getDate() == date.getDate()) &&
+		(this.getHours() == date.getHours()) &&
+		(this.getMinutes() == date.getMinutes()));
+};
+
+/** Prints the date in a string according to the given format. */
+Date.prototype.print = function (str) {
+	var m = this.getMonth();
+	var d = this.getDate();
+	var y = this.getFullYear();
+	var wn = this.getWeekNumber();
+	var w = this.getDay();
+	var s = {};
+	var hr = this.getHours();
+	var pm = (hr >= 12);
+	var ir = (pm) ? (hr - 12) : hr;
+	var dy = this.getDayOfYear();
+	if (ir == 0)
+		ir = 12;
+	var min = this.getMinutes();
+	var sec = this.getSeconds();
+	s["%a"] = Calendar._SDN[w]; // abbreviated weekday name [FIXME: I18N]
+	s["%A"] = Calendar._DN[w]; // full weekday name
+	s["%b"] = Calendar._SMN[m]; // abbreviated month name [FIXME: I18N]
+	s["%B"] = Calendar._MN[m]; // full month name
+	// FIXME: %c : preferred date and time representation for the current locale
+	s["%C"] = 1 + Math.floor(y / 100); // the century number
+	s["%d"] = (d < 10) ? ("0" + d) : d; // the day of the month (range 01 to 31)
+	s["%e"] = d; // the day of the month (range 1 to 31)
+	// FIXME: %D : american date style: %m/%d/%y
+	// FIXME: %E, %F, %G, %g, %h (man strftime)
+	s["%H"] = (hr < 10) ? ("0" + hr) : hr; // hour, range 00 to 23 (24h format)
+	s["%I"] = (ir < 10) ? ("0" + ir) : ir; // hour, range 01 to 12 (12h format)
+	s["%j"] = (dy < 100) ? ((dy < 10) ? ("00" + dy) : ("0" + dy)) : dy; // day of the year (range 001 to 366)
+	s["%k"] = hr;		// hour, range 0 to 23 (24h format)
+	s["%l"] = ir;		// hour, range 1 to 12 (12h format)
+	s["%m"] = (m < 9) ? ("0" + (1+m)) : (1+m); // month, range 01 to 12
+	s["%M"] = (min < 10) ? ("0" + min) : min; // minute, range 00 to 59
+	s["%n"] = "\n";		// a newline character
+	s["%p"] = pm ? "PM" : "AM";
+	s["%P"] = pm ? "pm" : "am";
+	// FIXME: %r : the time in am/pm notation %I:%M:%S %p
+	// FIXME: %R : the time in 24-hour notation %H:%M
+	s["%s"] = Math.floor(this.getTime() / 1000);
+	s["%S"] = (sec < 10) ? ("0" + sec) : sec; // seconds, range 00 to 59
+	s["%t"] = "\t";		// a tab character
+	// FIXME: %T : the time in 24-hour notation (%H:%M:%S)
+	s["%U"] = s["%W"] = s["%V"] = (wn < 10) ? ("0" + wn) : wn;
+	s["%u"] = w + 1;	// the day of the week (range 1 to 7, 1 = MON)
+	s["%w"] = w;		// the day of the week (range 0 to 6, 0 = SUN)
+	// FIXME: %x : preferred date representation for the current locale without the time
+	// FIXME: %X : preferred time representation for the current locale without the date
+	s["%y"] = ('' + y).substr(2, 2); // year without the century (range 00 to 99)
+	s["%Y"] = y;		// year with the century
+	s["%%"] = "%";		// a literal '%' character
+
+	var re = /%./g;
+	if (!Calendar.is_ie5)
+		return str.replace(re, function (par) { return s[par] || par; });
+
+	var a = str.match(re);
+	for (var i = 0; i < a.length; i++) {
+		var tmp = s[a[i]];
+		if (tmp) {
+			re = new RegExp(a[i], 'g');
+			str = str.replace(re, tmp);
+		}
+	}
+
+	return str;
+};
+
+Date.prototype.__msh_oldSetFullYear = Date.prototype.setFullYear;
+Date.prototype.setFullYear = function(y) {
+	var d = new Date(this);
+	d.__msh_oldSetFullYear(y);
+	if (d.getMonth() != this.getMonth())
+		this.setDate(28);
+	this.__msh_oldSetFullYear(y);
+};
+
+// END: DATE OBJECT PATCHES
+
+
+// global object that remembers the calendar
+window.calendar = null;
diff --git a/skins/jscalendar/calendar.php b/skins/jscalendar/calendar.php
new file mode 100644
index 0000000..5b9120d
--- /dev/null
+++ b/skins/jscalendar/calendar.php
@@ -0,0 +1,119 @@
+<?php
+
+/**
+ *  File: calendar.php | (c) dynarch.com 2004
+ *  Distributed as part of "The Coolest DHTML Calendar"
+ *  under the same terms.
+ *  -----------------------------------------------------------------
+ *  This file implements a simple PHP wrapper for the calendar.  It
+ *  allows you to easily include all the calendar files and setup the
+ *  calendar by instantiating and calling a PHP object.
+ */
+
+define('NEWLINE', "\n");
+
+class DHTML_Calendar {
+    var $calendar_lib_path;
+
+    var $calendar_file;
+    var $calendar_lang_file;
+    var $calendar_setup_file;
+    var $calendar_theme_file;
+    var $calendar_options;
+
+    function DHTML_Calendar($calendar_lib_path = '/calendar/',
+                            $lang              = 'en',
+                            $theme             = 'calendar-win2k-1',
+                            $stripped          = true) {
+        if ($stripped) {
+            $this->calendar_file = 'calendar_stripped.js';
+            $this->calendar_setup_file = 'calendar-setup_stripped.js';
+        } else {
+            $this->calendar_file = 'calendar.js';
+            $this->calendar_setup_file = 'calendar-setup.js';
+        }
+        $this->calendar_lang_file = 'lang/calendar-' . $lang . '.js';
+        $this->calendar_theme_file = $theme.'.css';
+        $this->calendar_lib_path = preg_replace('/\/+$/', '/', $calendar_lib_path);
+        $this->calendar_options = array('ifFormat' => '%Y/%m/%d',
+                                        'daFormat' => '%Y/%m/%d');
+    }
+
+    function set_option($name, $value) {
+        $this->calendar_options[$name] = $value;
+    }
+
+    function load_files() {
+        echo $this->get_load_files_code();
+    }
+
+    function get_load_files_code() {
+        $code  = ( '<link rel="stylesheet" type="text/css" media="all" href="' .
+                   $this->calendar_lib_path . $this->calendar_theme_file .
+                   '" />' . NEWLINE );
+        $code .= ( '<script type="text/javascript" src="' .
+                   $this->calendar_lib_path . $this->calendar_file .
+                   '"></script>' . NEWLINE );
+        $code .= ( '<script type="text/javascript" src="' .
+                   $this->calendar_lib_path . $this->calendar_lang_file .
+                   '"></script>' . NEWLINE );
+        $code .= ( '<script type="text/javascript" src="' .
+                   $this->calendar_lib_path . $this->calendar_setup_file .
+                   '"></script>' );
+        return $code;
+    }
+
+    function _make_calendar($other_options = array()) {
+        $js_options = $this->_make_js_hash(array_merge($this->calendar_options, $other_options));
+        $code  = ( '<script type="text/javascript">Calendar.setup({' .
+                   $js_options .
+                   '});</script>' );
+        return $code;
+    }
+
+    function make_input_field($cal_options = array(), $field_attributes = array()) {
+        $id = $this->_gen_id();
+        $attrstr = $this->_make_html_attr(array_merge($field_attributes,
+                                                      array('id'   => $this->_field_id($id),
+                                                            'type' => 'text')));
+        echo '<input ' . $attrstr .'/>';
+        echo '<a href="#" id="'. $this->_trigger_id($id) . '">' .
+            '<img align="middle" border="0" src="' . $this->calendar_lib_path . 'img.gif" alt="" /></a>';
+
+        $options = array_merge($cal_options,
+                               array('inputField' => $this->_field_id($id),
+                                     'button'     => $this->_trigger_id($id)));
+        echo $this->_make_calendar($options);
+    }
+
+    /// PRIVATE SECTION
+
+    function _field_id($id) { return 'f-calendar-field-' . $id; }
+    function _trigger_id($id) { return 'f-calendar-trigger-' . $id; }
+    function _gen_id() { static $id = 0; return ++$id; }
+
+    function _make_js_hash($array) {
+        $jstr = '';
+        reset($array);
+        while (list($key, $val) = each($array)) {
+            if (is_bool($val))
+                $val = $val ? 'true' : 'false';
+            else if (!is_numeric($val))
+                $val = '"'.$val.'"';
+            if ($jstr) $jstr .= ',';
+            $jstr .= '"' . $key . '":' . $val;
+        }
+        return $jstr;
+    }
+
+    function _make_html_attr($array) {
+        $attrstr = '';
+        reset($array);
+        while (list($key, $val) = each($array)) {
+            $attrstr .= $key . '="' . $val . '" ';
+        }
+        return $attrstr;
+    }
+};
+
+?>
\ No newline at end of file
diff --git a/skins/jscalendar/calendar_stripped.js b/skins/jscalendar/calendar_stripped.js
new file mode 100644
index 0000000..6a8e326
--- /dev/null
+++ b/skins/jscalendar/calendar_stripped.js
@@ -0,0 +1,12 @@
+/*  Copyright Mihai Bazon, 2002, 2003  |  http://dynarch.com/mishoo/
+ * ------------------------------------------------------------------
+ *
+ * The DHTML Calendar, version 0.9.6 "Keep cool but don't freeze"
+ *
+ * Details and latest version at:
+ * http://dynarch.com/mishoo/calendar.epl
+ *
+ * This script is distributed under the GNU Lesser General Public License.
+ * Read the entire license text here: http://www.gnu.org/licenses/lgpl.html
+ */
+ Calendar=function(firstDayOfWeek,dateStr,onSelected,onClose){this.activeDiv=null;this.currentDateEl=null;this.getDateStatus=null;this.timeout=null;this.onSelected=onSelected||null;this.onClose=onClose||null;this.dragging=false;this.hidden=false;this.minYear=1970;this.maxYear=2050;this.dateFormat=Calendar._TT["DEF_DATE_FORMAT"];this.ttDateFormat=Calendar._TT["TT_DATE_FORMAT"];this.isPopup=true;this.weekNumbers=true;this.firstDayOfWeek=firstDayOfWeek;this.showsOtherMonths=false;this.dateStr=dateStr;this.ar_days=null;this.showsTime=false;this.time24=true;this.yearStep=2;this.table=null;this.element=null;this.tbody=null;this.firstdayname=null;this.monthsCombo=null;this.yearsCombo=null;this.hilitedMonth=null;this.activeMonth=null;this.hilitedYear=null;this.activeYear=null;this.dateClicked=false;if(typeof Calendar._SDN=="undefined"){if(typeof Calendar._SDN_len=="undefined")Calendar._SDN_len=3;var ar=new Array();for(var i=8;i>0;){ar[--i]=Calendar._DN[i].substr(0,Calendar._SDN_len);}Calendar._SDN=ar;if(typeof Calendar._SMN_len=="undefined")Calendar._SMN_len=3;ar=new Array();for(var i=12;i>0;){ar[--i]=Calendar._MN[i].substr(0,Calendar._SMN_len);}Calendar._SMN=ar;}};Calendar._C=null;Calendar.is_ie=(/msie/i.test(navigator.userAgent)&&!/opera/i.test(navigator.userAgent));Calendar.is_ie5=(Calendar.is_ie&&/msie 5\.0/i.test(navigator.userAgent));Calendar.is_opera=/opera/i.test(navigator.userAgent);Calendar.is_khtml=/Konqueror|Safari|KHTML/i.test(navigator.userAgent);Calendar.getAbsolutePos=function(el){var SL=0,ST=0;var is_div=/^div$/i.test(el.tagName);if(is_div&&el.scrollLeft)SL=el.scrollLeft;if(is_div&&el.scrollTop)ST=el.scrollTop;var r={x:el.offsetLeft-SL,y:el.offsetTop-ST};if(el.offsetParent){var tmp=this.getAbsolutePos(el.offsetParent);r.x+=tmp.x;r.y+=tmp.y;}return r;};Calendar.isRelated=function(el,evt){var related=evt.relatedTarget;if(!related){var type=evt.type;if(type=="mouseover"){related=evt.fromElement;}else if(type=="mouseout"){related=evt.toElement;}}while(related){if(related==el){return true;}related=related.parentNode;}return false;};Calendar.removeClass=function(el,className){if(!(el&&el.className)){return;}var cls=el.className.split(" ");var ar=new Array();for(var i=cls.length;i>0;){if(cls[--i]!=className){ar[ar.length]=cls[i];}}el.className=ar.join(" ");};Calendar.addClass=function(el,className){Calendar.removeClass(el,className);el.className+=" "+className;};Calendar.getElement=function(ev){if(Calendar.is_ie){return window.event.srcElement;}else{return ev.currentTarget;}};Calendar.getTargetElement=function(ev){if(Calendar.is_ie){return window.event.srcElement;}else{return ev.target;}};Calendar.stopEvent=function(ev){ev||(ev=window.event);if(Calendar.is_ie){ev.cancelBubble=true;ev.returnValue=false;}else{ev.preventDefault();ev.stopPropagation();}return false;};Calendar.addEvent=function(el,evname,func){if(el.attachEvent){el.attachEvent("on"+evname,func);}else if(el.addEventListener){el.addEventListener(evname,func,true);}else{el["on"+evname]=func;}};Calendar.removeEvent=function(el,evname,func){if(el.detachEvent){el.detachEvent("on"+evname,func);}else if(el.removeEventListener){el.removeEventListener(evname,func,true);}else{el["on"+evname]=null;}};Calendar.createElement=function(type,parent){var el=null;if(document.createElementNS){el=document.createElementNS("http://www.w3.org/1999/xhtml",type);}else{el=document.createElement(type);}if(typeof parent!="undefined"){parent.appendChild(el);}return el;};Calendar._add_evs=function(el){with(Calendar){addEvent(el,"mouseover",dayMouseOver);addEvent(el,"mousedown",dayMouseDown);addEvent(el,"mouseout",dayMouseOut);if(is_ie){addEvent(el,"dblclick",dayMouseDblClick);el.setAttribute("unselectable",true);}}};Calendar.findMonth=function(el){if(typeof el.month!="undefined"){return el;}else if(typeof el.parentNode.month!="undefined"){return el.parentNode;}return null;};Calendar.findYear=function(el){if(typeof el.year!="undefined"){return el;}else if(typeof el.parentNode.year!="undefined"){return el.parentNode;}return null;};Calendar.showMonthsCombo=function(){var cal=Calendar._C;if(!cal){return false;}var cal=cal;var cd=cal.activeDiv;var mc=cal.monthsCombo;if(cal.hilitedMonth){Calendar.removeClass(cal.hilitedMonth,"hilite");}if(cal.activeMonth){Calendar.removeClass(cal.activeMonth,"active");}var mon=cal.monthsCombo.getElementsByTagName("div")[cal.date.getMonth()];Calendar.addClass(mon,"active");cal.activeMonth=mon;var s=mc.style;s.display="block";if(cd.navtype<0)s.left=cd.offsetLeft+"px";else{var mcw=mc.offsetWidth;if(typeof mcw=="undefined")mcw=50;s.left=(cd.offsetLeft+cd.offsetWidth-mcw)+"px";}s.top=(cd.offsetTop+cd.offsetHeight)+"px";};Calendar.showYearsCombo=function(fwd){var cal=Calendar._C;if(!cal){return false;}var cal=cal;var cd=cal.activeDiv;var yc=cal.yearsCombo;if(cal.hilitedYear){Calendar.removeClass(cal.hilitedYear,"hilite");}if(cal.activeYear){Calendar.removeClass(cal.activeYear,"active");}cal.activeYear=null;var Y=cal.date.getFullYear()+(fwd?1:-1);var yr=yc.firstChild;var show=false;for(var i=12;i>0;--i){if(Y>=cal.minYear&&Y<=cal.maxYear){yr.firstChild.data=Y;yr.year=Y;yr.style.display="block";show=true;}else{yr.style.display="none";}yr=yr.nextSibling;Y+=fwd?cal.yearStep:-cal.yearStep;}if(show){var s=yc.style;s.display="block";if(cd.navtype<0)s.left=cd.offsetLeft+"px";else{var ycw=yc.offsetWidth;if(typeof ycw=="undefined")ycw=50;s.left=(cd.offsetLeft+cd.offsetWidth-ycw)+"px";}s.top=(cd.offsetTop+cd.offsetHeight)+"px";}};Calendar.tableMouseUp=function(ev){var cal=Calendar._C;if(!cal){return false;}if(cal.timeout){clearTimeout(cal.timeout);}var el=cal.activeDiv;if(!el){return false;}var target=Calendar.getTargetElement(ev);ev||(ev=window.event);Calendar.removeClass(el,"active");if(target==el||target.parentNode==el){Calendar.cellClick(el,ev);}var mon=Calendar.findMonth(target);var date=null;if(mon){date=new Date(cal.date);if(mon.month!=date.getMonth()){date.setMonth(mon.month);cal.setDate(date);cal.dateClicked=false;cal.callHandler();}}else{var year=Calendar.findYear(target);if(year){date=new Date(cal.date);if(year.year!=date.getFullYear()){date.setFullYear(year.year);cal.setDate(date);cal.dateClicked=false;cal.callHandler();}}}with(Calendar){removeEvent(document,"mouseup",tableMouseUp);removeEvent(document,"mouseover",tableMouseOver);removeEvent(document,"mousemove",tableMouseOver);cal._hideCombos();_C=null;return stopEvent(ev);}};Calendar.tableMouseOver=function(ev){var cal=Calendar._C;if(!cal){return;}var el=cal.activeDiv;var target=Calendar.getTargetElement(ev);if(target==el||target.parentNode==el){Calendar.addClass(el,"hilite active");Calendar.addClass(el.parentNode,"rowhilite");}else{if(typeof el.navtype=="undefined"||(el.navtype!=50&&(el.navtype==0||Math.abs(el.navtype)>2)))Calendar.removeClass(el,"active");Calendar.removeClass(el,"hilite");Calendar.removeClass(el.parentNode,"rowhilite");}ev||(ev=window.event);if(el.navtype==50&&target!=el){var pos=Calendar.getAbsolutePos(el);var w=el.offsetWidth;var x=ev.clientX;var dx;var decrease=true;if(x>pos.x+w){dx=x-pos.x-w;decrease=false;}else dx=pos.x-x;if(dx<0)dx=0;var range=el._range;var current=el._current;var count=Math.floor(dx/10)%range.length;for(var i=range.length;--i>=0;)if(range[i]==current)break;while(count-->0)if(decrease){if(--i<0)i=range.length-1;}else if(++i>=range.length)i=0;var newval=range[i];el.firstChild.data=newval;cal.onUpdateTime();}var mon=Calendar.findMonth(target);if(mon){if(mon.month!=cal.date.getMonth()){if(cal.hilitedMonth){Calendar.removeClass(cal.hilitedMonth,"hilite");}Calendar.addClass(mon,"hilite");cal.hilitedMonth=mon;}else if(cal.hilitedMonth){Calendar.removeClass(cal.hilitedMonth,"hilite");}}else{if(cal.hilitedMonth){Calendar.removeClass(cal.hilitedMonth,"hilite");}var year=Calendar.findYear(target);if(year){if(year.year!=cal.date.getFullYear()){if(cal.hilitedYear){Calendar.removeClass(cal.hilitedYear,"hilite");}Calendar.addClass(year,"hilite");cal.hilitedYear=year;}else if(cal.hilitedYear){Calendar.removeClass(cal.hilitedYear,"hilite");}}else if(cal.hilitedYear){Calendar.removeClass(cal.hilitedYear,"hilite");}}return Calendar.stopEvent(ev);};Calendar.tableMouseDown=function(ev){if(Calendar.getTargetElement(ev)==Calendar.getElement(ev)){return Calendar.stopEvent(ev);}};Calendar.calDragIt=function(ev){var cal=Calendar._C;if(!(cal&&cal.dragging)){return false;}var posX;var posY;if(Calendar.is_ie){posY=window.event.clientY+document.body.scrollTop;posX=window.event.clientX+document.body.scrollLeft;}else{posX=ev.pageX;posY=ev.pageY;}cal.hideShowCovered();var st=cal.element.style;st.left=(posX-cal.xOffs)+"px";st.top=(posY-cal.yOffs)+"px";return Calendar.stopEvent(ev);};Calendar.calDragEnd=function(ev){var cal=Calendar._C;if(!cal){return false;}cal.dragging=false;with(Calendar){removeEvent(document,"mousemove",calDragIt);removeEvent(document,"mouseup",calDragEnd);tableMouseUp(ev);}cal.hideShowCovered();};Calendar.dayMouseDown=function(ev){var el=Calendar.getElement(ev);if(el.disabled){return false;}var cal=el.calendar;cal.activeDiv=el;Calendar._C=cal;if(el.navtype!=300)with(Calendar){if(el.navtype==50){el._current=el.firstChild.data;addEvent(document,"mousemove",tableMouseOver);}else addEvent(document,Calendar.is_ie5?"mousemove":"mouseover",tableMouseOver);addClass(el,"hilite active");addEvent(document,"mouseup",tableMouseUp);}else if(cal.isPopup){cal._dragStart(ev);}if(el.navtype==-1||el.navtype==1){if(cal.timeout)clearTimeout(cal.timeout);cal.timeout=setTimeout("Calendar.showMonthsCombo()",250);}else if(el.navtype==-2||el.navtype==2){if(cal.timeout)clearTimeout(cal.timeout);cal.timeout=setTimeout((el.navtype>0)?"Calendar.showYearsCombo(true)":"Calendar.showYearsCombo(false)",250);}else{cal.timeout=null;}return Calendar.stopEvent(ev);};Calendar.dayMouseDblClick=function(ev){Calendar.cellClick(Calendar.getElement(ev),ev||window.event);if(Calendar.is_ie){document.selection.empty();}};Calendar.dayMouseOver=function(ev){var el=Calendar.getElement(ev);if(Calendar.isRelated(el,ev)||Calendar._C||el.disabled){return false;}if(el.ttip){if(el.ttip.substr(0,1)=="_"){el.ttip=el.caldate.print(el.calendar.ttDateFormat)+el.ttip.substr(1);}el.calendar.tooltips.firstChild.data=el.ttip;}if(el.navtype!=300){Calendar.addClass(el,"hilite");if(el.caldate){Calendar.addClass(el.parentNode,"rowhilite");}}return Calendar.stopEvent(ev);};Calendar.dayMouseOut=function(ev){with(Calendar){var el=getElement(ev);if(isRelated(el,ev)||_C||el.disabled){return false;}removeClass(el,"hilite");if(el.caldate){removeClass(el.parentNode,"rowhilite");}el.calendar.tooltips.firstChild.data=_TT["SEL_DATE"];return stopEvent(ev);}};Calendar.cellClick=function(el,ev){var cal=el.calendar;var closing=false;var newdate=false;var date=null;if(typeof el.navtype=="undefined"){Calendar.removeClass(cal.currentDateEl,"selected");Calendar.addClass(el,"selected");closing=(cal.currentDateEl==el);if(!closing){cal.currentDateEl=el;}cal.date=new Date(el.caldate);date=cal.date;newdate=true;if(!(cal.dateClicked=!el.otherMonth))cal._init(cal.firstDayOfWeek,date);}else{if(el.navtype==200){Calendar.removeClass(el,"hilite");cal.callCloseHandler();return;}date=(el.navtype==0)?new Date():new Date(cal.date);cal.dateClicked=false;var year=date.getFullYear();var mon=date.getMonth();function setMonth(m){var day=date.getDate();var max=date.getMonthDays(m);if(day>max){date.setDate(max);}date.setMonth(m);};switch(el.navtype){case 400:Calendar.removeClass(el,"hilite");var text=Calendar._TT["ABOUT"];if(typeof text!="undefined"){text+=cal.showsTime?Calendar._TT["ABOUT_TIME"]:"";}else{text="Help and about box text is not translated into this language.\n"+"If you know this language and you feel generous please update\n"+"the corresponding file in \"lang\" subdir to match calendar-en.js\n"+"and send it back to <mishoo@infoiasi.ro> to get it into the distribution  ;-)\n\n"+"Thank you!\n"+"http://dynarch.com/mishoo/calendar.epl\n";}alert(text);return;case-2:if(year>cal.minYear){date.setFullYear(year-1);}break;case-1:if(mon>0){setMonth(mon-1);}else if(year-->cal.minYear){date.setFullYear(year);setMonth(11);}break;case 1:if(mon<11){setMonth(mon+1);}else if(year<cal.maxYear){date.setFullYear(year+1);setMonth(0);}break;case 2:if(year<cal.maxYear){date.setFullYear(year+1);}break;case 100:cal.setFirstDayOfWeek(el.fdow);return;case 50:var range=el._range;var current=el.firstChild.data;for(var i=range.length;--i>=0;)if(range[i]==current)break;if(ev&&ev.shiftKey){if(--i<0)i=range.length-1;}else if(++i>=range.length)i=0;var newval=range[i];el.firstChild.data=newval;cal.onUpdateTime();return;case 0:if((typeof cal.getDateStatus=="function")&&cal.getDateStatus(date,date.getFullYear(),date.getMonth(),date.getDate())){return false;}break;}if(!date.equalsTo(cal.date)){cal.setDate(date);newdate=true;}}if(newdate){cal.callHandler();}if(closing){Calendar.removeClass(el,"hilite");cal.callCloseHandler();}};Calendar.prototype.create=function(_par){var parent=null;if(!_par){parent=document.getElementsByTagName("body")[0];this.isPopup=true;}else{parent=_par;this.isPopup=false;}this.date=this.dateStr?new Date(this.dateStr):new Date();var table=Calendar.createElement("table");this.table=table;table.cellSpacing=0;table.cellPadding=0;table.calendar=this;Calendar.addEvent(table,"mousedown",Calendar.tableMouseDown);var div=Calendar.createElement("div");this.element=div;div.className="calendar";if(this.isPopup){div.style.position="absolute";div.style.display="none";}div.appendChild(table);var thead=Calendar.createElement("thead",table);var cell=null;var row=null;var cal=this;var hh=function(text,cs,navtype){cell=Calendar.createElement("td",row);cell.colSpan=cs;cell.className="button";if(navtype!=0&&Math.abs(navtype)<=2)cell.className+=" nav";Calendar._add_evs(cell);cell.calendar=cal;cell.navtype=navtype;if(text.substr(0,1)!="&"){cell.appendChild(document.createTextNode(text));}else{cell.innerHTML=text;}return cell;};row=Calendar.createElement("tr",thead);var title_length=6;(this.isPopup)&&--title_length;(this.weekNumbers)&&++title_length;hh("?",1,400).ttip=Calendar._TT["INFO"];this.title=hh("",title_length,300);this.title.className="title";if(this.isPopup){this.title.ttip=Calendar._TT["DRAG_TO_MOVE"];this.title.style.cursor="move";hh("&#x00d7;",1,200).ttip=Calendar._TT["CLOSE"];}row=Calendar.createElement("tr",thead);row.className="headrow";this._nav_py=hh("&#x00ab;",1,-2);this._nav_py.ttip=Calendar._TT["PREV_YEAR"];this._nav_pm=hh("&#x2039;",1,-1);this._nav_pm.ttip=Calendar._TT["PREV_MONTH"];this._nav_now=hh(Calendar._TT["TODAY"],this.weekNumbers?4:3,0);this._nav_now.ttip=Calendar._TT["GO_TODAY"];this._nav_nm=hh("&#x203a;",1,1);this._nav_nm.ttip=Calendar._TT["NEXT_MONTH"];this._nav_ny=hh("&#x00bb;",1,2);this._nav_ny.ttip=Calendar._TT["NEXT_YEAR"];row=Calendar.createElement("tr",thead);row.className="daynames";if(this.weekNumbers){cell=Calendar.createElement("td",row);cell.className="name wn";cell.appendChild(document.createTextNode(Calendar._TT["WK"]));}for(var i=7;i>0;--i){cell=Calendar.createElement("td",row);cell.appendChild(document.createTextNode(""));if(!i){cell.navtype=100;cell.calendar=this;Calendar._add_evs(cell);}}this.firstdayname=(this.weekNumbers)?row.firstChild.nextSibling:row.firstChild;this._displayWeekdays();var tbody=Calendar.createElement("tbody",table);this.tbody=tbody;for(i=6;i>0;--i){row=Calendar.createElement("tr",tbody);if(this.weekNumbers){cell=Calendar.createElement("td",row);cell.appendChild(document.createTextNode(""));}for(var j=7;j>0;--j){cell=Calendar.createElement("td",row);cell.appendChild(document.createTextNode(""));cell.calendar=this;Calendar._add_evs(cell);}}if(this.showsTime){row=Calendar.createElement("tr",tbody);row.className="time";cell=Calendar.createElement("td",row);cell.className="time";cell.colSpan=2;cell.innerHTML=Calendar._TT["TIME"]||"&nbsp;";cell=Calendar.createElement("td",row);cell.className="time";cell.colSpan=this.weekNumbers?4:3;(function(){function makeTimePart(className,init,range_start,range_end){var part=Calendar.createElement("span",cell);part.className=className;part.appendChild(document.createTextNode(init));part.calendar=cal;part.ttip=Calendar._TT["TIME_PART"];part.navtype=50;part._range=[];if(typeof range_start!="number")part._range=range_start;else{for(var i=range_start;i<=range_end;++i){var txt;if(i<10&&range_end>=10)txt='0'+i;else txt=''+i;part._range[part._range.length]=txt;}}Calendar._add_evs(part);return part;};var hrs=cal.date.getHours();var mins=cal.date.getMinutes();var t12=!cal.time24;var pm=(hrs>12);if(t12&&pm)hrs-=12;var H=makeTimePart("hour",hrs,t12?1:0,t12?12:23);var span=Calendar.createElement("span",cell);span.appendChild(document.createTextNode(":"));span.className="colon";var M=makeTimePart("minute",mins,0,59);var AP=null;cell=Calendar.createElement("td",row);cell.className="time";cell.colSpan=2;if(t12)AP=makeTimePart("ampm",pm?"pm":"am",["am","pm"]);else cell.innerHTML="&nbsp;";cal.onSetTime=function(){var hrs=this.date.getHours();var mins=this.date.getMinutes();var pm=(hrs>12);if(pm&&t12)hrs-=12;H.firstChild.data=(hrs<10)?("0"+hrs):hrs;M.firstChild.data=(mins<10)?("0"+mins):mins;if(t12)AP.firstChild.data=pm?"pm":"am";};cal.onUpdateTime=function(){var date=this.date;var h=parseInt(H.firstChild.data,10);if(t12){if(/pm/i.test(AP.firstChild.data)&&h<12)h+=12;else if(/am/i.test(AP.firstChild.data)&&h==12)h=0;}var d=date.getDate();var m=date.getMonth();var y=date.getFullYear();date.setHours(h);date.setMinutes(parseInt(M.firstChild.data,10));date.setFullYear(y);date.setMonth(m);date.setDate(d);this.dateClicked=false;this.callHandler();};})();}else{this.onSetTime=this.onUpdateTime=function(){};}var tfoot=Calendar.createElement("tfoot",table);row=Calendar.createElement("tr",tfoot);row.className="footrow";cell=hh(Calendar._TT["SEL_DATE"],this.weekNumbers?8:7,300);cell.className="ttip";if(this.isPopup){cell.ttip=Calendar._TT["DRAG_TO_MOVE"];cell.style.cursor="move";}this.tooltips=cell;div=Calendar.createElement("div",this.element);this.monthsCombo=div;div.className="combo";for(i=0;i<Calendar._MN.length;++i){var mn=Calendar.createElement("div");mn.className=Calendar.is_ie?"label-IEfix":"label";mn.month=i;mn.appendChild(document.createTextNode(Calendar._SMN[i]));div.appendChild(mn);}div=Calendar.createElement("div",this.element);this.yearsCombo=div;div.className="combo";for(i=12;i>0;--i){var yr=Calendar.createElement("div");yr.className=Calendar.is_ie?"label-IEfix":"label";yr.appendChild(document.createTextNode(""));div.appendChild(yr);}this._init(this.firstDayOfWeek,this.date);parent.appendChild(this.element);};Calendar._keyEvent=function(ev){if(!window.calendar){return false;}(Calendar.is_ie)&&(ev=window.event);var cal=window.calendar;var act=(Calendar.is_ie||ev.type=="keypress");if(ev.ctrlKey){switch(ev.keyCode){case 37:act&&Calendar.cellClick(cal._nav_pm);break;case 38:act&&Calendar.cellClick(cal._nav_py);break;case 39:act&&Calendar.cellClick(cal._nav_nm);break;case 40:act&&Calendar.cellClick(cal._nav_ny);break;default:return false;}}else switch(ev.keyCode){case 32:Calendar.cellClick(cal._nav_now);break;case 27:act&&cal.callCloseHandler();break;case 37:case 38:case 39:case 40:if(act){var date=cal.date.getDate()-1;var el=cal.currentDateEl;var ne=null;var prev=(ev.keyCode==37)||(ev.keyCode==38);switch(ev.keyCode){case 37:(--date>=0)&&(ne=cal.ar_days[date]);break;case 38:date-=7;(date>=0)&&(ne=cal.ar_days[date]);break;case 39:(++date<cal.ar_days.length)&&(ne=cal.ar_days[date]);break;case 40:date+=7;(date<cal.ar_days.length)&&(ne=cal.ar_days[date]);break;}if(!ne){if(prev){Calendar.cellClick(cal._nav_pm);}else{Calendar.cellClick(cal._nav_nm);}date=(prev)?cal.date.getMonthDays():1;el=cal.currentDateEl;ne=cal.ar_days[date-1];}Calendar.removeClass(el,"selected");Calendar.addClass(ne,"selected");cal.date=new Date(ne.caldate);cal.callHandler();cal.currentDateEl=ne;}break;case 13:if(act){cal.callHandler();cal.hide();}break;default:return false;}return Calendar.stopEvent(ev);};Calendar.prototype._init=function(firstDayOfWeek,date){var today=new Date();this.table.style.visibility="hidden";var year=date.getFullYear();if(year<this.minYear){year=this.minYear;date.setFullYear(year);}else if(year>this.maxYear){year=this.maxYear;date.setFullYear(year);}this.firstDayOfWeek=firstDayOfWeek;this.date=new Date(date);var month=date.getMonth();var mday=date.getDate();var no_days=date.getMonthDays();date.setDate(1);var day1=(date.getDay()-this.firstDayOfWeek)%7;if(day1<0)day1+=7;date.setDate(-day1);date.setDate(date.getDate()+1);var row=this.tbody.firstChild;var MN=Calendar._SMN[month];var ar_days=new Array();var weekend=Calendar._TT["WEEKEND"];for(var i=0;i<6;++i,row=row.nextSibling){var cell=row.firstChild;if(this.weekNumbers){cell.className="day wn";cell.firstChild.data=date.getWeekNumber();cell=cell.nextSibling;}row.className="daysrow";var hasdays=false;for(var j=0;j<7;++j,cell=cell.nextSibling,date.setDate(date.getDate()+1)){var iday=date.getDate();var wday=date.getDay();cell.className="day";var current_month=(date.getMonth()==month);if(!current_month){if(this.showsOtherMonths){cell.className+=" othermonth";cell.otherMonth=true;}else{cell.className="emptycell";cell.innerHTML="&nbsp;";cell.disabled=true;continue;}}else{cell.otherMonth=false;hasdays=true;}cell.disabled=false;cell.firstChild.data=iday;if(typeof this.getDateStatus=="function"){var status=this.getDateStatus(date,year,month,iday);if(status===true){cell.className+=" disabled";cell.disabled=true;}else{if(/disabled/i.test(status))cell.disabled=true;cell.className+=" "+status;}}if(!cell.disabled){ar_days[ar_days.length]=cell;cell.caldate=new Date(date);cell.ttip="_";if(current_month&&iday==mday){cell.className+=" selected";this.currentDateEl=cell;}if(date.getFullYear()==today.getFullYear()&&date.getMonth()==today.getMonth()&&iday==today.getDate()){cell.className+=" today";cell.ttip+=Calendar._TT["PART_TODAY"];}if(weekend.indexOf(wday.toString())!=-1){cell.className+=cell.otherMonth?" oweekend":" weekend";}}}if(!(hasdays||this.showsOtherMonths))row.className="emptyrow";}this.ar_days=ar_days;this.title.firstChild.data=Calendar._MN[month]+", "+year;this.onSetTime();this.table.style.visibility="visible";};Calendar.prototype.setDate=function(date){if(!date.equalsTo(this.date)){this._init(this.firstDayOfWeek,date);}};Calendar.prototype.refresh=function(){this._init(this.firstDayOfWeek,this.date);};Calendar.prototype.setFirstDayOfWeek=function(firstDayOfWeek){this._init(firstDayOfWeek,this.date);this._displayWeekdays();};Calendar.prototype.setDateStatusHandler=Calendar.prototype.setDisabledHandler=function(unaryFunction){this.getDateStatus=unaryFunction;};Calendar.prototype.setRange=function(a,z){this.minYear=a;this.maxYear=z;};Calendar.prototype.callHandler=function(){if(this.onSelected){this.onSelected(this,this.date.print(this.dateFormat));}};Calendar.prototype.callCloseHandler=function(){if(this.onClose){this.onClose(this);}this.hideShowCovered();};Calendar.prototype.destroy=function(){var el=this.element.parentNode;el.removeChild(this.element);Calendar._C=null;window.calendar=null;};Calendar.prototype.reparent=function(new_parent){var el=this.element;el.parentNode.removeChild(el);new_parent.appendChild(el);};Calendar._checkCalendar=function(ev){if(!window.calendar){return false;}var el=Calendar.is_ie?Calendar.getElement(ev):Calendar.getTargetElement(ev);for(;el!=null&&el!=calendar.element;el=el.parentNode);if(el==null){window.calendar.callCloseHandler();return Calendar.stopEvent(ev);}};Calendar.prototype.show=function(){var rows=this.table.getElementsByTagName("tr");for(var i=rows.length;i>0;){var row=rows[--i];Calendar.removeClass(row,"rowhilite");var cells=row.getElementsByTagName("td");for(var j=cells.length;j>0;){var cell=cells[--j];Calendar.removeClass(cell,"hilite");Calendar.removeClass(cell,"active");}}this.element.style.display="block";this.hidden=false;if(this.isPopup){window.calendar=this;Calendar.addEvent(document,"keydown",Calendar._keyEvent);Calendar.addEvent(document,"keypress",Calendar._keyEvent);Calendar.addEvent(document,"mousedown",Calendar._checkCalendar);}this.hideShowCovered();};Calendar.prototype.hide=function(){if(this.isPopup){Calendar.removeEvent(document,"keydown",Calendar._keyEvent);Calendar.removeEvent(document,"keypress",Calendar._keyEvent);Calendar.removeEvent(document,"mousedown",Calendar._checkCalendar);}this.element.style.display="none";this.hidden=true;this.hideShowCovered();};Calendar.prototype.showAt=function(x,y){var s=this.element.style;s.left=x+"px";s.top=y+"px";this.show();};Calendar.prototype.showAtElement=function(el,opts){var self=this;var p=Calendar.getAbsolutePos(el);if(!opts||typeof opts!="string"){this.showAt(p.x,p.y+el.offsetHeight);return true;}function fixPosition(box){if(box.x<0)box.x=0;if(box.y<0)box.y=0;var cp=document.createElement("div");var s=cp.style;s.position="absolute";s.right=s.bottom=s.width=s.height="0px";document.body.appendChild(cp);var br=Calendar.getAbsolutePos(cp);document.body.removeChild(cp);if(Calendar.is_ie){br.y+=document.body.scrollTop;br.x+=document.body.scrollLeft;}else{br.y+=window.scrollY;br.x+=window.scrollX;}var tmp=box.x+box.width-br.x;if(tmp>0)box.x-=tmp;tmp=box.y+box.height-br.y;if(tmp>0)box.y-=tmp;};this.element.style.display="block";Calendar.continuation_for_the_fucking_khtml_browser=function(){var w=self.element.offsetWidth;var h=self.element.offsetHeight;self.element.style.display="none";var valign=opts.substr(0,1);var halign="l";if(opts.length>1){halign=opts.substr(1,1);}switch(valign){case "T":p.y-=h;break;case "B":p.y+=el.offsetHeight;break;case "C":p.y+=(el.offsetHeight-h)/2;break;case "t":p.y+=el.offsetHeight-h;break;case "b":break;}switch(halign){case "L":p.x-=w;break;case "R":p.x+=el.offsetWidth;break;case "C":p.x+=(el.offsetWidth-w)/2;break;case "r":p.x+=el.offsetWidth-w;break;case "l":break;}p.width=w;p.height=h+40;self.monthsCombo.style.display="none";fixPosition(p);self.showAt(p.x,p.y);};if(Calendar.is_khtml)setTimeout("Calendar.continuation_for_the_fucking_khtml_browser()",10);else Calendar.continuation_for_the_fucking_khtml_browser();};Calendar.prototype.setDateFormat=function(str){this.dateFormat=str;};Calendar.prototype.setTtDateFormat=function(str){this.ttDateFormat=str;};Calendar.prototype.parseDate=function(str,fmt){var y=0;var m=-1;var d=0;var a=str.split(/\W+/);if(!fmt){fmt=this.dateFormat;}var b=fmt.match(/%./g);var i=0,j=0;var hr=0;var min=0;for(i=0;i<a.length;++i){if(!a[i])continue;switch(b[i]){case "%d":case "%e":d=parseInt(a[i],10);break;case "%m":m=parseInt(a[i],10)-1;break;case "%Y":case "%y":y=parseInt(a[i],10);(y<100)&&(y+=(y>29)?1900:2000);break;case "%b":case "%B":for(j=0;j<12;++j){if(Calendar._MN[j].substr(0,a[i].length).toLowerCase()==a[i].toLowerCase()){m=j;break;}}break;case "%H":case "%I":case "%k":case "%l":hr=parseInt(a[i],10);break;case "%P":case "%p":if(/pm/i.test(a[i])&&hr<12)hr+=12;break;case "%M":min=parseInt(a[i],10);break;}}if(y!=0&&m!=-1&&d!=0){this.setDate(new Date(y,m,d,hr,min,0));return;}y=0;m=-1;d=0;for(i=0;i<a.length;++i){if(a[i].search(/[a-zA-Z]+/)!=-1){var t=-1;for(j=0;j<12;++j){if(Calendar._MN[j].substr(0,a[i].length).toLowerCase()==a[i].toLowerCase()){t=j;break;}}if(t!=-1){if(m!=-1){d=m+1;}m=t;}}else if(parseInt(a[i],10)<=12&&m==-1){m=a[i]-1;}else if(parseInt(a[i],10)>31&&y==0){y=parseInt(a[i],10);(y<100)&&(y+=(y>29)?1900:2000);}else if(d==0){d=a[i];}}if(y==0){var today=new Date();y=today.getFullYear();}if(m!=-1&&d!=0){this.setDate(new Date(y,m,d,hr,min,0));}};Calendar.prototype.hideShowCovered=function(){var self=this;Calendar.continuation_for_the_fucking_khtml_browser=function(){function getVisib(obj){var value=obj.style.visibility;if(!value){if(document.defaultView&&typeof(document.defaultView.getComputedStyle)=="function"){if(!Calendar.is_khtml)value=document.defaultView. getComputedStyle(obj,"").getPropertyValue("visibility");else value='';}else if(obj.currentStyle){value=obj.currentStyle.visibility;}else value='';}return value;};var tags=new Array("applet","iframe","select");var el=self.element;var p=Calendar.getAbsolutePos(el);var EX1=p.x;var EX2=el.offsetWidth+EX1;var EY1=p.y;var EY2=el.offsetHeight+EY1;for(var k=tags.length;k>0;){var ar=document.getElementsByTagName(tags[--k]);var cc=null;for(var i=ar.length;i>0;){cc=ar[--i];p=Calendar.getAbsolutePos(cc);var CX1=p.x;var CX2=cc.offsetWidth+CX1;var CY1=p.y;var CY2=cc.offsetHeight+CY1;if(self.hidden||(CX1>EX2)||(CX2<EX1)||(CY1>EY2)||(CY2<EY1)){if(!cc.__msh_save_visibility){cc.__msh_save_visibility=getVisib(cc);}cc.style.visibility=cc.__msh_save_visibility;}else{if(!cc.__msh_save_visibility){cc.__msh_save_visibility=getVisib(cc);}cc.style.visibility="hidden";}}}};if(Calendar.is_khtml)setTimeout("Calendar.continuation_for_the_fucking_khtml_browser()",10);else Calendar.continuation_for_the_fucking_khtml_browser();};Calendar.prototype._displayWeekdays=function(){var fdow=this.firstDayOfWeek;var cell=this.firstdayname;var weekend=Calendar._TT["WEEKEND"];for(var i=0;i<7;++i){cell.className="day name";var realday=(i+fdow)%7;if(i){cell.ttip=Calendar._TT["DAY_FIRST"].replace("%s",Calendar._DN[realday]);cell.navtype=100;cell.calendar=this;cell.fdow=realday;Calendar._add_evs(cell);}if(weekend.indexOf(realday.toString())!=-1){Calendar.addClass(cell,"weekend");}cell.firstChild.data=Calendar._SDN[(i+fdow)%7];cell=cell.nextSibling;}};Calendar.prototype._hideCombos=function(){this.monthsCombo.style.display="none";this.yearsCombo.style.display="none";};Calendar.prototype._dragStart=function(ev){if(this.dragging){return;}this.dragging=true;var posX;var posY;if(Calendar.is_ie){posY=window.event.clientY+document.body.scrollTop;posX=window.event.clientX+document.body.scrollLeft;}else{posY=ev.clientY+window.scrollY;posX=ev.clientX+window.scrollX;}var st=this.element.style;this.xOffs=posX-parseInt(st.left);this.yOffs=posY-parseInt(st.top);with(Calendar){addEvent(document,"mousemove",calDragIt);addEvent(document,"mouseup",calDragEnd);}};Date._MD=new Array(31,28,31,30,31,30,31,31,30,31,30,31);Date.SECOND=1000;Date.MINUTE=60*Date.SECOND;Date.HOUR=60*Date.MINUTE;Date.DAY=24*Date.HOUR;Date.WEEK=7*Date.DAY;Date.prototype.getMonthDays=function(month){var year=this.getFullYear();if(typeof month=="undefined"){month=this.getMonth();}if(((0==(year%4))&&((0!=(year%100))||(0==(year%400))))&&month==1){return 29;}else{return Date._MD[month];}};Date.prototype.getDayOfYear=function(){var now=new Date(this.getFullYear(),this.getMonth(),this.getDate(),0,0,0);var then=new Date(this.getFullYear(),0,0,0,0,0);var time=now-then;return Math.floor(time/Date.DAY);};Date.prototype.getWeekNumber=function(){var d=new Date(this.getFullYear(),this.getMonth(),this.getDate(),0,0,0);var DoW=d.getDay();d.setDate(d.getDate()-(DoW+6)%7+3);var ms=d.valueOf();d.setMonth(0);d.setDate(4);return Math.round((ms-d.valueOf())/(7*864e5))+1;};Date.prototype.equalsTo=function(date){return((this.getFullYear()==date.getFullYear())&&(this.getMonth()==date.getMonth())&&(this.getDate()==date.getDate())&&(this.getHours()==date.getHours())&&(this.getMinutes()==date.getMinutes()));};Date.prototype.print=function(str){var m=this.getMonth();var d=this.getDate();var y=this.getFullYear();var wn=this.getWeekNumber();var w=this.getDay();var s={};var hr=this.getHours();var pm=(hr>=12);var ir=(pm)?(hr-12):hr;var dy=this.getDayOfYear();if(ir==0)ir=12;var min=this.getMinutes();var sec=this.getSeconds();s["%a"]=Calendar._SDN[w];s["%A"]=Calendar._DN[w];s["%b"]=Calendar._SMN[m];s["%B"]=Calendar._MN[m];s["%C"]=1+Math.floor(y/100);s["%d"]=(d<10)?("0"+d):d;s["%e"]=d;s["%H"]=(hr<10)?("0"+hr):hr;s["%I"]=(ir<10)?("0"+ir):ir;s["%j"]=(dy<100)?((dy<10)?("00"+dy):("0"+dy)):dy;s["%k"]=hr;s["%l"]=ir;s["%m"]=(m<9)?("0"+(1+m)):(1+m);s["%M"]=(min<10)?("0"+min):min;s["%n"]="\n";s["%p"]=pm?"PM":"AM";s["%P"]=pm?"pm":"am";s["%s"]=Math.floor(this.getTime()/1000);s["%S"]=(sec<10)?("0"+sec):sec;s["%t"]="\t";s["%U"]=s["%W"]=s["%V"]=(wn<10)?("0"+wn):wn;s["%u"]=w+1;s["%w"]=w;s["%y"]=(''+y).substr(2,2);s["%Y"]=y;s["%%"]="%";var re=/%./g;if(!Calendar.is_ie5)return str.replace(re,function(par){return s[par]||par;});var a=str.match(re);for(var i=0;i<a.length;i++){var tmp=s[a[i]];if(tmp){re=new RegExp(a[i],'g');str=str.replace(re,tmp);}}return str;};Date.prototype.__msh_oldSetFullYear=Date.prototype.setFullYear;Date.prototype.setFullYear=function(y){var d=new Date(this);d.__msh_oldSetFullYear(y);if(d.getMonth()!=this.getMonth())this.setDate(28);this.__msh_oldSetFullYear(y);};window.calendar=null;
\ No newline at end of file
diff --git a/skins/jscalendar/doc/html/reference-Z-S.css b/skins/jscalendar/doc/html/reference-Z-S.css
new file mode 100644
index 0000000..e69de29
diff --git a/skins/jscalendar/doc/html/reference.css b/skins/jscalendar/doc/html/reference.css
new file mode 100644
index 0000000..42e9283
--- /dev/null
+++ b/skins/jscalendar/doc/html/reference.css
@@ -0,0 +1,34 @@
+html { margin: 0px; padding: 0px; background-color: #08f; color: #444; font-family: georgia,serif; }
+body { margin: 2em 8%; background-color: #fff; padding: 1em; border: 2px ridge #048; }
+
+a:link, a:visited { text-decoration: none; color: #00f; }
+a:hover { color: #f00; text-decoration: underline; }
+a:active { color: #f84; }
+
+h1, h2, h3, h4, h5, h6 { font-family: tahoma,verdana,sans-serif; }
+
+h2, h3 { font-weight: normal; }
+
+h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover { text-decoration: none; }
+
+h1 { font-size: 170%; border: 2px ridge #048; letter-spacing: 2px; color: #000; margin-left: -2em; margin-right: -2em; 
+background-color: #fff; padding: 2px 1em; background-color: #def; }
+h2 { font-size: 140%; color: #222; }
+h3 { font-size: 120%; color: #444; }
+
+h1.title { font-size: 300%; font-family: georgia,serif; font-weight: normal; color: #846; letter-spacing: -1px;
+border: none;
+padding: none;
+background-color: #fff;
+border-bottom: 3px double #624; padding-bottom: 2px; margin-left: 8%; margin-right: 8%; }
+
+.colophon { padding-top: 2em; color: #999; font-size: 90%; font-family: georgia,"times new roman",serif; }
+.colophon a:link, .colophon a:visited { color: #755; }
+.colophon a:hover { color: #422; text-decoration: underline; }
+
+.footnote { font-size: 90%; font-style: italic; font-family: georgia,"times new roman",serif; margin: 0px 3em; }
+.footnote sup { font-size: 120%; padding: 0px 0.3em; position: relative; top: -0.2em; }
+
+.small { font-size: 90%; }
+
+.verbatim { background-color: #eee; padding: 0.2em 1em; border: 1px solid #aaa; }
diff --git a/skins/jscalendar/doc/html/reference.html b/skins/jscalendar/doc/html/reference.html
new file mode 100644
index 0000000..d231c5e
--- /dev/null
+++ b/skins/jscalendar/doc/html/reference.html
@@ -0,0 +1,1316 @@
+<!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html>
+<!--
+
+Generated from TeX source by tex2page, v 4r8f
+(running on MzScheme 204, unix), 
+(c) Dorai Sitaram, 
+http://www.ccs.neu.edu/~dorai/tex2page/tex2page-doc.html
+
+-->
+<head>
+<title>
+DHTML Calendar Widget
+</title>
+<link rel="stylesheet" type="text/css" href="reference.css" title=default>
+<link rel="stylesheet" type="text/css" href="reference-Z-S.css" title=default>
+<meta name=robots content="index,follow">
+</head>
+<body>
+<p>
+</p>
+<p>
+</p>
+<p>
+</p>
+<p>
+</p>
+<p>
+</p>
+<p>
+
+
+
+</p>
+<p>
+
+
+
+</p>
+<p>
+
+
+</p>
+<p>
+</p>
+<p>
+</p>
+<h1 class=title align=center><br><br>DHTML Calendar Widget</h1>
+<p></p>
+<div align=center>
+Mihai Bazon, <tt>&lt;mishoo@infoiasi.ro&gt;</tt><p>February 6, 2004<br></p>
+<p></p>
+<p>
+<span class=small>calendar version: 0.9.6 &#8220;Keep cool but don&#8217;t freeze&#8221;</span>
+</p>
+</div>
+<p></p>
+<p>
+<span class=small><code class=verbatim>$Id: reference.tex,v 1.20 2004/02/06 18:53:09 mishoo Exp $</code></span>
+</p>
+<span class=small><blockquote>
+<div align=right><table><tr><td>
+
+</td></tr></table></div>
+
+</blockquote></span>
+<a name="node_sec_Temp_1"></a>
+<h1>Contents</h1><p><a name="node_toc_start"></a></p>
+<p><b>
+&nbsp; &nbsp; <a name="node_toc_node_sec_1"></a><a href="#node_sec_1">1&nbsp;&nbsp;Overview</a></b><br>
+&nbsp; &nbsp; &nbsp; &nbsp; <a name="node_toc_node_sec_1.1"></a><a href="#node_sec_1.1">1.1&nbsp;&nbsp;How does this thing work?</a><br>
+&nbsp; &nbsp; &nbsp; &nbsp; <a name="node_toc_node_sec_1.2"></a><a href="#node_sec_1.2">1.2&nbsp;&nbsp;Project files</a><br>
+&nbsp; &nbsp; &nbsp; &nbsp; <a name="node_toc_node_sec_1.3"></a><a href="#node_sec_1.3">1.3&nbsp;&nbsp;License</a><br>
+</p>
+<p><b>
+&nbsp; &nbsp; <a name="node_toc_node_sec_2"></a><a href="#node_sec_2">2&nbsp;&nbsp;Quick startup</a></b><br>
+&nbsp; &nbsp; &nbsp; &nbsp; <a name="node_toc_node_sec_2.1"></a><a href="#node_sec_2.1">2.1&nbsp;&nbsp;Installing a popup calendar</a><br>
+&nbsp; &nbsp; &nbsp; &nbsp; <a name="node_toc_node_sec_2.2"></a><a href="#node_sec_2.2">2.2&nbsp;&nbsp;Installing a flat calendar</a><br>
+&nbsp; &nbsp; &nbsp; &nbsp; <a name="node_toc_node_sec_2.3"></a><a href="#node_sec_2.3">2.3&nbsp;&nbsp;<tt>Calendar.setup</tt> in detail</a><br>
+</p>
+<p><b>
+&nbsp; &nbsp; <a name="node_toc_node_sec_3"></a><a href="#node_sec_3">3&nbsp;&nbsp;The Calendar object overview</a></b><br>
+&nbsp; &nbsp; &nbsp; &nbsp; <a name="node_toc_node_sec_3.1"></a><a href="#node_sec_3.1">3.1&nbsp;&nbsp;Creating a calendar</a><br>
+&nbsp; &nbsp; &nbsp; &nbsp; <a name="node_toc_node_sec_3.2"></a><a href="#node_sec_3.2">3.2&nbsp;&nbsp;Order does matter ;-)</a><br>
+&nbsp; &nbsp; &nbsp; &nbsp; <a name="node_toc_node_sec_3.3"></a><a href="#node_sec_3.3">3.3&nbsp;&nbsp;Caching the object</a><br>
+&nbsp; &nbsp; &nbsp; &nbsp; <a name="node_toc_node_sec_3.4"></a><a href="#node_sec_3.4">3.4&nbsp;&nbsp;Callback functions</a><br>
+</p>
+<p><b>
+&nbsp; &nbsp; <a name="node_toc_node_sec_4"></a><a href="#node_sec_4">4&nbsp;&nbsp;The Calendar object API reference</a></b><br>
+&nbsp; &nbsp; &nbsp; &nbsp; <a name="node_toc_node_sec_4.1"></a><a href="#node_sec_4.1">4.1&nbsp;&nbsp;<tt>Calendar</tt> constructor</a><br>
+&nbsp; &nbsp; &nbsp; &nbsp; <a name="node_toc_node_sec_4.2"></a><a href="#node_sec_4.2">4.2&nbsp;&nbsp;Useful member variables (properties)</a><br>
+&nbsp; &nbsp; &nbsp; &nbsp; <a name="node_toc_node_sec_4.3"></a><a href="#node_sec_4.3">4.3&nbsp;&nbsp;Public methods</a><br>
+&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <a name="node_toc_node_sec_4.3.1"></a><a href="#node_sec_4.3.1">4.3.1&nbsp;&nbsp;<tt>Calendar.create</tt></a><br>
+&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <a name="node_toc_node_sec_4.3.2"></a><a href="#node_sec_4.3.2">4.3.2&nbsp;&nbsp;<tt>Calendar.callHandler</tt></a><br>
+&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <a name="node_toc_node_sec_4.3.3"></a><a href="#node_sec_4.3.3">4.3.3&nbsp;&nbsp;<tt>Calendar.callCloseHandler</tt></a><br>
+&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <a name="node_toc_node_sec_4.3.4"></a><a href="#node_sec_4.3.4">4.3.4&nbsp;&nbsp;<tt>Calendar.hide</tt></a><br>
+&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <a name="node_toc_node_sec_4.3.5"></a><a href="#node_sec_4.3.5">4.3.5&nbsp;&nbsp;<tt>Calendar.setDateFormat</tt></a><br>
+&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <a name="node_toc_node_sec_4.3.6"></a><a href="#node_sec_4.3.6">4.3.6&nbsp;&nbsp;<tt>Calendar.setTtDateFormat</tt></a><br>
+&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <a name="node_toc_node_sec_4.3.7"></a><a href="#node_sec_4.3.7">4.3.7&nbsp;&nbsp;<tt>Calendar.setDisabledHandler</tt></a><br>
+&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <a name="node_toc_node_sec_4.3.8"></a><a href="#node_sec_4.3.8">4.3.8&nbsp;&nbsp;<tt>Calendar.setDateStatusHandler</tt></a><br>
+&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <a name="node_toc_node_sec_4.3.9"></a><a href="#node_sec_4.3.9">4.3.9&nbsp;&nbsp;<tt>Calendar.show</tt></a><br>
+&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <a name="node_toc_node_sec_4.3.10"></a><a href="#node_sec_4.3.10">4.3.10&nbsp;&nbsp;<tt>Calendar.showAt</tt></a><br>
+&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <a name="node_toc_node_sec_4.3.11"></a><a href="#node_sec_4.3.11">4.3.11&nbsp;&nbsp;<tt>Calendar.showAtElement</tt></a><br>
+&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <a name="node_toc_node_sec_4.3.12"></a><a href="#node_sec_4.3.12">4.3.12&nbsp;&nbsp;<tt>Calendar.setDate</tt></a><br>
+&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <a name="node_toc_node_sec_4.3.13"></a><a href="#node_sec_4.3.13">4.3.13&nbsp;&nbsp;<tt>Calendar.setFirstDayOfWeek</tt></a><br>
+&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <a name="node_toc_node_sec_4.3.14"></a><a href="#node_sec_4.3.14">4.3.14&nbsp;&nbsp;<tt>Calendar.parseDate</tt></a><br>
+&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <a name="node_toc_node_sec_4.3.15"></a><a href="#node_sec_4.3.15">4.3.15&nbsp;&nbsp;<tt>Calendar.setRange</tt></a><br>
+</p>
+<p><b>
+&nbsp; &nbsp; <a name="node_toc_node_sec_5"></a><a href="#node_sec_5">5&nbsp;&nbsp;Side effects</a></b><br>
+</p>
+<p><b>
+&nbsp; &nbsp; <a name="node_toc_node_sec_6"></a><a href="#node_sec_6">6&nbsp;&nbsp;Credits</a></b><br>
+</p>
+<p>
+</p>
+<p>
+</p>
+<a name="node_sec_1"></a>
+<h1><a href="#node_toc_node_sec_1">1&nbsp;&nbsp;Overview</a></h1><p>The DHTML Calendar widget<a name="call_footnote_Temp_2"></a><a href="#footnote_Temp_2"><sup><small>1</small></sup></a>
+is an (HTML) user interface element that gives end-users a friendly way to
+select date and time.  It works in a web browser.  The first versions only provided
+support for popup calendars, while starting with version 0.9 it also supports
+&#8220;flat&#8221; display.  A &#8220;flat&#8221; calendar is a calendar that stays visible in the
+page all the time.  In this mode it could be very useful for &#8220;blog&#8221; pages and
+other pages that require the calendar to be always present.</p>
+<p>
+The calendar is compatible with most popular browsers nowadays.  While it&#8217;s
+created using web standards and it should generally work with any compliant
+browser, the following browsers were found to work: Mozilla (the
+development platform), Netscape&nbsp;6.0 or better, all other Gecko-based browsers,
+Internet Explorer&nbsp;5.0 or better <em>for Windows</em><a name="call_footnote_Temp_3"></a><a href="#footnote_Temp_3"><sup><small>2</small></sup></a>, Opera&nbsp;7<a name="call_footnote_Temp_4"></a><a href="#footnote_Temp_4"><sup><small>3</small></sup></a> and Konqueror 3.1.2 (with pretty much the
+same dysfunctions as in Opera).</p>
+<p>
+You can find the latest info and version at the calendar homepage:</p>
+<p>
+</p>
+<div align=center><table><tr><td>
+
+<a href="http://dynarch.com/mishoo/calendar.epl"><tt>http://dynarch.com/mishoo/calendar.epl</tt></a>
+</td></tr></table></div>
+<p>
+</p>
+<a name="node_sec_1.1"></a>
+<h2><a href="#node_toc_node_sec_1.1">1.1&nbsp;&nbsp;How does this thing work?</a></h2><p>DHTML is not &#8220;another kind of HTML&#8221;.  It&#8217;s merely a naming convention.  DHTML
+refers to the combination of HTML, CSS, JavaScript and DOM.  DOM (Document
+Object Model) is a set of interfaces that glues the other three together.  In
+other words, DOM allows dynamic modification of an HTML page through a program.
+JavaScript is our programming language, since that&#8217;s what browsers like.  CSS
+is a way to make it look good ;-).  So all this soup is generically known as
+DHTML.</p>
+<p>
+Using DOM calls, the program dynamically creates a <tt>&lt;table&gt;</tt> element
+that contains a calendar for the given date and then inserts it in the document
+body.  Then it shows this table at a specified position.  Usually the position
+is related to some element in which the date needs to be displayed/entered,
+such as an input field.</p>
+<p>
+By assigning a certain CSS class to the table we can control the look of the
+calendar through an external CSS file; therefore, in order to change the
+colors, backgrounds, rollover effects and other stuff, you can only change a
+CSS file&#8212;modification of the program itself is not necessary.</p>
+<p>
+</p>
+<a name="node_sec_1.2"></a>
+<h2><a href="#node_toc_node_sec_1.2">1.2&nbsp;&nbsp;Project files</a></h2><p>Here&#8217;s a description of the project files, excluding documentation and example
+files.</p>
+<p>
+</p>
+<ul><p>
+</p>
+<li><p>the main program file (<tt>calendar.js</tt>).  This defines all the logic
+behind the calendar widget.</p>
+<p>
+</p>
+<li><p>the CSS files (<tt>calendar-*.css</tt>).  Loading one of them is
+necessary in order to see the calendar as intended.</p>
+<p>
+</p>
+<li><p>the language definition files (<tt>lang/calendar-*.js</tt>).  They are
+plain JavaScript files that contain all texts that are displayed by the
+calendar.  Loading one of them is necessary.</p>
+<p>
+</p>
+<li><p>helper functions for quick setup of the calendar
+(<tt>calendar-setup.js</tt>).  You can do fine without it, but starting with
+version 0.9.3 this is the recommended way to setup a calendar.</p>
+<p>
+</p>
+</ul><p></p>
+<p>
+</p>
+<a name="node_sec_1.3"></a>
+<h2><a href="#node_toc_node_sec_1.3">1.3&nbsp;&nbsp;License</a></h2><p></p>
+<div align=center><table><tr><td>
+
+&copy; Mihai Bazon, 2002 &#8211; 2003, <tt>&lt;mishoo@infoiasi.ro&gt;</tt><br>
+<a href="http://dynarch.com/mishoo/"><tt>http://dynarch.com/mishoo/</tt></a>
+</td></tr></table></div>
+<p>
+The calendar is released under the
+<a href="http://www.gnu.org/licenses/lgpl.html">GNU Lesser General Public License</a>.  You
+can <a href="http://www.gnu.org/licenses/lgpl.html">read the entire license text
+here</a>.</p>
+<p>
+</p>
+<a name="node_sec_2"></a>
+<h1><a href="#node_toc_node_sec_2">2&nbsp;&nbsp;Quick startup</a></h1><p></p>
+<p>
+Installing the calendar used to be quite a task until version 0.9.3.  Starting
+with 0.9.3 I have included the file <tt>calendar-setup.js</tt> whose goal is to
+assist you to setup a popup or flat calendar in minutes.  You are
+encouraged to modify this file and <em>not</em> calendar.js if you need
+extra customization, but you&#8217;re on your own.</p>
+<p>
+First you have to include the needed scripts and style-sheet.  Make sure you do
+this in your document&#8217;s <tt>&lt;head&gt;</tt> section, also make sure you put the
+correct paths to the scripts.</p>
+<p>
+</p>
+<pre class=verbatim>&lt;style type=&quot;text/css&quot;&gt;@import url(calendar-win2k-1.css);&lt;/style&gt;
+&lt;script type=&quot;text/javascript&quot; src=&quot;calendar.js&quot;&gt;&lt;/script&gt;
+&lt;script type=&quot;text/javascript&quot; src=&quot;lang/calendar-en.js&quot;&gt;&lt;/script&gt;
+&lt;script type=&quot;text/javascript&quot; src=&quot;calendar-setup.js&quot;&gt;&lt;/script&gt;
+</pre><p></p>
+<p>
+</p>
+<a name="node_sec_2.1"></a>
+<h2><a href="#node_toc_node_sec_2.1">2.1&nbsp;&nbsp;Installing a popup calendar</a></h2><p></p>
+<p>
+Now suppose you have the following HTML:</p>
+<p>
+</p>
+<pre class=verbatim>&lt;form ...&gt;
+  &lt;input type=&quot;text&quot; id=&quot;data&quot; name=&quot;data&quot; /&gt;
+  &lt;button id=&quot;trigger&quot;&gt;...&lt;/button&gt;
+&lt;/form&gt;
+</pre><p></p>
+<p>
+You want the button to popup a calendar widget when clicked?  Just
+insert the following code immediately <em>after</em> the HTML form:</p>
+<p>
+</p>
+<pre class=verbatim>&lt;script type=&quot;text/javascript&quot;&gt;
+  Calendar.setup(
+    {
+      inputField  : &quot;data&quot;,         // ID of the input field
+      ifFormat    : &quot;%m %d, %Y&quot;,    // the date format
+      button      : &quot;trigger&quot;       // ID of the button
+    }
+  );
+&lt;/script&gt;
+</pre><p></p>
+<p>
+The <tt>Calendar.setup</tt> function, defined in <tt>calendar-setup.js</tt>
+takes care of &#8220;patching&#8221; the button to display a calendar when clicked.  The
+calendar is by default in single-click mode and linked with the given input
+field, so that when the end-user selects a date it will update the input field
+with the date in the given format and close the calendar.  If you are a
+long-term user of the calendar you probably remember that for doing this you
+needed to write a couple functions and add an &#8220;onclick&#8221; handler for the
+button by hand.</p>
+<p>
+By looking at the example above we can see that the function
+<tt>Calendar.setup</tt> receives only one parameter: a JavaScript object.
+Further, that object can have lots of properties that tell to the setup
+function how would we like to have the calendar.  For instance, if we would
+like a calendar that closes at double-click instead of single-click we would
+also include the following: <tt>singleClick:false</tt>.</p>
+<p>
+For a list of all supported parameters please see the section
+<a href="#node_sec_2.3">2.3</a>.</p>
+<p>
+</p>
+<a name="node_sec_2.2"></a>
+<h2><a href="#node_toc_node_sec_2.2">2.2&nbsp;&nbsp;Installing a flat calendar</a></h2><p></p>
+<p>
+Here&#8217;s how to configure a flat calendar, using the same <tt>Calendar.setup</tt>
+function.  First, you should have an empty element with an ID.  This element
+will act as a container for the calendar.  It can be any block-level element,
+such as DIV, TABLE, etc.  We will use a DIV in this example.</p>
+<p>
+</p>
+<pre class=verbatim>&lt;div id=&quot;calendar-container&quot;&gt;&lt;/div&gt;
+</pre><p></p>
+<p>
+Then there is the JavaScript code that sets up the calendar into the
+&#8220;calendar-container&#8221; DIV.  The code can occur anywhere in HTML
+<em>after</em> the DIV element.</p>
+<p>
+</p>
+<pre class=verbatim>&lt;script type=&quot;text/javascript&quot;&gt;
+  function dateChanged(calendar) {
+    // Beware that this function is called even if the end-user only
+    // changed the month/year.  In order to determine if a date was
+    // clicked you can use the dateClicked property of the calendar:
+    if (calendar.dateClicked) {
+      // OK, a date was clicked, redirect to /yyyy/mm/dd/index.php
+      var y = calendar.date.getFullYear();
+      var m = calendar.date.getMonth();     // integer, 0..11
+      var d = calendar.date.getDate();      // integer, 1..31
+      // redirect...
+      window.location = &quot;/&quot; + y + &quot;/&quot; + m + &quot;/&quot; + d + &quot;/index.php&quot;;
+    }
+  };
+
+  Calendar.setup(
+    {
+      flat         : &quot;calendar-container&quot;, // ID of the parent element
+      flatCallback : dateChanged           // our callback function
+    }
+  );
+&lt;/script&gt;
+</pre><p></p>
+<p>
+</p>
+<a name="node_sec_2.3"></a>
+<h2><a href="#node_toc_node_sec_2.3">2.3&nbsp;&nbsp;<tt>Calendar.setup</tt> in detail</a></h2><p></p>
+<p>
+Following there is the complete list of properties interpreted by
+Calendar.setup.  All of them have default values, so you can pass only those
+which you would like to customize.  Anyway, you <em>must</em> pass at least one
+of <tt>inputField</tt>, <tt>displayArea</tt> or <tt>button</tt>, for a popup
+calendar, or <tt>flat</tt> for a flat calendar.  Otherwise you will get a
+warning message saying that there&#8217;s nothing to setup.</p>
+<p>
+</p>
+<span class=small><table border=0><tr><td valign=top ><b>property</b> </td><td valign=top ><b>type</b> </td><td valign=top ><b>description</b> </td><td valign=top ><b>default</b>
+</td></tr>
+<tr><td valign=top ><tt>inputField</tt>
+</td><td valign=top >string </td><td valign=top >The ID of your input field.
+</td><td valign=top >null
+</td></tr>
+<tr><td valign=top ><tt>displayArea</tt>
+</td><td valign=top >string </td><td valign=top >This is the ID of a &lt;span&gt;, &lt;div&gt;, or any other element that you would like to use to display the current date. This is generally useful only if the input field is hidden, as an area to display the date.
+</td><td valign=top >null
+</td></tr>
+<tr><td valign=top ><tt>button</tt>
+</td><td valign=top >string </td><td valign=top >The ID of the calendar &#8220;trigger&#8221;. This is an element (ordinarily a button or an image) that will dispatch a certain event (usually &#8220;click&#8221;) to the function that creates and displays the calendar.
+</td><td valign=top >null
+</td></tr>
+<tr><td valign=top ><tt>eventName</tt>
+</td><td valign=top >string </td><td valign=top >The name of the event that will trigger the calendar. The name should be without the &#8220;on&#8221; prefix, such as &#8220;click&#8221; instead of &#8220;onclick&#8221;. Virtually all users will want to let this have the default value (&#8220;click&#8221;). Anyway, it could be useful if, say, you want the calendar to appear when the input field is focused and have no trigger button (in this case use &#8220;focus&#8221; as the event name).
+</td><td valign=top >&#8220;click&#8221;
+</td></tr>
+<tr><td valign=top ><tt>ifFormat</tt>
+</td><td valign=top >string </td><td valign=top >The format string that will be used to enter the date in the input field. This format will be honored even if the input field is hidden.
+</td><td valign=top >&#8220;%Y/%m/%d&#8221;
+</td></tr>
+<tr><td valign=top ><tt>daFormat</tt>
+</td><td valign=top >string </td><td valign=top >Format of the date displayed in the displayArea (if specified).
+</td><td valign=top >&#8220;%Y/%m/%d&#8221;
+</td></tr>
+<tr><td valign=top ><tt>singleClick</tt>
+</td><td valign=top >boolean </td><td valign=top >Wether the calendar is in &#8220;single-click mode&#8221; or &#8220;double-click mode&#8221;. If true (the default) the calendar will be created in single-click mode.
+</td><td valign=top >true
+</td></tr>
+<tr><td valign=top ><tt>disableFunc</tt>
+</td><td valign=top >function </td><td valign=top >A function that receives a JS Date object.  It should return
+<tt>true</tt> if that date has to be disabled, <tt>false</tt> otherwise.
+<font color="red">DEPRECATED (see below).</font>
+</td><td valign=top >null
+</td></tr>
+<tr><td valign=top ><tt>dateStatusFunc</tt>
+</td><td valign=top >function </td><td valign=top >A function that receives a JS Date object and returns a boolean
+or a string.  This function allows one to set a certain CSS class to some
+date, therefore making it look different.  If it returns <tt>true</tt> then
+the date will be disabled.  If it returns <tt>false</tt> nothing special
+happens with the given date.  If it returns a string then that will be taken
+as a CSS class and appended to the date element.  If this string is
+&#8220;disabled&#8221; then the date is also disabled (therefore is like returning
+<tt>true</tt>).  For more information please also refer to section
+<a href="#node_sec_4.3.8">4.3.8</a>.
+</td><td valign=top >null
+</td></tr>
+<tr><td valign=top ><tt>firstDay</tt>
+</td><td valign=top >integer </td><td valign=top >Specifies which day is to be displayed as the first day of
+week.  Possible values are 0 to 6; 0 means Sunday, 1 means Monday, ..., 6
+means Saturday.  The end user can easily change this too, by clicking on the
+day name in the calendar header.
+</td><td valign=top >0
+</td></tr>
+<tr><td valign=top ><tt>weekNumbers</tt>
+</td><td valign=top >boolean </td><td valign=top >If &#8220;true&#8221; then the calendar will display week numbers.
+</td><td valign=top >true
+</td></tr>
+<tr><td valign=top ><tt>align</tt>
+</td><td valign=top >string </td><td valign=top >Alignment of the calendar, relative to the reference element. The
+reference element is dynamically chosen like this: if a displayArea is
+specified then it will be the reference element. Otherwise, the input field
+is the reference element.  For the meaning of the alignment characters
+please section <a href="#node_sec_4.3.11">4.3.11</a>.
+</td><td valign=top >&#8220;Bl&#8221;
+</td></tr>
+<tr><td valign=top ><tt>range</tt>
+</td><td valign=top >array </td><td valign=top >An array having exactly 2 elements, integers. (!) The first [0] element is the minimum year that is available, and the second [1] element is the maximum year that the calendar will allow.
+</td><td valign=top >[1900, 2999]
+</td></tr>
+<tr><td valign=top ><tt>flat</tt>
+</td><td valign=top >string </td><td valign=top >If you want a flat calendar, pass the ID of the parent object in
+this property.  If not, pass <tt>null</tt> here (or nothing at all as
+<tt>null</tt> is the default value).
+</td><td valign=top >null
+</td></tr>
+<tr><td valign=top ><tt>flatCallback</tt>
+</td><td valign=top >function </td><td valign=top >You should provide this function if the calendar is flat.  It
+will be called when the date in the calendar is changed with a reference to
+the calendar object.  See section <a href="#node_sec_2.2">2.2</a> for an example
+of how to setup a flat calendar.
+</td><td valign=top >null
+</td></tr>
+<tr><td valign=top ><tt>onSelect</tt>
+</td><td valign=top >function </td><td valign=top >If you provide a function handler here then you have to manage
+the &#8220;click-on-date&#8221; event by yourself.  Look in the calendar-setup.js and
+take as an example the onSelect handler that you can see there.
+</td><td valign=top >null
+</td></tr>
+<tr><td valign=top ><tt>onClose</tt>
+</td><td valign=top >function </td><td valign=top >This handler will be called when the calendar needs to close.
+You don&#8217;t need to provide one, but if you do it&#8217;s your responsibility to
+hide/destroy the calendar.  You&#8217;re on your own.  Check the calendar-setup.js
+file for an example.
+</td><td valign=top >null
+</td></tr>
+<tr><td valign=top ><tt>onUpdate</tt>
+</td><td valign=top >function </td><td valign=top >If you supply a function handler here, it will be called right
+after the target field is updated with a new date.  You can use this to
+chain 2 calendars, for instance to setup a default date in the second just
+after a date was selected in the first.
+</td><td valign=top >null
+</td></tr>
+<tr><td valign=top ><tt>date</tt>
+</td><td valign=top >date </td><td valign=top >This allows you to setup an initial date where the calendar will be
+positioned to.  If absent then the calendar will open to the today date.
+</td><td valign=top >null
+</td></tr>
+<tr><td valign=top ><tt>showsTime</tt>
+</td><td valign=top >boolean </td><td valign=top >If this is set to <tt>true</tt> then the calendar will also
+allow time selection.
+</td><td valign=top >false
+</td></tr>
+<tr><td valign=top ><tt>timeFormat</tt>
+</td><td valign=top >string </td><td valign=top >Set this to &#8220;12&#8221; or &#8220;24&#8221; to configure the way that the
+calendar will display time.
+</td><td valign=top >&#8220;24&#8221;
+</td></tr>
+<tr><td valign=top ><tt>electric</tt>
+</td><td valign=top >boolean </td><td valign=top >Set this to &#8220;false&#8221; if you want the calendar to update the
+field only when closed (by default it updates the field at each date change,
+even if the calendar is not closed) </td><td valign=top >true
+</td></tr>
+<tr><td valign=top ><tt>position</tt>
+</td><td valign=top >array </td><td valign=top >Specifies the [x, y] position, relative to page&#8217;s top-left corner,
+where the calendar will be displayed.  If not passed then the position will
+be computed based on the &#8220;align&#8221; parameter.  Defaults to &#8220;null&#8221; (not
+used). </td><td valign=top >null
+</td></tr>
+<tr><td valign=top ><tt>cache</tt>
+</td><td valign=top >boolean </td><td valign=top >Set this to &#8220;true&#8221; if you want to cache the calendar object.
+This means that a single calendar object will be used for all fields that
+require a popup calendar </td><td valign=top >false
+</td></tr>
+<tr><td valign=top ><tt>showOthers</tt>
+</td><td valign=top >boolean </td><td valign=top >If set to &#8220;true&#8221; then days belonging to months overlapping
+with the currently displayed month will also be displayed in the calendar
+(but in a &#8220;faded-out&#8221; color) </td><td valign=top >false
+
+</td></tr></table>
+
+</span><p>
+</p>
+<a name="node_sec_3"></a>
+<h1><a href="#node_toc_node_sec_3">3&nbsp;&nbsp;The Calendar object overview</a></h1><p></p>
+<p>
+Basically you should be able to setup the calendar with the function presented
+in the previous section.  However, if for some reason <tt>Calendar.setup</tt>
+doesn&#8217;t provide all the functionality that you need and you want to tweak into
+the process of creating and configuring the calendar &#8220;by hand&#8221;, then this
+section is the way to go.</p>
+<p>
+The file <tt>calendar.js</tt> implements the functionality of the calendar.
+All (well, almost all) functions and variables are embedded in the JavaScript
+object &#8220;Calendar&#8221;.</p>
+<p>
+You can instantiate a <tt>Calendar</tt> object by calling the constructor, like
+this: <tt>var cal = new Calendar(<tt>...</tt>)</tt>.  We will discuss the parameters
+later.  After creating the object, the variable <tt>cal</tt> will contain a
+reference to it.  You can use this reference to access further options of the
+calendar, for instance:</p>
+<p>
+</p>
+<pre class=verbatim>cal.weekNumbers = false; // do not display week numbers
+cal.showsTime = true;    // include a time selector
+cal.setDateFormat(&quot;%Y.%m.%d %H:%M&quot;); // set this format: 2003.12.31 23:59
+cal.setDisabledHandler(function(date, year, month, day) {
+  // verify date and return true if it has to be disabled
+  // ``date'' is a JS Date object, but if you only need the
+  // year, month and/or day you can get them separately as
+  // next 3 parameters, as you can see in the declaration
+  if (year == 2004) {
+    // disable all dates from 2004
+    return true;
+  }
+  return false;
+});
+</pre><p></p>
+<p>
+etc.  Prior to version
+0.9.3 this was the only way to configure it.  The <tt>Calendar.setup</tt>
+function, documented in section <a href="#node_sec_2">2</a>, basically does the same
+things (actually more) in order to setup the calendar, based on the parameters
+that you provided.</p>
+<p>
+</p>
+<a name="node_sec_3.1"></a>
+<h2><a href="#node_toc_node_sec_3.1">3.1&nbsp;&nbsp;Creating a calendar</a></h2><p>The calendar is created by following some steps (even the function
+<tt>Calendar.setup</tt>, described in section <a href="#node_sec_2">2</a>, does the
+same).  While you can skip optional (marked &#8220;opt&#8221;) steps if you&#8217;re happy with
+the defaults, please respect the order below.</p>
+<p>
+</p>
+<ol><p>
+</p>
+<li><p><em>Instantiate</em> a <tt>Calendar</tt> object.  Details about this in
+section <a href="#node_sec_4.1">4.1</a>.</p>
+<p>
+</p>
+<li><p><b>opt</b>&nbsp;&nbsp; Set the <tt>weekNumbers</tt> property to <tt>false</tt> if you don&#8217;t want
+the calendar to display week numbers.</p>
+<p>
+</p>
+<li><p><b>opt</b>&nbsp;&nbsp; Set the <tt>showsTime</tt> property to <tt>true</tt> if you
+want the calendar to also provide a time selector.</p>
+<p>
+</p>
+<li><p><b>opt</b>&nbsp;&nbsp; Set the <tt>time24</tt> property to <tt>false</tt> if you want
+the time selector to be in 12-hour format.  Default is 24-hour format.  This
+property only has effect if you also set <tt>showsTime</tt> to
+<tt>true</tt>.</p>
+<p>
+</p>
+<li><p><b>opt</b>&nbsp;&nbsp; Set the range of years available for selection (see section
+<a href="#node_sec_4.3.15">4.3.15</a>).  The default range is [1970..2050].</p>
+<p>
+</p>
+<li><p><b>opt</b>&nbsp;&nbsp; Set the <tt>getDateStatus</tt> property.  You should pass
+here a function that receives a JavaScript <tt>Date</tt> object and returns
+<tt>true</tt> if the given date should be disabled, false otherwise (details in
+section <a href="#node_sec_4.3.7">4.3.7</a>).</p>
+<p>
+</p>
+<li><p><b>opt</b>&nbsp;&nbsp; Set a date format.  Your handler function, passed to the
+calendar constructor, will be called when a date is selected with a reference
+to the calendar and a date string in this format.</p>
+<p>
+</p>
+<li><p><em>Create</em> the HTML elements related to the calendar.  This step
+practically puts the calendar in your HTML page.  You simply call
+<tt>Calendar.create()</tt>.  You can give an optional parameter if you wanna
+create a flat calendar (details in section <a href="#node_sec_4.3.1">4.3.1</a>).</p>
+<p>
+</p>
+<li><p><b>opt</b>&nbsp;&nbsp; Initialize the calendar to a certain date, for instance from
+the input field.</p>
+<p>
+</p>
+<li><p>Show the calendar (details in section <a href="#node_sec_4.3.9">4.3.9</a>).</p>
+<p>
+</p>
+</ol><p></p>
+<p>
+</p>
+<a name="node_sec_3.2"></a>
+<h2><a href="#node_toc_node_sec_3.2">3.2&nbsp;&nbsp;Order does matter ;-)</a></h2><p>As you could see in the previous section, there are more steps to be followed
+in order to setup the calendar.  This happens because there are two different
+things that need to be accomplished: first there is the JavaScript object, that
+is created with <tt>new Calendar(<tt>...</tt>)</tt>.  Secondly there are the HTML
+elements that actually lets you see and manipulate the calendar.</p>
+<p>
+</p>
+<span class=small>[ Those that did UI<a name="call_footnote_Temp_5"></a><a href="#footnote_Temp_5"><sup><small>4</small></sup></a> programming, no matter in what
+language and on what platform, may be familiar with this concept.  First there
+is the object in memory that lets you manipulate the UI element, and secondly
+there is the UI element (known as &#8220;control&#8221;, &#8220;window&#8221;, &#8220;widget&#8221;, etc.),
+also in memory but you don&#8217;t usually access it directly. ]
+</span><p>
+By instantiating the calendar we create the JavaScript object.  It lets us
+configure some properties and it also knows how to create the UI element (the
+HTML elements actually) that will eventually be what the end-user sees on
+screen.  Creation of the HTML element is accomplished by the function
+<tt>Calendar.create</tt>.  It knows how to create popup or flat calendars.
+This function is described in section <a href="#node_sec_4.3.1">4.3.1</a>.</p>
+<p>
+Some properties need to be set prior to creating the HTML elements, because
+otherwise they wouldn&#8217;t have any effect.  Such a property is
+<tt>weekNumbers</tt>&#8212;it has the default value &#8220;true&#8221;, and if you don&#8217;t
+want the calendar to display the week numbers you have to set it to false.  If,
+however, you do that <em>after</em> calling <tt>Calendar.create</tt> the calendar
+would still display the week numbers, because the HTML elements are already
+created (including the <tt>&lt;td&gt;</tt>-s in the <tt>&lt;table&gt;</tt> element that
+should contain the week numbers).  For this reason the order of the steps above
+is important.</p>
+<p>
+Another example is when you want to show the calendar.  The &#8220;create&#8221; function
+does create the HTML elements, but they are initially hidden (have the style
+&#8220;display: none&#8221;) unless the calendar is a flat calendar that should be always
+visible in the page.  Obviously, the <tt>Calendar.show</tt> function should be
+called <em>after</em> calling <tt>Calendar.create</tt>.</p>
+<p>
+</p>
+<a name="node_sec_3.3"></a>
+<h2><a href="#node_toc_node_sec_3.3">3.3&nbsp;&nbsp;Caching the object</a></h2><p>Suppose the end-user has popped up a calendar and selects a date.  The calendar
+then closes.  What really happens now?</p>
+<p>
+There are two approaches.  The first (used in very old versions of the
+calendar) was to drop completely the Calendar object and when the end-user pops
+up the calendar again to create another one.  This approach is bad for more
+reasons:</p>
+<p>
+</p>
+<ul><p>
+</p>
+<li><p>creating the JavaScript object and HTML elements is time-consuming</p>
+<p>
+</p>
+<li><p>we may loose some end-user preferences (i.e. he might prefer to have
+Monday for the first day of week and probably already clicked it the first time
+when the calendar was opened, but now he has to do it again)</p>
+<p>
+</p>
+</ul><p></p>
+<p>
+The second approach, implemented by the <tt>Calendar.setup</tt> function, is to
+cache the JavaScript object.  It does this by checking the global variable
+<tt>window.calendar</tt> and if it is not null it assumes it is the created
+Calendar object.  When the end-user closes the calendar, our code will only
+call &#8220;<tt>hide</tt>&#8221; on it, therefore keeping the JavaScript object and the
+HTML elements in place.</p>
+<p>
+<font color="red">CAVEAT:</font> &nbsp;&nbsp;&nbsp;&nbsp;Since time selection support was introduced, this
+&#8220;object caching&#8221; mechanism has the following drawback: if you once created
+the calendar with the time selection support, then other items that may not
+require this functionality will still get a calendar with the time selection
+support enabled.  And reciprocal. ;-)  Hopefully this will be corrected in a
+later version, but for now it doesn&#8217;t seem such a big problem.</p>
+<p>
+</p>
+<a name="node_sec_3.4"></a>
+<h2><a href="#node_toc_node_sec_3.4">3.4&nbsp;&nbsp;Callback functions</a></h2><p>You might rightfully wonder how is the calendar related to the input field?
+Who tells it that it has to update <em>that</em> input field when a date is
+selected, or that it has to jump to <em>that</em> URL when a date is clicked in
+flat mode?</p>
+<p>
+All this magic is done through callback functions.  The calendar doesn&#8217;t know
+anything about the existence of an input field, nor does it know where to
+redirect the browser when a date is clicked in flat mode.  It just calls your
+callback when a particular event is happening, and you&#8217;re responsible to handle
+it from there.  For a general purpose library I think this is the best model of
+making a truly reusable thing.</p>
+<p>
+The calendar supports the following user callbacks:</p>
+<p>
+</p>
+<ul><p>
+</p>
+<li><p><b>onSelect</b>&nbsp;&nbsp; &#8212; this gets called when the end-user changes the date in the
+calendar.  Documented in section <a href="#node_sec_4.1">4.1</a>.</p>
+<p>
+</p>
+<li><p><b>onClose</b>&nbsp;&nbsp; &#8212; this gets called when the calendar should close.  It&#8217;s
+user&#8217;s responsibility to close the calendar.  Details in section
+<a href="#node_sec_4.1">4.1</a>.</p>
+<p>
+</p>
+<li><p><b>getDateStatus</b>&nbsp;&nbsp; &#8212; this function gets called for any day in a month,
+just before displaying the month.  It is called with a JavaScript <tt>Date</tt>
+object and should return <tt>true</tt> if that date should be disabled, false
+if it&#8217;s an ordinary date and no action should be taken, or it can return a
+string in which case the returned value will be appended to the element&#8217;s CSS
+class (this way it provides a powerful way to make some dates &#8220;special&#8221;,
+i.e. highlight them differently).  Details in section
+<a href="#node_sec_4.3.8">4.3.8</a>.</p>
+<p>
+</p>
+</ul><p></p>
+<p>
+</p>
+<a name="node_sec_4"></a>
+<h1><a href="#node_toc_node_sec_4">4&nbsp;&nbsp;The Calendar object API reference</a></h1><p></p>
+<p>
+</p>
+<a name="node_sec_4.1"></a>
+<h2><a href="#node_toc_node_sec_4.1">4.1&nbsp;&nbsp;<tt>Calendar</tt> constructor</a></h2><p></p>
+<p>
+Synopsis:</p>
+<p>
+</p>
+<pre class=verbatim>var calendar = Calendar(firstDayOfWeek, date, onSelect, onClose);
+</pre><p></p>
+<p>
+Parameters are as follows:</p>
+<p>
+</p>
+<ul><p>
+</p>
+<li><p><b>firstDayOfWeek</b>&nbsp;&nbsp; &#8212; specifies which day is to be displayed as the first
+day of week.  Possible values are 0 to 6; 0 means Sunday, 1 means Monday,
+..., 6 means Saturday.</p>
+<p>
+</p>
+<li><p><b>date</b>&nbsp;&nbsp; &#8212; a JavaScript Date object or <tt>null</tt>.  If <tt>null</tt>
+is passed then the calendar will default to today date.  Otherwise it will
+initialize on the given date.</p>
+<p>
+</p>
+<li><p><b>onSelect</b>&nbsp;&nbsp; &#8212; your callback for the &#8220;onChange&#8221; event.  See above.</p>
+<p>
+</p>
+<li><p><b>onClose</b>&nbsp;&nbsp; &#8212; your callback for the &#8220;onClose&#8221; event.  See above.</p>
+<p>
+</p>
+</ul><p></p>
+<p>
+</p>
+<a name="node_sec_Temp_6"></a>
+<h3><a href="#node_toc_node_sec_Temp_6">The <tt>onSelect</tt> event</a></h3><p></p>
+<p>
+Here is a typical implementation of this function:</p>
+<p>
+</p>
+<pre class=verbatim>function onSelect(calendar, date) {
+  var input_field = document.getElementById(&quot;date&quot;);
+  input_field.value = date;
+};
+</pre><p></p>
+<p>
+<tt>date</tt> is in the format selected with <tt>calendar.setDateFormat</tt>
+(see section <a href="#node_sec_4.3.5">4.3.5</a>).  This code simply updates the
+input field.  If you want the calendar to be in single-click mode then you
+should also close the calendar after you updated the input field, so we come to
+the following version:</p>
+<p>
+</p>
+<pre class=verbatim>function onSelect(calendar, date) {
+  var input_field = document.getElementById(&quot;date&quot;);
+  input_field.value = date;
+  if (calendar.dateClicked) {
+    calendar.callCloseHandler(); // this calls &quot;onClose&quot; (see above)
+  }
+};
+</pre><p></p>
+<p>
+Note that we checked the member variable <tt>dateClicked</tt> and
+only hide the calendar if it&#8217;s <tt>true</tt>.  If this variable is <tt>false</tt> it
+means that no date was actually selected, but the user only changed the
+month/year using the navigation buttons or the menus.  We don&#8217;t want to hide
+the calendar in that case.</p>
+<p>
+</p>
+<a name="node_sec_Temp_7"></a>
+<h3><a href="#node_toc_node_sec_Temp_7">The <tt>onClose</tt> event</a></h3><p></p>
+<p>
+This event is triggered when the calendar should close.  It should hide or
+destroy the calendar object&#8212;the calendar itself just triggers the event, but
+it won&#8217;t close itself.</p>
+<p>
+A typical implementation of this function is the following:</p>
+<p>
+</p>
+<pre class=verbatim>function onClose(calendar) {
+  calendar.hide();
+  // or calendar.destroy();
+};
+</pre><p></p>
+<p>
+</p>
+<a name="node_sec_4.2"></a>
+<h2><a href="#node_toc_node_sec_4.2">4.2&nbsp;&nbsp;Useful member variables (properties)</a></h2><p></p>
+<p>
+After creating the Calendar object you can access the following properties:</p>
+<p>
+</p>
+<ul><p>
+</p>
+<li><p><tt>date</tt> &#8212; is a JavaScript <tt>Date</tt> object.  It will always
+reflect the date shown in the calendar (yes, even if the calendar is hidden).</p>
+<p>
+</p>
+<li><p><tt>isPopup</tt> &#8212; if this is true then the current Calendar object is
+a popup calendar.  Otherwise (false) we have a flat calendar.  This variable is
+set from <tt>Calendar.create</tt> and has no meaning before this function was
+called.</p>
+<p>
+</p>
+<li><p><tt>dateClicked</tt> &#8212; particularly useful in the <tt>onSelect</tt>
+handler, this variable tells us if a date was really clicked.  That&#8217;s because
+the <tt>onSelect</tt> handler is called even if the end-user only changed the
+month/year but did not select a date.  We don&#8217;t want to close the calendar in
+that case.</p>
+<p>
+</p>
+<li><p><tt>weekNumbers</tt> &#8212; if <tt>true</tt> (default) then the calendar
+displays week numbers.  If you don&#8217;t want week numbers you have to set this
+variable to <tt>false</tt> <em>before</em> calling <tt>Calendar.create</tt>.</p>
+<p>
+</p>
+<li><p><tt>showsTime</tt> &#8211; if you set this to <tt>true</tt> (it is
+<tt>false</tt> by default) then the calendar will also include a time selector.</p>
+<p>
+</p>
+<li><p><tt>time24</tt> &#8211; if you set this to <tt>false</tt> then the time
+selector will be in 12-hour format.  It is in 24-hour format by default.</p>
+<p>
+</p>
+<li><p><tt>firstDayOfWeek</tt> &#8212; specifies the first day of week (0 to 6, pass
+0 for Sunday, 1 for Monday, ..., 6 for Saturday).  This variable is set from
+constructor, but you still have a chance to modify it <em>before</em> calling
+<tt>Calendar.create</tt>.</p>
+<p>
+</p>
+</ul><p></p>
+<p>
+There are lots of other member variables, but one should access them only
+through member functions so I won&#8217;t document them here.</p>
+<p>
+</p>
+<a name="node_sec_4.3"></a>
+<h2><a href="#node_toc_node_sec_4.3">4.3&nbsp;&nbsp;Public methods</a></h2><p></p>
+<a name="node_sec_4.3.1"></a>
+<h3><a href="#node_toc_node_sec_4.3.1">4.3.1&nbsp;&nbsp;<tt>Calendar.create</tt></a></h3><p></p>
+<p>
+This function creates the afferent HTML elements that are needed to display the
+calendar.  You should call it after setting the calendar properties.  Synopsis:
+</p>
+<pre class=verbatim>calendar.create(); // creates a popup calendar
+  // -- or --
+calendar.create(document.getElementById(parent_id)); // makes a flat calendar
+</pre><p></p>
+<p>
+It can create a popup calendar or a flat calendar.  If the &#8220;parent&#8221; argument
+is present (it should be a <em>reference</em>&#8212;not ID&#8212;to an HTML element) then
+a flat calendar is created and it is inserted in the given element.</p>
+<p>
+At any moment, given a reference to a calendar object, we can inspect if it&#8217;s a
+popup or a flat calendar by checking the boolean member variable
+<tt>isPopup</tt>:</p>
+<p>
+</p>
+<pre class=verbatim>if (calendar.isPopup) {
+   // this is a popup calendar
+} else {
+   // this is a flat calendar
+}
+</pre><p></p>
+<p>
+</p>
+<a name="node_sec_4.3.2"></a>
+<h3><a href="#node_toc_node_sec_4.3.2">4.3.2&nbsp;&nbsp;<tt>Calendar.callHandler</tt></a></h3><p></p>
+<p>
+This function calls the first user callback (the
+<tt>onSelect</tt> handler) with the required parameters.</p>
+<p>
+</p>
+<a name="node_sec_4.3.3"></a>
+<h3><a href="#node_toc_node_sec_4.3.3">4.3.3&nbsp;&nbsp;<tt>Calendar.callCloseHandler</tt></a></h3><p></p>
+<p>
+This function calls the second user callback (the
+<tt>onClose</tt> handler).  It&#8217;s useful when you want to have a
+&#8220;single-click&#8221; calendar&#8212;just call this in your <tt>onSelect</tt> handler,
+if a date was clicked.</p>
+<p>
+</p>
+<a name="node_sec_4.3.4"></a>
+<h3><a href="#node_toc_node_sec_4.3.4">4.3.4&nbsp;&nbsp;<tt>Calendar.hide</tt></a></h3><p></p>
+<p>
+Call this function to hide the calendar.  The calendar object and HTML elements
+will not be destroyed, thus you can later call one of the <tt>show</tt>
+functions on the same element.</p>
+<p>
+</p>
+<a name="node_sec_4.3.5"></a>
+<h3><a href="#node_toc_node_sec_4.3.5">4.3.5&nbsp;&nbsp;<tt>Calendar.setDateFormat</tt></a></h3><p></p>
+<p>
+This function configures the format in which the calendar reports the date to
+your &#8220;onSelect&#8221; handler.  Call it like this:</p>
+<p>
+</p>
+<pre class=verbatim>calendar.setDateFormat(&quot;%y/%m/%d&quot;);
+</pre><p></p>
+<p>
+As you can see, it receives only one parameter, the required format.  The magic
+characters are the following:</p>
+<p>
+</p>
+<table border=0><tr><td valign=top ></td></tr>
+<tr><td valign=top ><tt>%a</tt> </td><td valign=top >abbreviated weekday name </td></tr>
+<tr><td valign=top ><tt>%A</tt> </td><td valign=top >full weekday name </td></tr>
+<tr><td valign=top ><tt>%b</tt> </td><td valign=top >abbreviated month name </td></tr>
+<tr><td valign=top ><tt>%B</tt> </td><td valign=top >full month name </td></tr>
+<tr><td valign=top ><tt>%C</tt> </td><td valign=top >century number </td></tr>
+<tr><td valign=top ><tt>%d</tt> </td><td valign=top >the day of the month ( 00 .. 31 ) </td></tr>
+<tr><td valign=top ><tt>%e</tt> </td><td valign=top >the day of the month ( 0 .. 31 ) </td></tr>
+<tr><td valign=top ><tt>%H</tt> </td><td valign=top >hour ( 00 .. 23 ) </td></tr>
+<tr><td valign=top ><tt>%I</tt> </td><td valign=top >hour ( 01 .. 12 ) </td></tr>
+<tr><td valign=top ><tt>%j</tt> </td><td valign=top >day of the year ( 000 .. 366 ) </td></tr>
+<tr><td valign=top ><tt>%k</tt> </td><td valign=top >hour ( 0 .. 23 ) </td></tr>
+<tr><td valign=top ><tt>%l</tt> </td><td valign=top >hour ( 1 .. 12 ) </td></tr>
+<tr><td valign=top ><tt>%m</tt> </td><td valign=top >month ( 01 .. 12 ) </td></tr>
+<tr><td valign=top ><tt>%M</tt> </td><td valign=top >minute ( 00 .. 59 ) </td></tr>
+<tr><td valign=top ><tt>%n</tt> </td><td valign=top >a newline character </td></tr>
+<tr><td valign=top ><tt>%p</tt> </td><td valign=top >&#8220;PM&#8221; or &#8220;AM&#8221; </td></tr>
+<tr><td valign=top ><tt>%P</tt> </td><td valign=top >&#8220;pm&#8221; or &#8220;am&#8221; </td></tr>
+<tr><td valign=top ><tt>%S</tt> </td><td valign=top >second ( 00 .. 59 ) </td></tr>
+<tr><td valign=top ><tt>%s</tt> </td><td valign=top >number of seconds since Epoch (since Jan 01 1970 00:00:00 UTC) </td></tr>
+<tr><td valign=top ><tt>%t</tt> </td><td valign=top >a tab character </td></tr>
+<tr><td valign=top ><tt>%U, %W, %V</tt> </td><td valign=top >the week number</td></tr>
+<tr><td valign=top ><tt>%u</tt> </td><td valign=top >the day of the week ( 1 .. 7, 1 = MON )</td></tr>
+<tr><td valign=top ><tt>%w</tt> </td><td valign=top >the day of the week ( 0 .. 6, 0 = SUN )</td></tr>
+<tr><td valign=top ><tt>%y</tt> </td><td valign=top >year without the century ( 00 .. 99 )</td></tr>
+<tr><td valign=top ><tt>%Y</tt> </td><td valign=top >year including the century ( ex. 1979 )</td></tr>
+<tr><td valign=top ><tt>%%</tt> </td><td valign=top >a literal <tt>%</tt> character
+</td></tr></table><p>
+There are more algorithms for computing the week number.  All
+three specifiers currently implement the same one, as defined by ISO 8601:
+&#8220;the week 01 is the week that has the Thursday in the current year, which is
+equivalent to the week that contains the fourth day of January.  Weeks start on
+Monday.&#8221;</p>
+<p>
+</p>
+<a name="node_sec_4.3.6"></a>
+<h3><a href="#node_toc_node_sec_4.3.6">4.3.6&nbsp;&nbsp;<tt>Calendar.setTtDateFormat</tt></a></h3><p></p>
+<p>
+Has the same prototype as <tt>Calendar.setDateFormat</tt>, but refers to the
+format of the date displayed in the &#8220;status bar&#8221; when the mouse is over some
+date.</p>
+<p>
+</p>
+<a name="node_sec_4.3.7"></a>
+<h3><a href="#node_toc_node_sec_4.3.7">4.3.7&nbsp;&nbsp;<tt>Calendar.setDisabledHandler</tt></a></h3><p></p>
+<p>
+This function allows you to specify a callback function that checks if a
+certain date must be disabled by the calendar.  You are responsible to write
+the callback function.  Synopsis:</p>
+<p>
+</p>
+<pre class=verbatim>function disallowDate(date) {
+  // date is a JS Date object
+  if (  date.getFullYear() == 2003 &amp;&amp;
+        date.getMonth()    == 6 /* July, it's zero-based */ &amp;&amp;
+        date.getDate()     == 5  ) {
+    return true; // disable July 5 2003
+  }
+  return false; // enable other dates
+};
+
+calendar.setDisabledHandler(disallowDate);
+</pre><p></p>
+<p>
+If you change this function in &#8220;real-time&#8221;, meaning, without creating a new
+calendar, then you have to call <tt>calendar.refresh()</tt> to make it
+redisplay the month and take into account the new disabledHandler.
+<tt>Calendar.setup</tt> does this, so you have no such trouble with it.</p>
+<p>
+Note that <tt>disallowDate</tt> should be very fast, as it is called for each
+date in the month.  Thus, it gets called, say, 30 times before displaying the
+calendar, and 30 times when the month is changed.  Tests I&#8217;ve done so far show
+that it&#8217;s still good, but in the future I might switch it to a different design
+(for instance, to call it once per month and to return an array of dates that
+must be disabled).</p>
+<p>
+This function should be considered deprecated in the favor of
+<tt>Calendar.setDateStatusHandler</tt>, described below.</p>
+<p>
+</p>
+<a name="node_sec_4.3.8"></a>
+<h3><a href="#node_toc_node_sec_4.3.8">4.3.8&nbsp;&nbsp;<tt>Calendar.setDateStatusHandler</tt></a></h3><p></p>
+<p>
+This function obsoletes <tt>Calendar.setDisabledHandler</tt>.  You call it with
+a function parameter, but this function can return a boolean
+<em>or a string</em>.  If the return value is a boolean (<tt>true</tt> or
+<tt>false</tt>) then it behaves just like <tt>setDisabledHandler</tt>,
+therefore disabling the date if the return value is <tt>true</tt>.</p>
+<p>
+If the returned value is a string then the given date will gain an additional
+CSS class, namely the returned value.  You can use this to highlight some dates
+in some way.  Note that you are responsible for defining the CSS class that you
+return.  If you return the string &#8220;disabled&#8221; then that date will be disabled,
+just as if you returned <tt>true</tt>.</p>
+<p>
+Here is a simple scenario that shows what you can do with this function.  The
+following should be present in some of your styles, or in the document head in
+a STYLE tag (but put it <em>after</em> the place where the calendar styles were
+loaded):</p>
+<p>
+</p>
+<pre class=verbatim>.special { background-color: #000; color: #fff; }
+</pre><p></p>
+<p>
+And you would use the following code before calling <tt>Calendar.create()</tt>:</p>
+<p>
+</p>
+<pre class=verbatim>// this table holds your special days, so that we can automatize
+// things a bit:
+var SPECIAL_DAYS = {
+    0 : [ 13, 24 ],             // special days in January
+    2 : [ 1, 6, 8, 12, 18 ],    // special days in March
+    8 : [ 21, 11 ],             // special days in September
+   11 : [ 25, 28 ]              // special days in December
+};
+
+// this function returns true if the passed date is special
+function dateIsSpecial(year, month, day) {
+    var m = SPECIAL_DAYS[month];
+    if (!m) return false;
+    for (var i in m) if (m[i] == day) return true;
+    return false;
+}
+
+// this is the actual date status handler.  Note that it receives the
+// date object as well as separate values of year, month and date, for
+// your confort.
+function dateStatusHandler(date, y, m, d) {
+    if (dateIsSpecial(y, m, d)) return ``special'';
+    else return false;
+    // return true above if you want to disable other dates
+}
+
+// configure it to the calendar
+calendar.setDateStatusHandler(dateStatusHandler);
+</pre><p></p>
+<p>
+The above code adds the &#8220;special&#8221; class name to some dates that are defined
+in the SPECIAL_DAYS table.  Other dates will simply be displayed as default,
+enabled.</p>
+<p>
+</p>
+<a name="node_sec_4.3.9"></a>
+<h3><a href="#node_toc_node_sec_4.3.9">4.3.9&nbsp;&nbsp;<tt>Calendar.show</tt></a></h3><p></p>
+<p>
+Call this function do show the calendar.  It basically sets the CSS &#8220;display&#8221;
+property to &#8220;block&#8221;.  It doesn&#8217;t modify the calendar position.</p>
+<p>
+This function only makes sense when the calendar is in popup mode.</p>
+<p>
+</p>
+<a name="node_sec_4.3.10"></a>
+<h3><a href="#node_toc_node_sec_4.3.10">4.3.10&nbsp;&nbsp;<tt>Calendar.showAt</tt></a></h3><p></p>
+<p>
+Call this to show the calendar at a certain (x, y) position.  Prototype:</p>
+<p>
+</p>
+<pre class=verbatim>calendar.showAt(x, y);
+</pre><p></p>
+<p>
+The parameters are absolute coordinates relative to the top left
+corner <em>of the page</em>, thus they are <em>page</em> coordinates not screen
+coordinates.</p>
+<p>
+After setting the given coordinates it calls Calendar.show.  This function only
+makes sense when the calendar is in popup mode.</p>
+<p>
+</p>
+<a name="node_sec_4.3.11"></a>
+<h3><a href="#node_toc_node_sec_4.3.11">4.3.11&nbsp;&nbsp;<tt>Calendar.showAtElement</tt></a></h3><p></p>
+<p>
+This function is useful if you want to display the calendar near some element.
+You call it like this:</p>
+<p>
+</p>
+<pre class=verbatim>calendar.showAtElement(element, align);
+</pre><p></p>
+<p>
+where element is a reference to your element (for instance it can be the input
+field that displays the date) and align is an optional parameter, of type string,
+containing one or two characters.  For instance, if you pass <tt>&quot;Br&quot;</tt> as
+align, the calendar will appear <em>below</em> the element and with its right
+margin continuing the element&#8217;s right margin.</p>
+<p>
+As stated above, align may contain one or two characters.  The first character
+dictates the vertical alignment, relative to the element, and the second
+character dictates the horizontal alignment.  If the second character is
+missing it will be assumed <tt>&quot;l&quot;</tt> (the left margin of the calendar will
+be at the same horizontal position as the left margin of the element).</p>
+<p>
+The characters given for the align parameters are case sensitive.  This
+function only makes sense when the calendar is in popup mode.  After computing
+the position it uses <tt>Calendar.showAt</tt> to display the calendar there.</p>
+<p>
+</p>
+<a name="node_sec_Temp_8"></a>
+<h4><a href="#node_toc_node_sec_Temp_8">Vertical alignment</a></h4><p>The first character in &#8220;<tt>align</tt>&#8221; can take one of the following values:</p>
+<p>
+</p>
+<ul><p>
+</p>
+<li><p><tt>T</tt> &#8212; completely above the reference element (bottom margin of
+the calendar aligned to the top margin of the element).</p>
+<p>
+</p>
+<li><p><tt>t</tt> &#8212; above the element but may overlap it (bottom margin of the calendar aligned to
+the bottom margin of the element).</p>
+<p>
+</p>
+<li><p><tt>c</tt> &#8212; the calendar displays vertically centered to the reference
+element.  It might overlap it (that depends on the horizontal alignment).</p>
+<p>
+</p>
+<li><p><tt>b</tt> &#8212; below the element but may overlap it (top margin of the calendar aligned to
+the top margin of the element).</p>
+<p>
+</p>
+<li><p><tt>B</tt> &#8212; completely below the element (top margin of the calendar
+aligned to the bottom margin of the element).</p>
+<p>
+</p>
+</ul><p></p>
+<p>
+</p>
+<a name="node_sec_Temp_9"></a>
+<h4><a href="#node_toc_node_sec_Temp_9">Horizontal alignment</a></h4><p>The second character in &#8220;<tt>align</tt>&#8221; can take one of the following values:</p>
+<p>
+</p>
+<ul><p>
+</p>
+<li><p><tt>L</tt> &#8212; completely to the left of the reference element (right
+margin of the calendar aligned to the left margin of the element).</p>
+<p>
+</p>
+<li><p><tt>l</tt> &#8212; to the left of the element but may overlap it (left margin
+of the calendar aligned to the left margin of the element).</p>
+<p>
+</p>
+<li><p><tt>c</tt> &#8212; horizontally centered to the element.  Might overlap it,
+depending on the vertical alignment.</p>
+<p>
+</p>
+<li><p><tt>r</tt> &#8212; to the right of the element but may overlap it (right
+margin of the calendar aligned to the right margin of the element).</p>
+<p>
+</p>
+<li><p><tt>R</tt> &#8212; completely to the right of the element (left margin of the
+calendar aligned to the right margin of the element).</p>
+<p>
+</p>
+</ul><p></p>
+<p>
+</p>
+<a name="node_sec_Temp_10"></a>
+<h4><a href="#node_toc_node_sec_Temp_10">Default values</a></h4><p>If the &#8220;<tt>align</tt>&#8221; parameter is missing the calendar will choose
+&#8220;<tt>Br</tt>&#8221;.</p>
+<p>
+</p>
+<a name="node_sec_4.3.12"></a>
+<h3><a href="#node_toc_node_sec_4.3.12">4.3.12&nbsp;&nbsp;<tt>Calendar.setDate</tt></a></h3><p></p>
+<p>
+Receives a JavaScript <tt>Date</tt> object.  Sets the given date in the
+calendar.  If the calendar is visible the new date is displayed immediately.</p>
+<p>
+</p>
+<pre class=verbatim>calendar.setDate(new Date()); // go today
+</pre><p></p>
+<p>
+</p>
+<a name="node_sec_4.3.13"></a>
+<h3><a href="#node_toc_node_sec_4.3.13">4.3.13&nbsp;&nbsp;<tt>Calendar.setFirstDayOfWeek</tt></a></h3><p></p>
+<p>
+Changes the first day of week.  The parameter has to be a numeric value ranging
+from 0 to 6.  Pass 0 for Sunday, 1 for Monday, ..., 6 for Saturday.</p>
+<p>
+</p>
+<pre class=verbatim>calendar.setFirstDayOfWeek(5); // start weeks on Friday
+</pre><p></p>
+<p>
+</p>
+<a name="node_sec_4.3.14"></a>
+<h3><a href="#node_toc_node_sec_4.3.14">4.3.14&nbsp;&nbsp;<tt>Calendar.parseDate</tt></a></h3><p></p>
+<p>
+Use this function to parse a date given as string and to move the calendar to
+that date.</p>
+<p>
+The algorithm tries to parse the date according to the format that was
+previously set with <tt>Calendar.setDateFormat</tt>; if that fails, it still
+tries to get some valid date out of it (it doesn&#8217;t read your thoughts, though).</p>
+<p>
+</p>
+<pre class=verbatim>calendar.parseDate(&quot;2003/07/06&quot;);
+</pre><p></p>
+<p>
+</p>
+<a name="node_sec_4.3.15"></a>
+<h3><a href="#node_toc_node_sec_4.3.15">4.3.15&nbsp;&nbsp;<tt>Calendar.setRange</tt></a></h3><p></p>
+<p>
+Sets the range of years that are allowed in the calendar.  Synopsis:</p>
+<p>
+</p>
+<pre class=verbatim>calendar.setRange(1970, 2050);
+</pre><p></p>
+<p>
+</p>
+<a name="node_sec_5"></a>
+<h1><a href="#node_toc_node_sec_5">5&nbsp;&nbsp;Side effects</a></h1><p>The calendar code was intentionally embedded in an object to make it have as
+less as possible side effects.  However, there are some&#8212;not harmful, after
+all.  Here is a list of side effects; you can count they already happened after
+<tt>calendar.js</tt> was loaded.</p>
+<p>
+</p>
+<ol><p>
+</p>
+<li><p>The global variable <tt>window.calendar</tt> will be set to null.  This
+variable is used by the calendar code, especially when doing drag &amp; drop for
+moving the calendar.  In the future I might get rid of it, but for now it
+didn&#8217;t harm anyone.</p>
+<p>
+</p>
+<li><p>The JavaScript <tt>Date</tt> object is modified.  We add some properties
+and functions that are very useful to our calendar.  It made more sense to add
+them directly to the <tt>Date</tt> object than to the calendar itself.
+Complete list:</p>
+<p>
+</p>
+<ol><p>
+</p>
+<li><p><tt>Date._MD    = new Array(31,28,31,30,31,30,31,31,30,31,30,31);</tt>
+</p>
+<li><p><tt>Date.SECOND = 1000 /* milliseconds */;</tt>
+</p>
+<li><p><tt>Date.MINUTE = 60 * Date.SECOND;</tt>
+</p>
+<li><p><tt>Date.HOUR   = 60 * Date.MINUTE;</tt>
+</p>
+<li><p><tt>Date.DAY    = 24 * Date.HOUR;</tt>
+</p>
+<li><p><tt>Date.WEEK   =  7 * Date.DAY;</tt></p>
+<p>
+</p>
+<li><p><tt>Date.prototype.getMonthDays</tt>(month) &#8212; returns the number of days
+of the given month, or of the current date object if no month was given.</p>
+<p>
+</p>
+<li><p><tt>Date.prototype.getWeekNumber</tt>() &#8212; returns the week number of the
+date in the current object.</p>
+<p>
+</p>
+<li><p><tt>Date.prototype.equalsTo</tt>(other_date) &#8212; compare the current date
+object with <tt>other_date</tt> and returns <tt>true</tt> if the dates are
+equal.  <em>It ignores time</em>.</p>
+<p>
+</p>
+<li><p><tt>Date.prototype.print</tt>(format) &#8212; returns a string with the
+current date object represented in the given format.  It implements the format
+specified in section <a href="#node_sec_4.3.5">4.3.5</a>.</p>
+<p>
+</p>
+</ol><p></p>
+<p>
+</p>
+</ol><p></p>
+<p>
+</p>
+<a name="node_sec_6"></a>
+<h1><a href="#node_toc_node_sec_6">6&nbsp;&nbsp;Credits</a></h1><p>The following people either sponsored, donated money to the project or bought
+commercial licenses (listed in reverse chronological order).  Your name could
+be here too!  If you wish to sponsor the project (for instance request a
+feature and pay me for implementing it) or donate some money please
+<em>please</em> contact me at <tt><a href="mailto:mishoo@infoiasi.ro">mishoo@infoiasi.ro</a></tt>.</p>
+<p>
+</p>
+<ul><p>
+</p>
+<li><p>Sunny Chowdhury (<a href="http://www.ex3.com">www.ex3.com</a>)</p>
+<p>
+</p>
+<li><p>Ian Barrack (<a href="http://www.simban.com">www.simban.com</a>)</p>
+<p>
+</p>
+<li><p>Himanshukumar Shah</p>
+<p>
+</p>
+<li><p>Seyhan Ersoy (<a href="http://www.oocgi.com">www.oocgi.com</a>)</p>
+<p>
+</p>
+<li><p>Jon Stokkeland (<a href="http://www.sauen.com">www.sauen.com</a>)</p>
+<p>
+</p>
+</ul><p></p>
+<p>
+</p>
+<div align=right><table><tr><td>
+
+<b>Thank you!</b><br>
+&#8212; <tt>mishoo@infoiasi.ro</tt>
+</td></tr></table></div>
+<p>
+</p>
+<div class=footnoterule><hr></div><p></p>
+<div class=footnote><p><a name="footnote_Temp_2"></a><a href="#call_footnote_Temp_2"><sup><small>1</small></sup></a> 
+by the term &#8220;widget&#8221; I understand a single element of user interface.
+But that&#8217;s in Linux world.  For those that did lots of Windows
+programming the term &#8220;control&#8221; might be more familiar
+</p>
+<p><a name="footnote_Temp_3"></a><a href="#call_footnote_Temp_3"><sup><small>2</small></sup></a> people report that the calendar does
+not work with IE5/Mac.  I don&#8217;t have access to a Macintosh,
+therefore&#8212;sorry&#8212;I can&#8217;t fix it.</p>
+<p><a name="footnote_Temp_4"></a><a href="#call_footnote_Temp_4"><sup><small>3</small></sup></a>  under Opera 7 the calendar still lacks some functionality, such as
+keyboard navigation; also Opera doesn&#8217;t seem to allow disabling text
+selection when one drags the mouse on the page; despite all that, the
+calendar is still highly functional under Opera 7 and looks as good as
+in other supported browsers. </p>
+<p><a name="footnote_Temp_5"></a><a href="#call_footnote_Temp_5"><sup><small>4</small></sup></a> user interface</p>
+</div>
+<div align=right class=colophon>
+<i>Last modified: Fri, Feb 6, 2004, 8:53 pm<br>
+HTML conversion by <a href="http://www.ccs.neu.edu/~dorai/tex2page/tex2page-doc.html">TeX2page 4r8f</a></i>
+</div>
+</body>
+</html>
diff --git a/skins/jscalendar/doc/reference.pdf b/skins/jscalendar/doc/reference.pdf
new file mode 100644
index 0000000..4d35043
Binary files /dev/null and b/skins/jscalendar/doc/reference.pdf differ
diff --git a/skins/jscalendar/img.gif b/skins/jscalendar/img.gif
new file mode 100644
index 0000000..cd2c4a5
Binary files /dev/null and b/skins/jscalendar/img.gif differ
diff --git a/skins/jscalendar/index.html b/skins/jscalendar/index.html
new file mode 100644
index 0000000..02b0884
--- /dev/null
+++ b/skins/jscalendar/index.html
@@ -0,0 +1,333 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<!-- $Id: index.html,v 1.10 2004/02/06 18:53:09 mishoo Exp $ -->
+
+<head>
+<meta http-equiv="content-type" content="text/xml; charset=utf-8" />
+<title>The Coolest DHTML Calendar - Online Demo</title>
+<link rel="alternate stylesheet" type="text/css" media="all" href="calendar-blue.css" title="winter" />
+<link rel="alternate stylesheet" type="text/css" media="all" href="calendar-blue2.css" title="blue" />
+<link rel="alternate stylesheet" type="text/css" media="all" href="calendar-brown.css" title="summer" />
+<link rel="alternate stylesheet" type="text/css" media="all" href="calendar-green.css" title="green" />
+<link rel="stylesheet" type="text/css" media="all" href="calendar-win2k-1.css" title="win2k-1" />
+<link rel="alternate stylesheet" type="text/css" media="all" href="calendar-win2k-2.css" title="win2k-2" />
+<link rel="alternate stylesheet" type="text/css" media="all" href="calendar-win2k-cold-1.css" title="win2k-cold-1" />
+<link rel="alternate stylesheet" type="text/css" media="all" href="calendar-win2k-cold-2.css" title="win2k-cold-2" />
+<link rel="alternate stylesheet" type="text/css" media="all" href="calendar-system.css" title="system" />
+
+<!-- import the calendar script -->
+<script type="text/javascript" src="calendar.js"></script>
+
+<!-- import the language module -->
+<script type="text/javascript" src="lang/calendar-en.js"></script>
+
+<!-- other languages might be available in the lang directory; please check
+your distribution archive. -->
+
+<!-- helper script that uses the calendar -->
+<script type="text/javascript">
+
+var oldLink = null;
+// code to change the active stylesheet
+function setActiveStyleSheet(link, title) {
+  var i, a, main;
+  for(i=0; (a = document.getElementsByTagName("link")[i]); i++) {
+    if(a.getAttribute("rel").indexOf("style") != -1 && a.getAttribute("title")) {
+      a.disabled = true;
+      if(a.getAttribute("title") == title) a.disabled = false;
+    }
+  }
+  if (oldLink) oldLink.style.fontWeight = 'normal';
+  oldLink = link;
+  link.style.fontWeight = 'bold';
+  return false;
+}
+
+// This function gets called when the end-user clicks on some date.
+function selected(cal, date) {
+  cal.sel.value = date; // just update the date in the input field.
+  if (cal.dateClicked && (cal.sel.id == "sel1" || cal.sel.id == "sel3"))
+    // if we add this call we close the calendar on single-click.
+    // just to exemplify both cases, we are using this only for the 1st
+    // and the 3rd field, while 2nd and 4th will still require double-click.
+    cal.callCloseHandler();
+}
+
+// And this gets called when the end-user clicks on the _selected_ date,
+// or clicks on the "Close" button.  It just hides the calendar without
+// destroying it.
+function closeHandler(cal) {
+  cal.hide();                        // hide the calendar
+//  cal.destroy();
+  calendar = null;
+}
+
+// This function shows the calendar under the element having the given id.
+// It takes care of catching "mousedown" signals on document and hiding the
+// calendar if the click was outside.
+function showCalendar(id, format, showsTime, showsOtherMonths) {
+  var el = document.getElementById(id);
+  if (calendar != null) {
+    // we already have some calendar created
+    calendar.hide();                 // so we hide it first.
+  } else {
+    // first-time call, create the calendar.
+    var cal = new Calendar(true, null, selected, closeHandler);
+    // uncomment the following line to hide the week numbers
+    // cal.weekNumbers = false;
+    if (typeof showsTime == "string") {
+      cal.showsTime = true;
+      cal.time24 = (showsTime == "24");
+    }
+    if (showsOtherMonths) {
+      cal.showsOtherMonths = true;
+    }
+    calendar = cal;                  // remember it in the global var
+    cal.setRange(1900, 2070);        // min/max year allowed.
+    cal.create();
+  }
+  calendar.setDateFormat(format);    // set the specified date format
+  calendar.parseDate(el.value);      // try to parse the text in field
+  calendar.sel = el;                 // inform it what input field we use
+
+  // the reference element that we pass to showAtElement is the button that
+  // triggers the calendar.  In this example we align the calendar bottom-right
+  // to the button.
+  calendar.showAtElement(el.nextSibling, "Br");        // show the calendar
+
+  return false;
+}
+
+var MINUTE = 60 * 1000;
+var HOUR = 60 * MINUTE;
+var DAY = 24 * HOUR;
+var WEEK = 7 * DAY;
+
+// If this handler returns true then the "date" given as
+// parameter will be disabled.  In this example we enable
+// only days within a range of 10 days from the current
+// date.
+// You can use the functions date.getFullYear() -- returns the year
+// as 4 digit number, date.getMonth() -- returns the month as 0..11,
+// and date.getDate() -- returns the date of the month as 1..31, to
+// make heavy calculations here.  However, beware that this function
+// should be very fast, as it is called for each day in a month when
+// the calendar is (re)constructed.
+function isDisabled(date) {
+  var today = new Date();
+  return (Math.abs(date.getTime() - today.getTime()) / DAY) > 10;
+}
+
+function flatSelected(cal, date) {
+  var el = document.getElementById("preview");
+  el.innerHTML = date;
+}
+
+function showFlatCalendar() {
+  var parent = document.getElementById("display");
+
+  // construct a calendar giving only the "selected" handler.
+  var cal = new Calendar(true, null, flatSelected);
+
+  // hide week numbers
+  cal.weekNumbers = false;
+
+  // We want some dates to be disabled; see function isDisabled above
+  cal.setDisabledHandler(isDisabled);
+  cal.setDateFormat("%A, %B %e");
+
+  // this call must be the last as it might use data initialized above; if
+  // we specify a parent, as opposite to the "showCalendar" function above,
+  // then we create a flat calendar -- not popup.  Hidden, though, but...
+  cal.create(parent);
+
+  // ... we can show it here.
+  cal.show();
+}
+</script>
+
+<style type="text/css">
+.ex { font-weight: bold; background: #fed; color: #080 }
+.help { color: #080; font-style: italic; }
+body { background: #fea; font: 10pt tahoma,verdana,sans-serif; }
+table { font: 13px verdana,tahoma,sans-serif; }
+a { color: #00f; }
+a:visited { color: #00f; }
+a:hover { color: #f00; background: #fefaf0; }
+a:active { color: #08f; }
+.key { border: 1px solid #000; background: #fff; color: #008;
+padding: 0px 5px; cursor: default; font-size: 80%; }
+</style>
+
+</head>
+<body onload="showFlatCalendar()">
+
+<h2><a href="http://dynarch.com/mishoo/calendar.epl"
+title="Visit the project website">jscalendar</a>-0.9.6
+"Keep cool but don't freeze"</h2>
+
+<p>
+<div style="float: right; border: 1px solid #b87; padding: 2px; font-size: 90%; background: #ffb;">
+Theme:<br />
+<a href="#" onclick="return setActiveStyleSheet(this, 'winter');">winter</a>
+|
+<a href="#" onclick="return setActiveStyleSheet(this, 'blue');">blue</a>
+|
+<a href="#" onclick="return setActiveStyleSheet(this, 'summer');">summer</a>
+|
+<a href="#" onclick="return setActiveStyleSheet(this, 'green');">green</a>
+<br />
+<a href="#" id="defaultTheme" onclick="return setActiveStyleSheet(this, 'win2k-1');">win2k-1</a>
+|
+<a href="#" onclick="return setActiveStyleSheet(this, 'win2k-2');">win2k-2</a>
+|
+<a href="#" onclick="return setActiveStyleSheet(this, 'win2k-cold-1');">win2k-cold-1</a>
+|
+<a href="#" onclick="return setActiveStyleSheet(this, 'win2k-cold-2');">win2k-cold-2</a>
+<br />
+<a href="#" onclick="return setActiveStyleSheet(this, 'system');">system</a>
+<script type="text/javascript">
+setActiveStyleSheet(document.getElementById("defaultTheme"), "win2k-1");
+</script>
+</div>
+<a href="release-notes.html">Release notes</a>.
+<br />
+Set it up in minutes:
+  <a href="simple-1.html">popup calendar</a>,
+  <a href="simple-2.html">flat calendar</a>.
+<br />
+Documentation:
+  <a href="doc/html/reference.html">HTML</a>,
+  <a href="doc/reference.pdf">PDF</a>.
+<br />
+<b style="color: red">Donate!  Keep me on it!  Details on <a href="http://dynarch.com/mishoo/calendar.epl">the Calendar website</a>.</b>
+</p>
+
+<div style="padding-left:20px; font-size: 90%; font-style: italic;">
+
+</div>
+
+<table style="width: 100%">
+<tr valign="top">
+<td style="background: #ffa; padding: 5px; border: 1px solid #995;">
+
+<form action="#">
+<div style="background: #995; color: #ffa; font-weight: bold; padding: 2px;">
+Popup examples
+</div>
+
+<br />
+
+<b>Date #1:</b> <input type="text" name="date1" id="sel1" size="30"
+><input type="reset" value=" ... "
+onclick="return showCalendar('sel1', '%Y-%m-%d [%W] %H:%M', '24', true);"> %Y-%m-%d [%W] %H:%M -- single
+click<br />
+
+<b>Date #2:</b> <input type="text" name="date2" id="sel2" size="30"
+><input type="reset" value=" ... "
+onclick="return showCalendar('sel2', '%a, %b %e, %Y [%I:%M %p]', '12');"> %a, %b %e, %Y [%I:%M %p]
+-- double click
+
+<br /><br />
+<!--
+if you remove this comment and leave the following HTML code
+you will see a horrible effect, in all supported browsers (IE and Mozilla).
+-->
+<SELECT multiple size="4" name="component-select">
+  <OPTION selected value="Component_1_a">Component_1</OPTION>
+  <OPTION selected value="Component_1_b">Component_2</OPTION>
+  <OPTION>Component_3</OPTION>
+  <OPTION>Component_4</OPTION>
+  <OPTION>Component_5</OPTION>
+  <OPTION>Component_6</OPTION>
+  <OPTION>Component_7</OPTION>
+</SELECT>
+this select should hide when the calendar is above it.
+<br /><br />
+
+<b>Date #3:</b> <input type="text" name="date3" id="sel3" size="30"
+><input type="reset" value=" ... "
+onclick="return showCalendar('sel3', '%d/%m/%Y');"> %d/%m/%Y
+-- single click
+<br />
+
+<b>Date #4:</b> <input type="text" name="date4" id="sel4" size="30"
+><input type="reset" value=" ... "
+onclick="return showCalendar('sel4', '%A, %B %e, %Y');"> %A, %B %e, %Y --
+double click
+
+</form>
+
+<p>This is release <b>0.9.6</b>.  Works on MSIE/Win 5.0 or better (really),
+Opera 7, Mozilla, Netscape 6.x, 7.0 and all other Gecko-s, Konqueror and
+Safari.</p>
+
+<p class="help">You can click on "Mo"/"Su" (first day name displayed) to
+change the first day of week (Sunday/Monday) (since 0.8 this is also mapped
+on the "-" button in the top-left corner).  Use the navigation buttons
+("&lt;&lt;", "&lt;", "Today", "&gt;", "&gt;&gt;") to move to the prev/next
+year/month.  Keep the mouse button pressed for a short time over one of
+these buttons to get a menu for faster selection.  You can drag the "status
+bar" (that's where the tooltips appear) or title bar (that's where the
+currently selected month/year shows up) to move the whole calendar.</p>
+
+<h4>Keyboard navigation</h4>
+
+<p>Starting with version 0.9.2, you can also use the keyboard to select
+dates (only for popup calendars; does <em>not</em> work with Opera
+7 or Konqueror/Safari).  The following keys are available:</p>
+
+<ul>
+
+  <li><span class="key">&larr;</span> , <span class="key">&rarr;</span> ,
+  <span class="key">&uarr;</span> , <span class="key">&darr;</span> -- select date</li>
+  <li><span class="key">CTRL</span> + <span class="key">&larr;</span> ,
+  <span class="key">&rarr;</span> -- select month</li>
+  <li><span class="key">CTRL</span> + <span class="key">&uarr;</span> ,
+  <span class="key">&darr;</span> -- select year</li>
+  <li><span class="key">SPACE</span> -- go to <em>today</em> date</li>
+  <li><span class="key">ENTER</span> -- accept the currently selected date</li>
+  <li><span class="key">ESC</span> -- cancel selection</li>
+
+</ul>
+
+          </td>
+
+          <td style="padding: 5px; margin: 5px; border: 1px solid #984; background: #ed9; width: 15em;">
+
+            <div style="background: #984; color: #fea; font-weight: bold; padding: 2px; text-align: center">
+              Flat calendar
+            </div>
+
+            <p style="width: 12em"><small>A non-popup version will appear below as soon
+              as the page is loaded.  Note that it doesn't show the week number.</small></p>
+
+            <!-- the calendar will be inserted here -->
+            <div id="display" style="float: right; clear: both;"></div>
+            <div id="preview" style="font-size: 80%; text-align: center; padding: 2px"></div>
+
+            <p style="width: 12em"><small>
+              The example above uses the <code>setDisabledHandler()</code> member function
+              to setup a handler that would only enable days withing a range of 10 days,
+              forward or backward, from the current date.
+            </small></p>
+
+          </div>
+
+          </td>
+
+        </tr>
+      </table>
+
+<hr /><address>
+&copy; <a href="http://dynarch.com">dynarch.com</a> 2002-2003 <br />
+Author: <a href="http://dynarch.com/mishoo/">Mihai
+Bazon</a><br /> Distributed under the <a
+href="http://www.gnu.org/licenses/lgpl.html">GNU LGPL</a>.</address>
+
+<p style="font-size: smaller">If you use this script on a public page it
+would be nice if you would <a href="mailto:mishoo@infoiasi.ro">let me
+know</a>.</p>
+
+</body></html>
diff --git a/skins/jscalendar/lang/calendar-af.js b/skins/jscalendar/lang/calendar-af.js
new file mode 100644
index 0000000..aeda581
--- /dev/null
+++ b/skins/jscalendar/lang/calendar-af.js
@@ -0,0 +1,39 @@
+// ** I18N Afrikaans
+Calendar._DN = new Array
+("Sondag",
+ "Maandag",
+ "Dinsdag",
+ "Woensdag",
+ "Donderdag",
+ "Vrydag",
+ "Saterdag",
+ "Sondag");
+Calendar._MN = new Array
+("Januarie",
+ "Februarie",
+ "Maart",
+ "April",
+ "Mei",
+ "Junie",
+ "Julie",
+ "Augustus",
+ "September",
+ "Oktober",
+ "November",
+ "Desember");
+
+// tooltips
+Calendar._TT = {};
+Calendar._TT["TOGGLE"] = "Verander eerste dag van die week";
+Calendar._TT["PREV_YEAR"] = "Vorige jaar (hou vir keuselys)";
+Calendar._TT["PREV_MONTH"] = "Vorige maand (hou vir keuselys)";
+Calendar._TT["GO_TODAY"] = "Gaan na vandag";
+Calendar._TT["NEXT_MONTH"] = "Volgende maand (hou vir keuselys)";
+Calendar._TT["NEXT_YEAR"] = "Volgende jaar (hou vir keuselys)";
+Calendar._TT["SEL_DATE"] = "Kies datum";
+Calendar._TT["DRAG_TO_MOVE"] = "Sleep om te skuif";
+Calendar._TT["PART_TODAY"] = " (vandag)";
+Calendar._TT["MON_FIRST"] = "Vertoon Maandag eerste";
+Calendar._TT["SUN_FIRST"] = "Display Sunday first";
+Calendar._TT["CLOSE"] = "Close";
+Calendar._TT["TODAY"] = "Today";
diff --git a/skins/jscalendar/lang/calendar-br.js b/skins/jscalendar/lang/calendar-br.js
new file mode 100644
index 0000000..d7db4b4
--- /dev/null
+++ b/skins/jscalendar/lang/calendar-br.js
@@ -0,0 +1,45 @@
+// ** I18N
+Calendar._DN = new Array
+("Domingo",
+ "Segunda",
+ "Terça",
+ "Quarta",
+ "Quinta",
+ "Sexta",
+ "Sábado",
+ "Domingo");
+Calendar._MN = new Array
+("Janeiro",
+ "Fevereiro",
+ "Março",
+ "Abril",
+ "Maio",
+ "Junho",
+ "Julho",
+ "Agosto",
+ "Setembro",
+ "Outubro",
+ "Novembro",
+ "Dezembro");
+
+// tooltips
+Calendar._TT = {};
+Calendar._TT["TOGGLE"] = "Altera primeiro dia da semana";
+Calendar._TT["PREV_YEAR"] = "Ano anterior(hold for menu)";
+Calendar._TT["PREV_MONTH"] = "Mês anterior (hold for menu)";
+Calendar._TT["GO_TODAY"] = "Hoje";
+Calendar._TT["NEXT_MONTH"] = "Mês seguinte (hold for menu)";
+Calendar._TT["NEXT_YEAR"] = "ano seguinte (hold for menu)";
+Calendar._TT["SEL_DATE"] = "Seleciona uma data";
+Calendar._TT["DRAG_TO_MOVE"] = "Arrasta calendário";
+Calendar._TT["PART_TODAY"] = " (hoje)";
+Calendar._TT["MON_FIRST"] = "Inicia na segunda-feira";
+Calendar._TT["SUN_FIRST"] = "Inicia no domingo";
+Calendar._TT["CLOSE"] = "Fechar";
+Calendar._TT["TODAY"] = "Hoje";
+
+// date formats
+Calendar._TT["DEF_DATE_FORMAT"] = "dd-mm-y";
+Calendar._TT["TT_DATE_FORMAT"] = "DD, dd de MM de y";
+
+Calendar._TT["WK"] = "sem";
diff --git a/skins/jscalendar/lang/calendar-ca.js b/skins/jscalendar/lang/calendar-ca.js
new file mode 100644
index 0000000..3498d76
--- /dev/null
+++ b/skins/jscalendar/lang/calendar-ca.js
@@ -0,0 +1,45 @@
+// ** I18N
+Calendar._DN = new Array
+("Diumenge",
+ "Dilluns",
+ "Dimarts",
+ "Dimecres",
+ "Dijous",
+ "Divendres",
+ "Dissabte",
+ "Diumenge");
+Calendar._MN = new Array
+("Gener",
+ "Febrer",
+ "Març",
+ "Abril",
+ "Maig",
+ "Juny",
+ "Juliol",
+ "Agost",
+ "Setembre",
+ "Octubre",
+ "Novembre",
+ "Desembre");
+
+// tooltips
+Calendar._TT = {};
+Calendar._TT["TOGGLE"] = "Canvia el primer dia de la setmana";
+Calendar._TT["PREV_YEAR"] = "Any anterior (mantenir per a menu)";
+Calendar._TT["PREV_MONTH"] = "Mes anterior (mantenir per a menu)";
+Calendar._TT["GO_TODAY"] = "Anar a avui";
+Calendar._TT["NEXT_MONTH"] = "Mes següent (mantenir per a menu)";
+Calendar._TT["NEXT_YEAR"] = "Any següent (mantenir per a menu)";
+Calendar._TT["SEL_DATE"] = "Seleccionar data";
+Calendar._TT["DRAG_TO_MOVE"] = "Arrastrar per a moure";
+Calendar._TT["PART_TODAY"] = " (avui)";
+Calendar._TT["MON_FIRST"] = "Mostrar dilluns primer";
+Calendar._TT["SUN_FIRST"] = "Mostrar diumenge primer";
+Calendar._TT["CLOSE"] = "Tancar";
+Calendar._TT["TODAY"] = "Avui";
+
+// date formats
+Calendar._TT["DEF_DATE_FORMAT"] = "dd-mm-yy";
+Calendar._TT["TT_DATE_FORMAT"] = "D, M d";
+
+Calendar._TT["WK"] = "sem";
diff --git a/skins/jscalendar/lang/calendar-cs-win.js b/skins/jscalendar/lang/calendar-cs-win.js
new file mode 100644
index 0000000..b34213f
--- /dev/null
+++ b/skins/jscalendar/lang/calendar-cs-win.js
@@ -0,0 +1,34 @@
+/* 
+	calendar-cs-win.js
+	language: Czech
+	encoding: windows-1250
+	author: Lubos Jerabek (xnet@seznam.cz)
+*/
+
+// ** I18N
+Calendar._DN = new Array('Nedìle','Pondìlí','Úterý','Støeda','Ètvrtek','Pátek','Sobota','Nedìle');
+Calendar._DN3 = new Array('Ne','Po','Út','St','Èt','Pá','So','Ne');
+Calendar._MN = new Array('Leden','Únor','Bøezen','Duben','Kvìten','Èerven','Èervenec','Srpen','Záøí','Øíjen','Listopad','Prosinec');
+Calendar._MN3 = new Array('Led','Úno','Bøe','Dub','Kvì','Èrv','Èvc','Srp','Záø','Øíj','Lis','Pro');
+
+// tooltips
+Calendar._TT = {};
+Calendar._TT["TOGGLE"] = "Zmìna prvního dne v týdnu";
+Calendar._TT["PREV_YEAR"] = "Pøedchozí rok (pøidrž pro menu)";
+Calendar._TT["PREV_MONTH"] = "Pøedchozí mìsíc (pøidrž pro menu)";
+Calendar._TT["GO_TODAY"] = "Dnešní datum";
+Calendar._TT["NEXT_MONTH"] = "Další mìsíc (pøidrž pro menu)";
+Calendar._TT["NEXT_YEAR"] = "Další rok (pøidrž pro menu)";
+Calendar._TT["SEL_DATE"] = "Vyber datum";
+Calendar._TT["DRAG_TO_MOVE"] = "Chy a táhni, pro pøesun";
+Calendar._TT["PART_TODAY"] = " (dnes)";
+Calendar._TT["MON_FIRST"] = "Ukaž jako první Pondìlí";
+Calendar._TT["SUN_FIRST"] = "Ukaž jako první Nedìli";
+Calendar._TT["CLOSE"] = "Zavøít";
+Calendar._TT["TODAY"] = "Dnes";
+
+// date formats
+Calendar._TT["DEF_DATE_FORMAT"] = "d.m.yy";
+Calendar._TT["TT_DATE_FORMAT"] = "DD, 5.MM y";
+
+Calendar._TT["WK"] = "wk";
diff --git a/skins/jscalendar/lang/calendar-da.js b/skins/jscalendar/lang/calendar-da.js
new file mode 100644
index 0000000..579cee0
--- /dev/null
+++ b/skins/jscalendar/lang/calendar-da.js
@@ -0,0 +1,63 @@
+// ** I18N
+Calendar._DN = new Array
+("Søndag",
+ "Mandag",
+ "Tirsdag",
+ "Onsdag",
+ "Torsdag",
+ "Fredag",
+ "Lørdag",
+ "Søndag");
+Calendar._MN = new Array
+("January",
+ "Februar",
+ "Marts",
+ "April",
+ "Maj",
+ "Juni",
+ "Juli",
+ "August",
+ "September",
+ "Oktober",
+ "November",
+ "December");
+
+// tooltips
+Calendar._TT = {};
+Calendar._TT["INFO"] = "Om Kalenderen";
+
+Calendar._TT["ABOUT"] =
+"DHTML Date/Time Selector\n" +
+"(c) dynarch.com 2002-2003\n" + // don't translate this this ;-)
+"For den seneste version besøg: http://dynarch.com/mishoo/calendar.epl\n" +
+"Distribueret under GNU LGPL.  Se http://gnu.org/licenses/lgpl.html for detajler." +
+"\n\n" +
+"Valg af dato:\n" +
+"- Brug \xab, \xbb knapperne for at vælge år\n" +
+"- Brug " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " knapperne for at vælge måned\n" +
+"- Hold knappen på musen nede på knapperne ovenfor for hurtigere valg.";
+Calendar._TT["ABOUT_TIME"] = "\n\n" +
+"Valg af tid:\n" +
+"- Klik på en vilkårlig del for større værdi\n" +
+"- eller Shift-klik for for mindre værdi\n" +
+"- eller klik og træk for hurtigere valg.";
+
+Calendar._TT["TOGGLE"] = "Skift første ugedag";
+Calendar._TT["PREV_YEAR"] = "Ét år tilbage (hold for menu)";
+Calendar._TT["PREV_MONTH"] = "Én måned tilbage (hold for menu)";
+Calendar._TT["GO_TODAY"] = "Gå til i dag";
+Calendar._TT["NEXT_MONTH"] = "Én måned frem (hold for menu)";
+Calendar._TT["NEXT_YEAR"] = "Ét år frem (hold for menu)";
+Calendar._TT["SEL_DATE"] = "Vælg dag";
+Calendar._TT["DRAG_TO_MOVE"] = "Træk vinduet";
+Calendar._TT["PART_TODAY"] = " (i dag)";
+Calendar._TT["MON_FIRST"] = "Vis mandag først";
+Calendar._TT["SUN_FIRST"] = "Vis søndag først";
+Calendar._TT["CLOSE"] = "Luk vinduet";
+Calendar._TT["TODAY"] = "I dag";
+
+// date formats
+Calendar._TT["DEF_DATE_FORMAT"] = "dd-mm-yy";
+Calendar._TT["TT_DATE_FORMAT"] = "%d. %b, %Y";
+
+Calendar._TT["WK"] = "wk";
diff --git a/skins/jscalendar/lang/calendar-de.js b/skins/jscalendar/lang/calendar-de.js
new file mode 100644
index 0000000..201469f
--- /dev/null
+++ b/skins/jscalendar/lang/calendar-de.js
@@ -0,0 +1,100 @@
+// Author: Hartwig Weinkauf h_weinkauf@gmx.de
+// �erarbeitet und fehlende Texte hinzugefgt von Gerhard Neinert (gerhard at neinert punkt de)
+// Feel free to use / redistribute under the GNU LGPL.
+// ** I18N
+
+// short day names
+Calendar._SDN = new Array
+("So",
+ "Mo",
+ "Di",
+ "Mi",
+ "Do",
+ "Fr",
+ "Sa",
+ "So");
+
+// full day names
+Calendar._DN = new Array
+("Sonntag",
+ "Montag",
+ "Dienstag",
+ "Mittwoch",
+ "Donnerstag",
+ "Freitag",
+ "Samstag",
+ "Sonntag");
+
+// short day names only use 2 letters instead of 3
+Calendar._SDN_len = 2;
+
+// full month names
+Calendar._MN = new Array
+("Januar",
+ "Februar",
+ "M\u00e4rz",
+ "April",
+ "Mai",
+ "Juni",
+ "Juli",
+ "August",
+ "September",
+ "Oktober",
+ "November",
+ "Dezember");
+
+// short month names
+Calendar._SMN = new Array
+("Jan",
+ "Feb",
+ "M\u00e4r",
+ "Apr",
+ "Mai",
+ "Jun",
+ "Jul",
+ "Aug",
+ "Sep",
+ "Okt",
+ "Nov",
+ "Dez");
+
+// tooltips
+Calendar._TT = {};
+
+Calendar._TT["ABOUT"] =
+"DHTML Datum/Zeit Selector\n" +
+"(c) dynarch.com 2002-2003\n" + // don't translate this this ;-)
+"Donwload neueste Version: http://dynarch.com/mishoo/calendar.epl\n" +
+"Distributed under GNU LGPL.  See http://gnu.org/licenses/lgpl.html for details." +
+"\n\n" +
+"Datumsauswahl:\n" +
+"- Jahr ausw\u00e4hlen mit \xab und \xbb\n" +
+"- Monat ausw\u00e4hlen mit " + String.fromCharCode(0x2039) + " und " + String.fromCharCode(0x203a) + "\n" +
+"- Fr Auswahl aus Liste Maustaste gedr\u00fcckt halten.";
+
+Calendar._TT["ABOUT_TIME"] = "\n\n" +
+"Zeit w\u00e4hlen:\n" +
+"- Stunde/Minute weiter mit Mausklick\n" +
+"- Stunde/Minute zurck mit Shift-Mausklick\n" +
+"- oder f\u00fcr schnellere Auswahl nach links oder rechts ziehen.";
+
+
+Calendar._TT["TOGGLE"] = "Ersten Tag der Woche w\u00e4hlen";
+Calendar._TT["PREV_YEAR"] = "Jahr zur\u00fcck (halten -> Auswahlmen\u00fc)";
+Calendar._TT["PREV_MONTH"] = "Monat zur\u00fcck (halten -> Auswahlmen\u00fc)";
+Calendar._TT["GO_TODAY"] = "Gehe zum heutigen Datum";
+Calendar._TT["NEXT_MONTH"] = "Monat vor (halten -> Auswahlmen\u00fc)";
+Calendar._TT["NEXT_YEAR"] = "Jahr vor (halten -> Auswahlmen\u00fc)";
+Calendar._TT["SEL_DATE"] = "Datum ausw\u00e4hlen";
+Calendar._TT["DRAG_TO_MOVE"] = "Klicken und halten um zu verschieben";
+Calendar._TT["PART_TODAY"] = " (heute)";
+Calendar._TT["MON_FIRST"] = "Wochenanzeige mit Montag beginnen";
+Calendar._TT["SUN_FIRST"] = "Wochenanzeige mit Sonntag beginnen";
+Calendar._TT["CLOSE"] = "Schlie\u00dfen";
+Calendar._TT["TODAY"] = "Heute";
+
+// date formats
+Calendar._TT["DEF_DATE_FORMAT"] = "dd-mm-y";
+Calendar._TT["TT_DATE_FORMAT"] = "Datum ausw\u00e4hlen";
+
+Calendar._TT["WK"] = "KW";
diff --git a/skins/jscalendar/lang/calendar-du.js b/skins/jscalendar/lang/calendar-du.js
new file mode 100644
index 0000000..2200448
--- /dev/null
+++ b/skins/jscalendar/lang/calendar-du.js
@@ -0,0 +1,45 @@
+// ** I18N
+Calendar._DN = new Array
+("Zondag",
+ "Maandag",
+ "Dinsdag",
+ "Woensdag",
+ "Donderdag",
+ "Vrijdag",
+ "Zaterdag",
+ "Zondag");
+Calendar._MN = new Array
+("Januari",
+ "Februari",
+ "Maart",
+ "April",
+ "Mei",
+ "Juni",
+ "Juli",
+ "Augustus",
+ "September",
+ "Oktober",
+ "November",
+ "December");
+
+// tooltips
+Calendar._TT = {};
+Calendar._TT["TOGGLE"] = "Toggle startdag van de week";
+Calendar._TT["PREV_YEAR"] = "Vorig jaar (indrukken voor menu)";
+Calendar._TT["PREV_MONTH"] = "Vorige month (indrukken voor menu)";
+Calendar._TT["GO_TODAY"] = "Naar Vandaag";
+Calendar._TT["NEXT_MONTH"] = "Volgende Maand (indrukken voor menu)";
+Calendar._TT["NEXT_YEAR"] = "Volgend jaar (indrukken voor menu)";
+Calendar._TT["SEL_DATE"] = "Selecteer datum";
+Calendar._TT["DRAG_TO_MOVE"] = "Sleep om te verplaatsen";
+Calendar._TT["PART_TODAY"] = " (vandaag)";
+Calendar._TT["MON_FIRST"] = "Toon Maandag eerst";
+Calendar._TT["SUN_FIRST"] = "Toon Zondag eerst";
+Calendar._TT["CLOSE"] = "Sluiten";
+Calendar._TT["TODAY"] = "Vandaag";
+
+// date formats
+Calendar._TT["DEF_DATE_FORMAT"] = "y-mm-dd";
+Calendar._TT["TT_DATE_FORMAT"] = "D, M d";
+
+Calendar._TT["WK"] = "wk";
diff --git a/skins/jscalendar/lang/calendar-el.js b/skins/jscalendar/lang/calendar-el.js
new file mode 100644
index 0000000..1afcbb2
--- /dev/null
+++ b/skins/jscalendar/lang/calendar-el.js
@@ -0,0 +1,89 @@
+// ** I18N
+Calendar._DN = new Array
+("Κυριακή",
+ "Δευτέρα",
+ "Τρίτη",
+ "Τετάρτη",
+ "Πέμπτη",
+ "Παρασκευή",
+ "Σάββατο",
+ "Κυριακή");
+
+Calendar._SDN = new Array
+("Κυ",
+ "Δε",
+ "Tρ",
+ "Τε",
+ "Πε",
+ "Πα",
+ "Σα",
+ "Κυ");
+
+Calendar._MN = new Array
+("Ιανουάριος",
+ "Φεβρουάριος",
+ "Μάρτιος",
+ "Απρίλιος",
+ "Μάϊος",
+ "Ιούνιος",
+ "Ιούλιος",
+ "Αύγουστος",
+ "Σεπτέμβριος",
+ "Οκτώβριος",
+ "Νοέμβριος",
+ "Δεκέμβριος");
+
+Calendar._SMN = new Array
+("Ιαν",
+ "Φεβ",
+ "Μαρ",
+ "Απρ",
+ "Μαι",
+ "Ιουν",
+ "Ιουλ",
+ "Αυγ",
+ "Σεπ",
+ "Οκτ",
+ "Νοε",
+ "Δεκ");
+
+// tooltips
+Calendar._TT = {};
+Calendar._TT["INFO"] = "Για το ημερολόγιο";
+
+Calendar._TT["ABOUT"] =
+"Επιλογέας ημερομηνίας/ώρας σε DHTML\n" +
+"(c) dynarch.com 2002-2003\n" + // don't translate this this ;-)
+"Για τελευταία έκδοση: http://dynarch.com/mishoo/calendar.epl\n" +
+"Distributed under GNU LGPL.  See http://gnu.org/licenses/lgpl.html for details." +
+"\n\n" +
+"Επιλογή ημερομηνίας:\n" +
+"- Χρησιμοποιείστε τα κουμπιά \xab, \xbb για επιλογή έτους\n" +
+"- Χρησιμοποιείστε τα κουμπιά " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " για επιλογή μήνα\n" +
+"- Κρατήστε κουμπί ποντικού πατημένο στα παραπάνω κουμπιά για πιο γρήγορη επιλογή.";
+Calendar._TT["ABOUT_TIME"] = "\n\n" +
+"Επιλογή ώρας:\n" +
+"- Κάντε κλικ σε ένα από τα μέρη της ώρας για αύξηση\n" +
+"- ή Shift-κλικ για μείωση\n" +
+"- ή κλικ και μετακίνηση για πιο γρήγορη επιλογή.";
+Calendar._TT["TOGGLE"] = "Μπάρα πρώτης ημέρας της εβδομάδας";
+Calendar._TT["PREV_YEAR"] = "Προηγ. έτος (κρατήστε για το μενού)";
+Calendar._TT["PREV_MONTH"] = "Προηγ. μήνας (κρατήστε για το μενού)";
+Calendar._TT["GO_TODAY"] = "Σήμερα";
+Calendar._TT["NEXT_MONTH"] = "Επόμενος μήνας (κρατήστε για το μενού)";
+Calendar._TT["NEXT_YEAR"] = "Επόμενο έτος (κρατήστε για το μενού)";
+Calendar._TT["SEL_DATE"] = "Επιλέξτε ημερομηνία";
+Calendar._TT["DRAG_TO_MOVE"] = "Σύρτε για να μετακινήσετε";
+Calendar._TT["PART_TODAY"] = " (σήμερα)";
+Calendar._TT["MON_FIRST"] = "Εμφάνιση Δευτέρας πρώτα";
+Calendar._TT["SUN_FIRST"] = "Εμφάνιση Κυριακής πρώτα";
+Calendar._TT["CLOSE"] = "Κλείσιμο";
+Calendar._TT["TODAY"] = "Σήμερα";
+Calendar._TT["TIME_PART"] = "(Shift-)κλικ ή μετακίνηση για αλλαγή";
+
+// date formats
+Calendar._TT["DEF_DATE_FORMAT"] = "dd-mm-y";
+Calendar._TT["TT_DATE_FORMAT"] = "D, d M";
+
+Calendar._TT["WK"] = "εβδ";
+
diff --git a/skins/jscalendar/lang/calendar-en.js b/skins/jscalendar/lang/calendar-en.js
new file mode 100644
index 0000000..e9d6a22
--- /dev/null
+++ b/skins/jscalendar/lang/calendar-en.js
@@ -0,0 +1,123 @@
+// ** I18N
+
+// Calendar EN language
+// Author: Mihai Bazon, <mishoo@infoiasi.ro>
+// Encoding: any
+// Distributed under the same terms as the calendar itself.
+
+// For translators: please use UTF-8 if possible.  We strongly believe that
+// Unicode is the answer to a real internationalized world.  Also please
+// include your contact information in the header, as can be seen above.
+
+// full day names
+Calendar._DN = new Array
+("Sunday",
+ "Monday",
+ "Tuesday",
+ "Wednesday",
+ "Thursday",
+ "Friday",
+ "Saturday",
+ "Sunday");
+
+// Please note that the following array of short day names (and the same goes
+// for short month names, _SMN) isn't absolutely necessary.  We give it here
+// for exemplification on how one can customize the short day names, but if
+// they are simply the first N letters of the full name you can simply say:
+//
+//   Calendar._SDN_len = N; // short day name length
+//   Calendar._SMN_len = N; // short month name length
+//
+// If N = 3 then this is not needed either since we assume a value of 3 if not
+// present, to be compatible with translation files that were written before
+// this feature.
+
+// short day names
+Calendar._SDN = new Array
+("Sun",
+ "Mon",
+ "Tue",
+ "Wed",
+ "Thu",
+ "Fri",
+ "Sat",
+ "Sun");
+
+// full month names
+Calendar._MN = new Array
+("January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December");
+
+// short month names
+Calendar._SMN = new Array
+("Jan",
+ "Feb",
+ "Mar",
+ "Apr",
+ "May",
+ "Jun",
+ "Jul",
+ "Aug",
+ "Sep",
+ "Oct",
+ "Nov",
+ "Dec");
+
+// tooltips
+Calendar._TT = {};
+Calendar._TT["INFO"] = "About the calendar";
+
+Calendar._TT["ABOUT"] =
+"DHTML Date/Time Selector\n" +
+"(c) dynarch.com 2002-2003\n" + // don't translate this this ;-)
+"For latest version visit: http://dynarch.com/mishoo/calendar.epl\n" +
+"Distributed under GNU LGPL.  See http://gnu.org/licenses/lgpl.html for details." +
+"\n\n" +
+"Date selection:\n" +
+"- Use the \xab, \xbb buttons to select year\n" +
+"- Use the " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " buttons to select month\n" +
+"- Hold mouse button on any of the above buttons for faster selection.";
+Calendar._TT["ABOUT_TIME"] = "\n\n" +
+"Time selection:\n" +
+"- Click on any of the time parts to increase it\n" +
+"- or Shift-click to decrease it\n" +
+"- or click and drag for faster selection.";
+
+Calendar._TT["PREV_YEAR"] = "Prev. year (hold for menu)";
+Calendar._TT["PREV_MONTH"] = "Prev. month (hold for menu)";
+Calendar._TT["GO_TODAY"] = "Go Today";
+Calendar._TT["NEXT_MONTH"] = "Next month (hold for menu)";
+Calendar._TT["NEXT_YEAR"] = "Next year (hold for menu)";
+Calendar._TT["SEL_DATE"] = "Select date";
+Calendar._TT["DRAG_TO_MOVE"] = "Drag to move";
+Calendar._TT["PART_TODAY"] = " (today)";
+
+// the following is to inform that "%s" is to be the first day of week
+// %s will be replaced with the day name.
+Calendar._TT["DAY_FIRST"] = "Display %s first";
+
+// This may be locale-dependent.  It specifies the week-end days, as an array
+// of comma-separated numbers.  The numbers are from 0 to 6: 0 means Sunday, 1
+// means Monday, etc.
+Calendar._TT["WEEKEND"] = "0,6";
+
+Calendar._TT["CLOSE"] = "Close";
+Calendar._TT["TODAY"] = "Today";
+Calendar._TT["TIME_PART"] = "(Shift-)Click or drag to change value";
+
+// date formats
+Calendar._TT["DEF_DATE_FORMAT"] = "%Y-%m-%d";
+Calendar._TT["TT_DATE_FORMAT"] = "%a, %b %e";
+
+Calendar._TT["WK"] = "wk";
+Calendar._TT["TIME"] = "Time:";
diff --git a/skins/jscalendar/lang/calendar-es.js b/skins/jscalendar/lang/calendar-es.js
new file mode 100644
index 0000000..a8d52ea
--- /dev/null
+++ b/skins/jscalendar/lang/calendar-es.js
@@ -0,0 +1,114 @@
+// ** I18N
+
+// Calendar EN language
+// Author: Mihai Bazon, <mishoo@infoiasi.ro>
+// Encoding: any
+// Distributed under the same terms as the calendar itself.
+
+// For translators: please use UTF-8 if possible.  We strongly believe that
+// Unicode is the answer to a real internationalized world.  Also please
+// include your contact information in the header, as can be seen above.
+
+// full day names
+Calendar._DN = new Array
+("Domingo",
+ "Lunes",
+ "Martes",
+ "Miircoles",
+ "Jueves",
+ "Viernes",
+ "Sabado",
+ "Domingo");
+
+// Please note that the following array of short day names (and the same goes
+// for short month names, _SMN) isn't absolutely necessary.  We give it here
+// for exemplification on how one can customize the short day names, but if
+// they are simply the first N letters of the full name you can simply say:
+//
+//   Calendar._SDN_len = N; // short day name length
+//   Calendar._SMN_len = N; // short month name length
+//
+// If N = 3 then this is not needed either since we assume a value of 3 if not
+// present, to be compatible with translation files that were written before
+// this feature.
+
+// short day names
+Calendar._SDN = new Array
+("Dom",
+ "Lun",
+ "Mar",
+ "Mii",
+ "Jue",
+ "Vie",
+ "Sab",
+ "Dom");
+
+// full month names
+Calendar._MN = new Array
+("Enero",
+ "Febrero",
+ "Marzo",
+ "Abril",
+ "Mayo",
+ "Junio",
+ "Julio",
+ "Agosto",
+ "Septiembre",
+ "Octubre",
+ "Noviembre",
+ "Diciembre");
+
+// short month names
+Calendar._SMN = new Array
+("Ene",
+ "Feb",
+ "Mar",
+ "Abr",
+ "May",
+ "Jun",
+ "Jul",
+ "Ago",
+ "Sep",
+ "Oct",
+ "Nov",
+ "Dic");
+
+// tooltips
+Calendar._TT = {};
+Calendar._TT["INFO"] = "Acerca del calendario";
+
+Calendar._TT["ABOUT"] =
+"Selector DHTML de Fecha/Hora\n" +
+"(c) dynarch.com 2002-2003\n" + // don't translate this this ;-)
+"Para conseguir la zltima versisn visite: http://dynarch.com/mishoo/calendar.epl\n" +
+"Distribuido bajo licencia GNU LGPL. Visite http://gnu.org/licenses/lgpl.html para mas detalles." +
+"\n\n" +
+"Seleccisn de fecha:\n" +
+"- Use los botones \xab, \xbb para seleccionar el aqo\n" +
+"- Use los botones " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " para seleccionar el mes\n" +
+"- Mantenga pulsado el ratsn en cualquiera de estos botones para una seleccisn rapida.";
+Calendar._TT["ABOUT_TIME"] = "\n\n" +
+"Seleccisn de hora:\n" +
+"- Pulse en cualquiera de las partes de la hora para incrementarla\n" +
+"- s pulse las mayzsculas mientras hace clic para decrementarla\n" +
+"- s haga clic y arrastre el ratsn para una seleccisn mas rapida.";
+
+Calendar._TT["PREV_YEAR"] = "Aqo anterior (mantener para menu)";
+Calendar._TT["PREV_MONTH"] = "Mes anterior (mantener para menu)";
+Calendar._TT["GO_TODAY"] = "Ir a hoy";
+Calendar._TT["NEXT_MONTH"] = "Mes siguiente (mantener para menu)";
+Calendar._TT["NEXT_YEAR"] = "Aqo siguiente (mantener para menu)";
+Calendar._TT["SEL_DATE"] = "Seleccionar fecha";
+Calendar._TT["DRAG_TO_MOVE"] = "Arrastrar para mover";
+Calendar._TT["PART_TODAY"] = " (hoy)";
+Calendar._TT["MON_FIRST"] = "Mostrar lunes primero";
+Calendar._TT["SUN_FIRST"] = "Mostrar domingo primero";
+Calendar._TT["CLOSE"] = "Cerrar";
+Calendar._TT["TODAY"] = "Hoy";
+Calendar._TT["TIME_PART"] = "(Mayzscula-)Clic o arrastre para cambiar valor";
+
+// date formats
+Calendar._TT["DEF_DATE_FORMAT"] = "%d/%m/%Y";
+Calendar._TT["TT_DATE_FORMAT"] = "%A, %e de %B de %Y";
+
+Calendar._TT["WK"] = "sem";
diff --git a/skins/jscalendar/lang/calendar-fi.js b/skins/jscalendar/lang/calendar-fi.js
new file mode 100644
index 0000000..844ed6c
--- /dev/null
+++ b/skins/jscalendar/lang/calendar-fi.js
@@ -0,0 +1,98 @@
+// ** I18N
+
+// Calendar FI language (Finnish, Suomi)
+// Author: Jarno Käyhkö, <gambler@phnet.fi>
+// Encoding: UTF-8
+// Distributed under the same terms as the calendar itself.
+
+// full day names
+Calendar._DN = new Array
+("Sunnuntai",
+ "Maanantai",
+ "Tiistai",
+ "Keskiviikko",
+ "Torstai",
+ "Perjantai",
+ "Lauantai",
+ "Sunnuntai");
+
+// short day names
+Calendar._SDN = new Array
+("Su",
+ "Ma",
+ "Ti",
+ "Ke",
+ "To",
+ "Pe",
+ "La",
+ "Su");
+
+// full month names
+Calendar._MN = new Array
+("Tammikuu",
+ "Helmikuu",
+ "Maaliskuu",
+ "Huhtikuu",
+ "Toukokuu",
+ "Kesäkuu",
+ "Heinäkuu",
+ "Elokuu",
+ "Syyskuu",
+ "Lokakuu",
+ "Marraskuu",
+ "Joulukuu");
+
+// short month names
+Calendar._SMN = new Array
+("Tam",
+ "Hel",
+ "Maa",
+ "Huh",
+ "Tou",
+ "Kes",
+ "Hei",
+ "Elo",
+ "Syy",
+ "Lok",
+ "Mar",
+ "Jou");
+
+// tooltips
+Calendar._TT = {};
+Calendar._TT["INFO"] = "Tietoja kalenterista";
+
+Calendar._TT["ABOUT"] =
+"DHTML Date/Time Selector\n" +
+"(c) dynarch.com 2002-2003\n" + // don't translate this this ;-)
+"Uusin versio osoitteessa: http://dynarch.com/mishoo/calendar.epl\n" +
+"Julkaistu GNU LGPL lisenssin alaisuudessa. Lisätietoja osoitteessa http://gnu.org/licenses/lgpl.html" +
+"\n\n" +
+"Päivämäärä valinta:\n" +
+"- Käytä \xab, \xbb painikkeita valitaksesi vuosi\n" +
+"- Käytä " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " painikkeita valitaksesi kuukausi\n" +
+"- Pitämällä hiiren painiketta minkä tahansa yllä olevan painikkeen kohdalla, saat näkyviin valikon nopeampaan siirtymiseen.";
+Calendar._TT["ABOUT_TIME"] = "\n\n" +
+"Ajan valinta:\n" +
+"- Klikkaa kellonajan numeroita lisätäksesi aikaa\n" +
+"- tai pitämällä Shift-näppäintä pohjassa saat aikaa taaksepäin\n" +
+"- tai klikkaa ja pidä hiiren painike pohjassa sekä liikuta hiirtä muuttaaksesi aikaa nopeasti eteen- ja taaksepäin.";
+
+Calendar._TT["PREV_YEAR"] = "Edell. vuosi (paina hetki, näet valikon)";
+Calendar._TT["PREV_MONTH"] = "Edell. kuukausi (paina hetki, näet valikon)";
+Calendar._TT["GO_TODAY"] = "Siirry tähän päivään";
+Calendar._TT["NEXT_MONTH"] = "Seur. kuukausi (paina hetki, näet valikon)";
+Calendar._TT["NEXT_YEAR"] = "Seur. vuosi (paina hetki, näet valikon)";
+Calendar._TT["SEL_DATE"] = "Valitse päivämäärä";
+Calendar._TT["DRAG_TO_MOVE"] = "Siirrä kalenterin paikkaa";
+Calendar._TT["PART_TODAY"] = " (tänään)";
+Calendar._TT["MON_FIRST"] = "Näytä maanantai ensimmäisenä";
+Calendar._TT["SUN_FIRST"] = "Näytä sunnuntai ensimmäisenä";
+Calendar._TT["CLOSE"] = "Sulje";
+Calendar._TT["TODAY"] = "Tänään";
+Calendar._TT["TIME_PART"] = "(Shift-) Klikkaa tai liikuta muuttaaksesi aikaa";
+
+// date formats
+Calendar._TT["DEF_DATE_FORMAT"] = "%d.%m.%Y";
+Calendar._TT["TT_DATE_FORMAT"] = "%d.%m.%Y";
+
+Calendar._TT["WK"] = "Vko";
diff --git a/skins/jscalendar/lang/calendar-fr.js b/skins/jscalendar/lang/calendar-fr.js
new file mode 100644
index 0000000..d2bc4fa
--- /dev/null
+++ b/skins/jscalendar/lang/calendar-fr.js
@@ -0,0 +1,123 @@
+// ** I18N
+
+// Calendar EN language
+// Author: Mihai Bazon, <mishoo@infoiasi.ro>
+// Encoding: any
+// Distributed under the same terms as the calendar itself.
+
+// For translators: please use UTF-8 if possible.  We strongly believe that
+// Unicode is the answer to a real internationalized world.  Also please
+// include your contact information in the header, as can be seen above.
+
+// full day names
+Calendar._DN = new Array
+("Dimanche",
+ "Lundi",
+ "Mardi",
+ "Mercredi",
+ "Jeudi",
+ "Vendredi",
+ "Samedi",
+ "Dimanche");
+
+// Please note that the following array of short day names (and the same goes
+// for short month names, _SMN) isn't absolutely necessary.  We give it here
+// for exemplification on how one can customize the short day names, but if
+// they are simply the first N letters of the full name you can simply say:
+//
+//   Calendar._SDN_len = N; // short day name length
+//   Calendar._SMN_len = N; // short month name length
+//
+// If N = 3 then this is not needed either since we assume a value of 3 if not
+// present, to be compatible with translation files that were written before
+// this feature.
+
+// short day names
+Calendar._SDN = new Array
+("Dim",
+ "Lun",
+ "Mar",
+ "Mer",
+ "Jeu",
+ "Ven",
+ "Sam",
+ "Dim");
+
+// full month names
+Calendar._MN = new Array
+("Janvier",
+ "Février",
+ "Mars",
+ "Avril",
+ "Mai",
+ "Juin",
+ "Juillet",
+ "Août",
+ "Septembre",
+ "Octobre",
+ "Novembre",
+ "Décembre");
+
+// short month names
+Calendar._SMN = new Array
+("Jan",
+ "Fév",
+ "Mar",
+ "Avr",
+ "Mai",
+ "Juin",
+ "Juil",
+ "Aou",
+ "Sep",
+ "Oct",
+ "Nov",
+ "Déc");
+
+// tooltips
+Calendar._TT = {};
+Calendar._TT["INFO"] = "À propos du calendrier";
+
+Calendar._TT["ABOUT"] =
+"Sélection de la date :\n" +
+"- Utiliser les boutons \xab, \xbb pour sélectionner l'année\n" +
+"- Utiliser les boutons " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " pour sélectionner le mois\n" +
+"- Maintenez enfoncé le bouton de la souris pour une sélection plus rapide";
+Calendar._TT["ABOUT_TIME"] = "\n\n" +
+"Sélection de l'heure :\n" +
+"- Cliquer sur une des composantes de l'heure pour incrémenter\n" +
+"- Maintenir Majuscule pour décrémenter\n" +
+"- Ou encore, cliquer et glisser pour une sélection plus rapide\n\n" +
+"DHTML Date/Time Selector\n" +
+"(c) dynarch.com 2002-2003\n" + // don't translate this this ;-)
+"Pour la dernière version, visiter : http://dynarch.com/mishoo/calendar.epl\n" +
+"Distribué sous license GNU LGPL.  Aller à http://gnu.org/licenses/lgpl.html pour plus de détails." +
+"\n\n";
+
+Calendar._TT["PREV_YEAR"] = "Année préc. (maintenir pour le menu)";
+Calendar._TT["PREV_MONTH"] = "Mois préc (maintenir pour le menu)";
+Calendar._TT["GO_TODAY"] = "Aller à Aujourd'hui";
+Calendar._TT["NEXT_MONTH"] = "Mois suiv. (maintenir pour le menu)";
+Calendar._TT["NEXT_YEAR"] = "Année suiv. (maintenir pour le menu)";
+Calendar._TT["SEL_DATE"] = "Sélectionner une date";
+Calendar._TT["DRAG_TO_MOVE"] = "Glisser pour déplacer";
+Calendar._TT["PART_TODAY"] = " (aujourd'hui)";
+
+// the following is to inform that "%s" is to be the first day of week
+// %s will be replaced with the day name.
+Calendar._TT["DAY_FIRST"] = "Afficher %s en premier";
+
+// This may be locale-dependent.  It specifies the week-end days, as an array
+// of comma-separated numbers.  The numbers are from 0 to 6: 0 means Sunday, 1
+// means Monday, etc.
+Calendar._TT["WEEKEND"] = "0,7";
+
+Calendar._TT["CLOSE"] = "Fermer";
+Calendar._TT["TODAY"] = "Aujourd'hui";
+Calendar._TT["TIME_PART"] = "(Maj) + clic ou glisser pour changer la valeur";
+
+// date formats
+Calendar._TT["DEF_DATE_FORMAT"] = "%d-%m-%Y";
+Calendar._TT["TT_DATE_FORMAT"] = "%a %e %b ";
+
+Calendar._TT["WK"] = "sem";
+Calendar._TT["TIME"] = "Heure :";
diff --git a/skins/jscalendar/lang/calendar-hr-utf8.js b/skins/jscalendar/lang/calendar-hr-utf8.js
new file mode 100644
index 0000000..baf01b1
--- /dev/null
+++ b/skins/jscalendar/lang/calendar-hr-utf8.js
@@ -0,0 +1,49 @@
+/* Croatian language file for the DHTML Calendar version 0.9.2 
+* Author Krunoslav Zubrinic <krunoslav.zubrinic@vip.hr>, June 2003.
+* Feel free to use this script under the terms of the GNU Lesser General
+* Public License, as long as you do not remove or alter this notice.
+*/
+Calendar._DN = new Array
+("Nedjelja",
+ "Ponedjeljak",
+ "Utorak",
+ "Srijeda",
+ "Četvrtak",
+ "Petak",
+ "Subota",
+ "Nedjelja");
+Calendar._MN = new Array
+("Siječanj",
+ "Veljača",
+ "Ožujak",
+ "Travanj",
+ "Svibanj",
+ "Lipanj",
+ "Srpanj",
+ "Kolovoz",
+ "Rujan",
+ "Listopad",
+ "Studeni",
+ "Prosinac");
+
+// tooltips
+Calendar._TT = {};
+Calendar._TT["TOGGLE"] = "Promjeni dan s kojim počinje tjedan";
+Calendar._TT["PREV_YEAR"] = "Prethodna godina (dugi pritisak za meni)";
+Calendar._TT["PREV_MONTH"] = "Prethodni mjesec (dugi pritisak za meni)";
+Calendar._TT["GO_TODAY"] = "Idi na tekući dan";
+Calendar._TT["NEXT_MONTH"] = "Slijedeći mjesec (dugi pritisak za meni)";
+Calendar._TT["NEXT_YEAR"] = "Slijedeća godina (dugi pritisak za meni)";
+Calendar._TT["SEL_DATE"] = "Izaberite datum";
+Calendar._TT["DRAG_TO_MOVE"] = "Pritisni i povuci za promjenu pozicije";
+Calendar._TT["PART_TODAY"] = " (today)";
+Calendar._TT["MON_FIRST"] = "Prikaži ponedjeljak kao prvi dan";
+Calendar._TT["SUN_FIRST"] = "Prikaži nedjelju kao prvi dan";
+Calendar._TT["CLOSE"] = "Zatvori";
+Calendar._TT["TODAY"] = "Danas";
+
+// date formats
+Calendar._TT["DEF_DATE_FORMAT"] = "dd-mm-y";
+Calendar._TT["TT_DATE_FORMAT"] = "DD, dd.mm.y";
+
+Calendar._TT["WK"] = "Tje";
\ No newline at end of file
diff --git a/skins/jscalendar/lang/calendar-hr.js b/skins/jscalendar/lang/calendar-hr.js
new file mode 100644
index 0000000..a5dab3f
Binary files /dev/null and b/skins/jscalendar/lang/calendar-hr.js differ
diff --git a/skins/jscalendar/lang/calendar-hu.js b/skins/jscalendar/lang/calendar-hu.js
new file mode 100644
index 0000000..64b38d6
--- /dev/null
+++ b/skins/jscalendar/lang/calendar-hu.js
@@ -0,0 +1,45 @@
+// ** I18N
+Calendar._DN = new Array
+("Vasárnap",
+ "Hétfõ",
+ "Kedd",
+ "Szerda",
+ "Csütörtök",
+ "Péntek",
+ "Szombat",
+ "Vasárnap");
+Calendar._MN = new Array
+("január",
+ "február",
+ "március",
+ "április",
+ "május",
+ "június",
+ "július",
+ "augusztus",
+ "szeptember",
+ "október",
+ "november",
+ "december");
+
+// tooltips
+Calendar._TT = {};
+Calendar._TT["TOGGLE"] = "A hét elsõ napjának beállítása";
+Calendar._TT["PREV_YEAR"] = "Elõzõ év (tartsa nyomva a menühöz)";
+Calendar._TT["PREV_MONTH"] = "Elõzõ hónap (tartsa nyomva a menühöz)";
+Calendar._TT["GO_TODAY"] = "Mai napra ugrás";
+Calendar._TT["NEXT_MONTH"] = "Köv. hónap (tartsa nyomva a menühöz)";
+Calendar._TT["NEXT_YEAR"] = "Köv. év (tartsa nyomva a menühöz)";
+Calendar._TT["SEL_DATE"] = "Válasszon dátumot";
+Calendar._TT["DRAG_TO_MOVE"] = "Húzza a mozgatáshoz";
+Calendar._TT["PART_TODAY"] = " (ma)";
+Calendar._TT["MON_FIRST"] = "Hétfõ legyen a hét elsõ napja";
+Calendar._TT["SUN_FIRST"] = "Vasárnap legyen a hét elsõ napja";
+Calendar._TT["CLOSE"] = "Bezár";
+Calendar._TT["TODAY"] = "Ma";
+
+// date formats
+Calendar._TT["DEF_DATE_FORMAT"] = "y-mm-dd";
+Calendar._TT["TT_DATE_FORMAT"] = "M d, D";
+
+Calendar._TT["WK"] = "hét";
diff --git a/skins/jscalendar/lang/calendar-it.js b/skins/jscalendar/lang/calendar-it.js
new file mode 100644
index 0000000..bb43449
--- /dev/null
+++ b/skins/jscalendar/lang/calendar-it.js
@@ -0,0 +1,79 @@
+// ** I18N
+Calendar._DN = new Array
+("Domenica",
+ "Lunedì",
+ "Martedì",
+ "Mercoledì",
+ "Giovedì",
+ "Venerdì",
+ "Sabato",
+ "Domenica");
+Calendar._MN = new Array
+("Gennaio",
+ "Febbraio",
+ "Marzo",
+ "Aprile",
+ "Maggio",
+ "Giugno",
+ "Luglio",
+ "Agosto",
+ "Settembre",
+ "Ottobre",
+ "Novembre",
+ "Dicembre");
+
+// short month names
+Calendar._SMN = new Array
+("Gen",
+ "Feb",
+ "Mar",
+ "Apr",
+ "Mag",
+ "Giu",
+ "Lug",
+ "Ago",
+ "Set",
+ "Ott",
+ "Nov",
+ "Dic");
+
+// tooltips
+Calendar._TT = {};
+Calendar._TT["INFO"] = "a proposito del calendario";
+
+Calendar._TT["ABOUT"] =
+"DHTML Date/Time Selector\n" +
+"(c) dynarch.com 2002-2003\n" + // don't translate this this ;-)
+"Per le ultime versioni vai a: http://dynarch.com/mishoo/calendar.epl\n" +
+"Distribuito su licenza GNU LGPL.  Vedi http://gnu.org/licenses/lgpl.html per i dettagli." +
+"\n\n" +
+"selezione della data:\n" +
+"- Usa i bottoni \xab, \xbb per selezionare l'anno\n" +
+"- Usa i bottoni " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " per selezionare il mese\n" +
+"- Utilizza il mouse per una selezione rapida.";
+Calendar._TT["ABOUT_TIME"] = "\n\n" +
+"selezione dell'ora:\n" +
+"- Clicca sull'ora visualizzata per aumentarla\n" +
+"- o Shift-click per diminuirla\n" +
+"- o click a trascina per la selezione rapida.";
+
+
+Calendar._TT["TOGGLE"] = "Modifica il primo giorno della settimana";
+Calendar._TT["PREV_YEAR"] = "Anno prec. (tieni premuto per menu)";
+Calendar._TT["PREV_MONTH"] = "Mese prec. (tieni premuto per menu)";
+Calendar._TT["GO_TODAY"] = "Vai a oggi";
+Calendar._TT["NEXT_MONTH"] = "Mese succ. (tieni premuto per menu)";
+Calendar._TT["NEXT_YEAR"] = "Anno succ. (tieni premuto per menu)";
+Calendar._TT["SEL_DATE"] = "Seleziona data";
+Calendar._TT["DRAG_TO_MOVE"] = "Trascina per spostare";
+Calendar._TT["PART_TODAY"] = " (oggi)";
+Calendar._TT["MON_FIRST"] = "Parti da lunedì";
+Calendar._TT["SUN_FIRST"] = "Parti da domenica";
+Calendar._TT["CLOSE"] = "Chiudi";
+Calendar._TT["TODAY"] = "Oggi";
+
+// date formats
+Calendar._TT["DEF_DATE_FORMAT"] = "%d-%m-%Y";
+Calendar._TT["TT_DATE_FORMAT"] = "%a, %e %b ";
+
+Calendar._TT["WK"] = "Setti";
diff --git a/skins/jscalendar/lang/calendar-jp.js b/skins/jscalendar/lang/calendar-jp.js
new file mode 100644
index 0000000..3bca7eb
--- /dev/null
+++ b/skins/jscalendar/lang/calendar-jp.js
@@ -0,0 +1,45 @@
+// ** I18N
+Calendar._DN = new Array
+("“ú",
+ "ŒŽ",
+ "‰Î",
+ "…",
+ "–Ø",
+ "‹à",
+ "“y",
+ "“ú");
+Calendar._MN = new Array
+("1ŒŽ",
+ "2ŒŽ",
+ "3ŒŽ",
+ "4ŒŽ",
+ "5ŒŽ",
+ "6ŒŽ",
+ "7ŒŽ",
+ "8ŒŽ",
+ "9ŒŽ",
+ "10ŒŽ",
+ "11ŒŽ",
+ "12ŒŽ");
+
+// tooltips
+Calendar._TT = {};
+Calendar._TT["TOGGLE"] = "T‚̍ŏ‰‚Ì—j“ú‚ðØ‚è‘Ö‚¦";
+Calendar._TT["PREV_YEAR"] = "‘O”N";
+Calendar._TT["PREV_MONTH"] = "‘OŒŽ";
+Calendar._TT["GO_TODAY"] = "¡“ú";
+Calendar._TT["NEXT_MONTH"] = "—‚ŒŽ";
+Calendar._TT["NEXT_YEAR"] = "—‚”N";
+Calendar._TT["SEL_DATE"] = "“ú•t‘I‘ð";
+Calendar._TT["DRAG_TO_MOVE"] = "ƒEƒBƒ“ƒhƒE‚̈ړ®";
+Calendar._TT["PART_TODAY"] = " (¡“ú)";
+Calendar._TT["MON_FIRST"] = "ŒŽ—j“ú‚ðæ“ª‚É";
+Calendar._TT["SUN_FIRST"] = "“ú—j“ú‚ðæ“ª‚É";
+Calendar._TT["CLOSE"] = "•Â‚¶‚é";
+Calendar._TT["TODAY"] = "¡“ú";
+
+// date formats
+Calendar._TT["DEF_DATE_FORMAT"] = "y-mm-dd";
+Calendar._TT["TT_DATE_FORMAT"] = "%mŒŽ %d“ú (%a)";
+
+Calendar._TT["WK"] = "T";
diff --git a/skins/jscalendar/lang/calendar-ko-utf8.js b/skins/jscalendar/lang/calendar-ko-utf8.js
new file mode 100644
index 0000000..d71687a
--- /dev/null
+++ b/skins/jscalendar/lang/calendar-ko-utf8.js
@@ -0,0 +1,120 @@
+// ** I18N
+
+// Calendar EN language
+// Author: Mihai Bazon, <mishoo@infoiasi.ro>
+// Translation: Yourim Yi <yyi@yourim.net>
+// Encoding: EUC-KR
+// lang : ko
+// Distributed under the same terms as the calendar itself.
+
+// For translators: please use UTF-8 if possible.  We strongly believe that
+// Unicode is the answer to a real internationalized world.  Also please
+// include your contact information in the header, as can be seen above.
+
+// full day names
+
+Calendar._DN = new Array
+("일요일",
+ "월요일",
+ "화요일",
+ "수요일",
+ "목요일",
+ "금요일",
+ "토요일",
+ "일요일");
+
+// Please note that the following array of short day names (and the same goes
+// for short month names, _SMN) isn't absolutely necessary.  We give it here
+// for exemplification on how one can customize the short day names, but if
+// they are simply the first N letters of the full name you can simply say:
+//
+//   Calendar._SDN_len = N; // short day name length
+//   Calendar._SMN_len = N; // short month name length
+//
+// If N = 3 then this is not needed either since we assume a value of 3 if not
+// present, to be compatible with translation files that were written before
+// this feature.
+
+// short day names
+Calendar._SDN = new Array
+("일",
+ "월",
+ "화",
+ "수",
+ "목",
+ "금",
+ "토",
+ "일");
+
+// full month names
+Calendar._MN = new Array
+("1월",
+ "2월",
+ "3월",
+ "4월",
+ "5월",
+ "6월",
+ "7월",
+ "8월",
+ "9월",
+ "10월",
+ "11월",
+ "12월");
+
+// short month names
+Calendar._SMN = new Array
+("1",
+ "2",
+ "3",
+ "4",
+ "5",
+ "6",
+ "7",
+ "8",
+ "9",
+ "10",
+ "11",
+ "12");
+
+// tooltips
+Calendar._TT = {};
+Calendar._TT["INFO"] = "calendar 에 대해서";
+
+Calendar._TT["ABOUT"] =
+"DHTML Date/Time Selector\n" +
+"(c) dynarch.com 2002-2003\n" + // don't translate this this ;-)
+"\n"+
+"최신 버전을 받으시려면 http://dynarch.com/mishoo/calendar.epl 에 방문하세요\n" +
+"\n"+
+"GNU LGPL 라이센스로 배포됩니다. \n"+
+"라이센스에 대한 자세한 내용은 http://gnu.org/licenses/lgpl.html 을 읽으세요." +
+"\n\n" +
+"날짜 선택:\n" +
+"- 연도를 선택하려면 \xab, \xbb 버튼을 사용합니다\n" +
+"- 달을 선택하려면 " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " 버튼을 누르세요\n" +
+"- 계속 누르고 있으면 위 값들을 빠르게 선택하실 수 있습니다.";
+Calendar._TT["ABOUT_TIME"] = "\n\n" +
+"시간 선택:\n" +
+"- 마우스로 누르면 시간이 증가합니다\n" +
+"- Shift 키와 함께 누르면 감소합니다\n" +
+"- 누른 상태에서 마우스를 움직이면 좀 더 빠르게 값이 변합니다.\n";
+
+Calendar._TT["PREV_YEAR"] = "지난 해 (길게 누르면 목록)";
+Calendar._TT["PREV_MONTH"] = "지난 달 (길게 누르면 목록)";
+Calendar._TT["GO_TODAY"] = "오늘 날짜로";
+Calendar._TT["NEXT_MONTH"] = "다음 달 (길게 누르면 목록)";
+Calendar._TT["NEXT_YEAR"] = "다음 해 (길게 누르면 목록)";
+Calendar._TT["SEL_DATE"] = "날짜를 선택하세요";
+Calendar._TT["DRAG_TO_MOVE"] = "마우스 드래그로 이동 하세요";
+Calendar._TT["PART_TODAY"] = " (오늘)";
+Calendar._TT["MON_FIRST"] = "월요일을 한 주의 시작 요일로";
+Calendar._TT["SUN_FIRST"] = "일요일을 한 주의 시작 요일로";
+Calendar._TT["CLOSE"] = "닫기";
+Calendar._TT["TODAY"] = "오늘";
+Calendar._TT["TIME_PART"] = "(Shift-)클릭 또는 드래그 하세요";
+
+// date formats
+Calendar._TT["DEF_DATE_FORMAT"] = "%Y-%m-%d";
+Calendar._TT["TT_DATE_FORMAT"] = "%b/%e [%a]";
+
+Calendar._TT["WK"] = "주";
diff --git a/skins/jscalendar/lang/calendar-ko.js b/skins/jscalendar/lang/calendar-ko.js
new file mode 100644
index 0000000..b845aa5
--- /dev/null
+++ b/skins/jscalendar/lang/calendar-ko.js
@@ -0,0 +1,120 @@
+// ** I18N
+
+// Calendar EN language
+// Author: Mihai Bazon, <mishoo@infoiasi.ro>
+// Translation: Yourim Yi <yyi@yourim.net>
+// Encoding: EUC-KR
+// lang : ko
+// Distributed under the same terms as the calendar itself.
+
+// For translators: please use UTF-8 if possible.  We strongly believe that
+// Unicode is the answer to a real internationalized world.  Also please
+// include your contact information in the header, as can be seen above.
+
+// full day names
+
+Calendar._DN = new Array
+("ÀÏ¿äÀÏ",
+ "¿ù¿äÀÏ",
+ "È­¿äÀÏ",
+ "¼ö¿äÀÏ",
+ "¸ñ¿äÀÏ",
+ "±Ý¿äÀÏ",
+ "Åä¿äÀÏ",
+ "ÀÏ¿äÀÏ");
+
+// Please note that the following array of short day names (and the same goes
+// for short month names, _SMN) isn't absolutely necessary.  We give it here
+// for exemplification on how one can customize the short day names, but if
+// they are simply the first N letters of the full name you can simply say:
+//
+//   Calendar._SDN_len = N; // short day name length
+//   Calendar._SMN_len = N; // short month name length
+//
+// If N = 3 then this is not needed either since we assume a value of 3 if not
+// present, to be compatible with translation files that were written before
+// this feature.
+
+// short day names
+Calendar._SDN = new Array
+("ÀÏ",
+ "¿ù",
+ "È­",
+ "¼ö",
+ "¸ñ",
+ "±Ý",
+ "Åä",
+ "ÀÏ");
+
+// full month names
+Calendar._MN = new Array
+("1¿ù",
+ "2¿ù",
+ "3¿ù",
+ "4¿ù",
+ "5¿ù",
+ "6¿ù",
+ "7¿ù",
+ "8¿ù",
+ "9¿ù",
+ "10¿ù",
+ "11¿ù",
+ "12¿ù");
+
+// short month names
+Calendar._SMN = new Array
+("1",
+ "2",
+ "3",
+ "4",
+ "5",
+ "6",
+ "7",
+ "8",
+ "9",
+ "10",
+ "11",
+ "12");
+
+// tooltips
+Calendar._TT = {};
+Calendar._TT["INFO"] = "calendar ¿¡ ´ëÇؼ­";
+
+Calendar._TT["ABOUT"] =
+"DHTML Date/Time Selector\n" +
+"(c) dynarch.com 2002-2003\n" + // don't translate this this ;-)
+"\n"+
+"ÃֽŠ¹öÀüÀ» ¹ÞÀ¸½Ã·Á¸é http://dynarch.com/mishoo/calendar.epl ¿¡ ¹æ¹®Çϼ¼¿ä\n" +
+"\n"+
+"GNU LGPL ¶óÀ̼¾½º·Î ¹èÆ÷µË´Ï´Ù. \n"+
+"¶óÀ̼¾½º¿¡ ´ëÇÑ ÀÚ¼¼ÇÑ ³»¿ëÀº http://gnu.org/licenses/lgpl.html À» ÀÐÀ¸¼¼¿ä." +
+"\n\n" +
+"³¯Â¥ ¼±ÅÃ:\n" +
+"- ¿¬µµ¸¦ ¼±ÅÃÇÏ·Á¸é \xab, \xbb ¹öÆ°À» »ç¿ëÇÕ´Ï´Ù\n" +
+"- ´ÞÀ» ¼±ÅÃÇÏ·Á¸é " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " ¹öÆ°À» ´©¸£¼¼¿ä\n" +
+"- °è¼Ó ´©¸£°í ÀÖÀ¸¸é À§ °ªµéÀ» ºü¸£°Ô ¼±ÅÃÇÏ½Ç ¼ö ÀÖ½À´Ï´Ù.";
+Calendar._TT["ABOUT_TIME"] = "\n\n" +
+"½Ã°£ ¼±ÅÃ:\n" +
+"- ¸¶¿ì½º·Î ´©¸£¸é ½Ã°£ÀÌ Áõ°¡ÇÕ´Ï´Ù\n" +
+"- Shift Å°¿Í ÇÔ²² ´©¸£¸é °¨¼ÒÇÕ´Ï´Ù\n" +
+"- ´©¸¥ »óÅ¿¡¼­ ¸¶¿ì½º¸¦ ¿òÁ÷À̸é Á» ´õ ºü¸£°Ô °ªÀÌ º¯ÇÕ´Ï´Ù.\n";
+
+Calendar._TT["PREV_YEAR"] = "Áö³­ ÇØ (±æ°Ô ´©¸£¸é ¸ñ·Ï)";
+Calendar._TT["PREV_MONTH"] = "Áö³­ ´Þ (±æ°Ô ´©¸£¸é ¸ñ·Ï)";
+Calendar._TT["GO_TODAY"] = "¿À´Ã ³¯Â¥·Î";
+Calendar._TT["NEXT_MONTH"] = "´ÙÀ½ ´Þ (±æ°Ô ´©¸£¸é ¸ñ·Ï)";
+Calendar._TT["NEXT_YEAR"] = "´ÙÀ½ ÇØ (±æ°Ô ´©¸£¸é ¸ñ·Ï)";
+Calendar._TT["SEL_DATE"] = "³¯Â¥¸¦ ¼±ÅÃÇϼ¼¿ä";
+Calendar._TT["DRAG_TO_MOVE"] = "¸¶¿ì½º µå·¡±×·Î À̵¿ Çϼ¼¿ä";
+Calendar._TT["PART_TODAY"] = " (¿À´Ã)";
+Calendar._TT["MON_FIRST"] = "¿ù¿äÀÏÀ» ÇÑ ÁÖÀÇ ½ÃÀÛ ¿äÀÏ·Î";
+Calendar._TT["SUN_FIRST"] = "ÀÏ¿äÀÏÀ» ÇÑ ÁÖÀÇ ½ÃÀÛ ¿äÀÏ·Î";
+Calendar._TT["CLOSE"] = "´Ý±â";
+Calendar._TT["TODAY"] = "¿À´Ã";
+Calendar._TT["TIME_PART"] = "(Shift-)Ŭ¸¯ ¶Ç´Â µå·¡±× Çϼ¼¿ä";
+
+// date formats
+Calendar._TT["DEF_DATE_FORMAT"] = "%Y-%m-%d";
+Calendar._TT["TT_DATE_FORMAT"] = "%b/%e [%a]";
+
+Calendar._TT["WK"] = "ÁÖ";
diff --git a/skins/jscalendar/lang/calendar-lt-utf8.js b/skins/jscalendar/lang/calendar-lt-utf8.js
new file mode 100644
index 0000000..c3dca8d
--- /dev/null
+++ b/skins/jscalendar/lang/calendar-lt-utf8.js
@@ -0,0 +1,114 @@
+// ** I18N
+
+// Calendar LT language
+// Author: Martynas Majeris, <martynas@solmetra.lt>
+// Encoding: UTF-8
+// Distributed under the same terms as the calendar itself.
+
+// For translators: please use UTF-8 if possible.  We strongly believe that
+// Unicode is the answer to a real internationalized world.  Also please
+// include your contact information in the header, as can be seen above.
+
+// full day names
+Calendar._DN = new Array
+("Sekmadienis",
+ "Pirmadienis",
+ "Antradienis",
+ "Trečiadienis",
+ "Ketvirtadienis",
+ "Pentadienis",
+ "Šeštadienis",
+ "Sekmadienis");
+
+// Please note that the following array of short day names (and the same goes
+// for short month names, _SMN) isn't absolutely necessary.  We give it here
+// for exemplification on how one can customize the short day names, but if
+// they are simply the first N letters of the full name you can simply say:
+//
+//   Calendar._SDN_len = N; // short day name length
+//   Calendar._SMN_len = N; // short month name length
+//
+// If N = 3 then this is not needed either since we assume a value of 3 if not
+// present, to be compatible with translation files that were written before
+// this feature.
+
+// short day names
+Calendar._SDN = new Array
+("Sek",
+ "Pir",
+ "Ant",
+ "Tre",
+ "Ket",
+ "Pen",
+ "Šeš",
+ "Sek");
+
+// full month names
+Calendar._MN = new Array
+("Sausis",
+ "Vasaris",
+ "Kovas",
+ "Balandis",
+ "Gegužė",
+ "Birželis",
+ "Liepa",
+ "Rugpjūtis",
+ "Rugsėjis",
+ "Spalis",
+ "Lapkritis",
+ "Gruodis");
+
+// short month names
+Calendar._SMN = new Array
+("Sau",
+ "Vas",
+ "Kov",
+ "Bal",
+ "Geg",
+ "Bir",
+ "Lie",
+ "Rgp",
+ "Rgs",
+ "Spa",
+ "Lap",
+ "Gru");
+
+// tooltips
+Calendar._TT = {};
+Calendar._TT["INFO"] = "Apie kalendorių";
+
+Calendar._TT["ABOUT"] =
+"DHTML Date/Time Selector\n" +
+"(c) dynarch.com 2002-2003\n" + // don't translate this this ;-)
+"Naujausią versiją rasite: http://dynarch.com/mishoo/calendar.epl\n" +
+"Platinamas pagal GNU LGPL licenciją. Aplankykite http://gnu.org/licenses/lgpl.html" +
+"\n\n" +
+"Datos pasirinkimas:\n" +
+"- Metų pasirinkimas: \xab, \xbb\n" +
+"- Mėnesio pasirinkimas: " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + "\n" +
+"- Nuspauskite ir laikykite pelės klavišą greitesniam pasirinkimui.";
+Calendar._TT["ABOUT_TIME"] = "\n\n" +
+"Laiko pasirinkimas:\n" +
+"- Spustelkite ant valandų arba minučių - skaičius padidės vienetu.\n" +
+"- Jei spausite kartu su Shift, skaičius sumažės.\n" +
+"- Greitam pasirinkimui spustelkite ir pajudinkite pelę.";
+
+Calendar._TT["PREV_YEAR"] = "Ankstesni metai (laikykite, jei norite meniu)";
+Calendar._TT["PREV_MONTH"] = "Ankstesnis mėnuo (laikykite, jei norite meniu)";
+Calendar._TT["GO_TODAY"] = "Pasirinkti šiandieną";
+Calendar._TT["NEXT_MONTH"] = "Kitas mėnuo (laikykite, jei norite meniu)";
+Calendar._TT["NEXT_YEAR"] = "Kiti metai (laikykite, jei norite meniu)";
+Calendar._TT["SEL_DATE"] = "Pasirinkite datą";
+Calendar._TT["DRAG_TO_MOVE"] = "Tempkite";
+Calendar._TT["PART_TODAY"] = " (Å¡iandien)";
+Calendar._TT["MON_FIRST"] = "Pirma savaitės diena - pirmadienis";
+Calendar._TT["SUN_FIRST"] = "Pirma savaitės diena - sekmadienis";
+Calendar._TT["CLOSE"] = "Uždaryti";
+Calendar._TT["TODAY"] = "Å iandien";
+Calendar._TT["TIME_PART"] = "Spustelkite arba tempkite jei norite pakeisti";
+
+// date formats
+Calendar._TT["DEF_DATE_FORMAT"] = "%Y-%m-%d";
+Calendar._TT["TT_DATE_FORMAT"] = "%A, %Y-%m-%d";
+
+Calendar._TT["WK"] = "sav";
diff --git a/skins/jscalendar/lang/calendar-lt.js b/skins/jscalendar/lang/calendar-lt.js
new file mode 100644
index 0000000..1b614b8
--- /dev/null
+++ b/skins/jscalendar/lang/calendar-lt.js
@@ -0,0 +1,114 @@
+// ** I18N
+
+// Calendar LT language
+// Author: Martynas Majeris, <martynas@solmetra.lt>
+// Encoding: Windows-1257
+// Distributed under the same terms as the calendar itself.
+
+// For translators: please use UTF-8 if possible.  We strongly believe that
+// Unicode is the answer to a real internationalized world.  Also please
+// include your contact information in the header, as can be seen above.
+
+// full day names
+Calendar._DN = new Array
+("Sekmadienis",
+ "Pirmadienis",
+ "Antradienis",
+ "Treèiadienis",
+ "Ketvirtadienis",
+ "Pentadienis",
+ "Ðeðtadienis",
+ "Sekmadienis");
+
+// Please note that the following array of short day names (and the same goes
+// for short month names, _SMN) isn't absolutely necessary.  We give it here
+// for exemplification on how one can customize the short day names, but if
+// they are simply the first N letters of the full name you can simply say:
+//
+//   Calendar._SDN_len = N; // short day name length
+//   Calendar._SMN_len = N; // short month name length
+//
+// If N = 3 then this is not needed either since we assume a value of 3 if not
+// present, to be compatible with translation files that were written before
+// this feature.
+
+// short day names
+Calendar._SDN = new Array
+("Sek",
+ "Pir",
+ "Ant",
+ "Tre",
+ "Ket",
+ "Pen",
+ "Ðeð",
+ "Sek");
+
+// full month names
+Calendar._MN = new Array
+("Sausis",
+ "Vasaris",
+ "Kovas",
+ "Balandis",
+ "Geguþë",
+ "Birþelis",
+ "Liepa",
+ "Rugpjûtis",
+ "Rugsëjis",
+ "Spalis",
+ "Lapkritis",
+ "Gruodis");
+
+// short month names
+Calendar._SMN = new Array
+("Sau",
+ "Vas",
+ "Kov",
+ "Bal",
+ "Geg",
+ "Bir",
+ "Lie",
+ "Rgp",
+ "Rgs",
+ "Spa",
+ "Lap",
+ "Gru");
+
+// tooltips
+Calendar._TT = {};
+Calendar._TT["INFO"] = "Apie kalendoriø";
+
+Calendar._TT["ABOUT"] =
+"DHTML Date/Time Selector\n" +
+"(c) dynarch.com 2002-2003\n" + // don't translate this this ;-)
+"Naujausià versijà rasite: http://dynarch.com/mishoo/calendar.epl\n" +
+"Platinamas pagal GNU LGPL licencijà. Aplankykite http://gnu.org/licenses/lgpl.html" +
+"\n\n" +
+"Datos pasirinkimas:\n" +
+"- Metø pasirinkimas: \xab, \xbb\n" +
+"- Mënesio pasirinkimas: " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + "\n" +
+"- Nuspauskite ir laikykite pelës klaviðà greitesniam pasirinkimui.";
+Calendar._TT["ABOUT_TIME"] = "\n\n" +
+"Laiko pasirinkimas:\n" +
+"- Spustelkite ant valandø arba minuèiø - skaièus padidës vienetu.\n" +
+"- Jei spausite kartu su Shift, skaièius sumaþës.\n" +
+"- Greitam pasirinkimui spustelkite ir pajudinkite pelæ.";
+
+Calendar._TT["PREV_YEAR"] = "Ankstesni metai (laikykite, jei norite meniu)";
+Calendar._TT["PREV_MONTH"] = "Ankstesnis mënuo (laikykite, jei norite meniu)";
+Calendar._TT["GO_TODAY"] = "Pasirinkti ðiandienà";
+Calendar._TT["NEXT_MONTH"] = "Kitas mënuo (laikykite, jei norite meniu)";
+Calendar._TT["NEXT_YEAR"] = "Kiti metai (laikykite, jei norite meniu)";
+Calendar._TT["SEL_DATE"] = "Pasirinkite datà";
+Calendar._TT["DRAG_TO_MOVE"] = "Tempkite";
+Calendar._TT["PART_TODAY"] = " (ðiandien)";
+Calendar._TT["MON_FIRST"] = "Pirma savaitës diena - pirmadienis";
+Calendar._TT["SUN_FIRST"] = "Pirma savaitës diena - sekmadienis";
+Calendar._TT["CLOSE"] = "Uþdaryti";
+Calendar._TT["TODAY"] = "Ðiandien";
+Calendar._TT["TIME_PART"] = "Spustelkite arba tempkite jei norite pakeisti";
+
+// date formats
+Calendar._TT["DEF_DATE_FORMAT"] = "%Y-%m-%d";
+Calendar._TT["TT_DATE_FORMAT"] = "%A, %Y-%m-%d";
+
+Calendar._TT["WK"] = "sav";
diff --git a/skins/jscalendar/lang/calendar-nl.js b/skins/jscalendar/lang/calendar-nl.js
new file mode 100644
index 0000000..2ddc68b
--- /dev/null
+++ b/skins/jscalendar/lang/calendar-nl.js
@@ -0,0 +1,45 @@
+// ** I18N
+Calendar._DN = new Array
+("Zondag",
+ "Maandag",
+ "Dinsdag",
+ "Woensdag",
+ "Donderdag",
+ "Vrijdag",
+ "Zaterdag",
+ "Zondag");
+Calendar._MN = new Array
+("Januari",
+ "Februari",
+ "Maart",
+ "April",
+ "Mei",
+ "Juni",
+ "Juli",
+ "Augustus",
+ "September",
+ "Oktober",
+ "November",
+ "December");
+
+// tooltips
+Calendar._TT = {};
+Calendar._TT["TOGGLE"] = "Selecteer de eerste week-dag";
+Calendar._TT["PREV_YEAR"] = "Vorig jaar (ingedrukt voor menu)";
+Calendar._TT["PREV_MONTH"] = "Vorige maand (ingedrukt voor menu)";
+Calendar._TT["GO_TODAY"] = "Ga naar Vandaag";
+Calendar._TT["NEXT_MONTH"] = "Volgende maand (ingedrukt voor menu)";
+Calendar._TT["NEXT_YEAR"] = "Volgend jaar (ingedrukt voor menu)";
+Calendar._TT["SEL_DATE"] = "Selecteer datum";
+Calendar._TT["DRAG_TO_MOVE"] = "Klik en sleep om te verplaatsen";
+Calendar._TT["PART_TODAY"] = " (vandaag)";
+Calendar._TT["MON_FIRST"] = "Toon Maandag eerst";
+Calendar._TT["SUN_FIRST"] = "Toon Zondag eerst";
+Calendar._TT["CLOSE"] = "Sluiten";
+Calendar._TT["TODAY"] = "Vandaag";
+
+// date formats
+Calendar._TT["DEF_DATE_FORMAT"] = "dd-mm-y";
+Calendar._TT["TT_DATE_FORMAT"] = "DD, d MM";
+
+Calendar._TT["WK"] = "wk";
diff --git a/skins/jscalendar/lang/calendar-no.js b/skins/jscalendar/lang/calendar-no.js
new file mode 100644
index 0000000..3325e34
--- /dev/null
+++ b/skins/jscalendar/lang/calendar-no.js
@@ -0,0 +1,45 @@
+// ** I18N
+Calendar._DN = new Array
+("Søndag",
+ "Mandag",
+ "Tirsdag",
+ "Onsdag",
+ "Torsdag",
+ "Fredag",
+ "Lørdag",
+ "Søndag");
+Calendar._MN = new Array
+("Januar",
+ "Februar",
+ "Mars",
+ "April",
+ "Mai",
+ "Juni",
+ "Juli",
+ "August",
+ "September",
+ "Oktober",
+ "November",
+ "Desember");
+
+// tooltips
+Calendar._TT = {};
+Calendar._TT["TOGGLE"] = "Skift første ukedag";
+Calendar._TT["PREV_YEAR"] = "Et år tilbake (hold for meny)";
+Calendar._TT["PREV_MONTH"] = "En måned tilbake (hold for meny)";
+Calendar._TT["GO_TODAY"] = "Gå til i dag";
+Calendar._TT["NEXT_MONTH"] = "En måned fram (hold for meny)";
+Calendar._TT["NEXT_YEAR"] = "Et år fram (hold for meny)";
+Calendar._TT["SEL_DATE"] = "Velg dag";
+Calendar._TT["DRAG_TO_MOVE"] = "Dra vinduet";
+Calendar._TT["PART_TODAY"] = " (i dag)";
+Calendar._TT["MON_FIRST"] = "Vis mandag først";
+Calendar._TT["SUN_FIRST"] = "Vis søndag først";
+Calendar._TT["CLOSE"] = "Lukk vinduet";
+Calendar._TT["TODAY"] = "I dag";
+
+// date formats
+Calendar._TT["DEF_DATE_FORMAT"] = "y-mm-dd";
+Calendar._TT["TT_DATE_FORMAT"] = "D d. M, y";
+
+Calendar._TT["WK"] = "wk";
diff --git a/skins/jscalendar/lang/calendar-pl-utf8.js b/skins/jscalendar/lang/calendar-pl-utf8.js
new file mode 100644
index 0000000..819281f
--- /dev/null
+++ b/skins/jscalendar/lang/calendar-pl-utf8.js
@@ -0,0 +1,93 @@
+// ** I18N
+
+// Calendar PL language
+// Author: Dariusz Pietrzak, <eyck@ghost.anime.pl>
+// Author: Janusz Piwowarski, <jpiw@go2.pl>
+// Encoding: utf-8
+// Distributed under the same terms as the calendar itself.
+
+Calendar._DN = new Array
+("Niedziela",
+ "Poniedziałek",
+ "Wtorek",
+ "Środa",
+ "Czwartek",
+ "Piątek",
+ "Sobota",
+ "Niedziela");
+Calendar._SDN = new Array
+("Nie",
+ "Pn",
+ "Wt",
+ "Śr",
+ "Cz",
+ "Pt",
+ "So",
+ "Nie");
+Calendar._MN = new Array
+("Styczeń",
+ "Luty",
+ "Marzec",
+ "Kwiecień",
+ "Maj",
+ "Czerwiec",
+ "Lipiec",
+ "Sierpień",
+ "Wrzesień",
+ "Październik",
+ "Listopad",
+ "Grudzień");
+Calendar._SMN = new Array
+("Sty",
+ "Lut",
+ "Mar",
+ "Kwi",
+ "Maj",
+ "Cze",
+ "Lip",
+ "Sie",
+ "Wrz",
+ "Paź",
+ "Lis",
+ "Gru");
+
+// tooltips
+Calendar._TT = {};
+Calendar._TT["INFO"] = "O kalendarzu";
+
+Calendar._TT["ABOUT"] =
+"DHTML Date/Time Selector\n" +
+"(c) dynarch.com 2002-2003\n" + // don't translate this this ;-)
+"Aby pobrać najnowszą wersję, odwiedź: http://dynarch.com/mishoo/calendar.epl\n" +
+"Dostępny na licencji GNU LGPL. Zobacz szczegóły na http://gnu.org/licenses/lgpl.html." +
+"\n\n" +
+"Wybór daty:\n" +
+"- Użyj przycisków \xab, \xbb by wybrać rok\n" +
+"- Użyj przycisków " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " by wybrać miesiąc\n" +
+"- Przytrzymaj klawisz myszy nad jednym z powyższych przycisków dla szybszego wyboru.";
+Calendar._TT["ABOUT_TIME"] = "\n\n" +
+"Wybór czasu:\n" +
+"- Kliknij na jednym z pól czasu by zwiększyć jego wartość\n" +
+"- lub kliknij trzymając Shift by zmiejszyć jego wartość\n" +
+"- lub kliknij i przeciągnij dla szybszego wyboru.";
+
+//Calendar._TT["TOGGLE"] = "Zmień pierwszy dzień tygodnia";
+Calendar._TT["PREV_YEAR"] = "Poprzedni rok (przytrzymaj dla menu)";
+Calendar._TT["PREV_MONTH"] = "Poprzedni miesiąc (przytrzymaj dla menu)";
+Calendar._TT["GO_TODAY"] = "Idź do dzisiaj";
+Calendar._TT["NEXT_MONTH"] = "Następny miesiąc (przytrzymaj dla menu)";
+Calendar._TT["NEXT_YEAR"] = "Następny rok (przytrzymaj dla menu)";
+Calendar._TT["SEL_DATE"] = "Wybierz datę";
+Calendar._TT["DRAG_TO_MOVE"] = "Przeciągnij by przesunąć";
+Calendar._TT["PART_TODAY"] = " (dzisiaj)";
+Calendar._TT["MON_FIRST"] = "Wyświetl poniedziałek jako pierwszy";
+Calendar._TT["SUN_FIRST"] = "Wyświetl niedzielę jako pierwszą";
+Calendar._TT["CLOSE"] = "Zamknij";
+Calendar._TT["TODAY"] = "Dzisiaj";
+Calendar._TT["TIME_PART"] = "(Shift-)Kliknij lub przeciągnij by zmienić wartość";
+
+// date formats
+Calendar._TT["DEF_DATE_FORMAT"] = "%Y-%m-%d";
+Calendar._TT["TT_DATE_FORMAT"] = "%e %B, %A";
+
+Calendar._TT["WK"] = "ty";
diff --git a/skins/jscalendar/lang/calendar-pl.js b/skins/jscalendar/lang/calendar-pl.js
new file mode 100644
index 0000000..c753842
--- /dev/null
+++ b/skins/jscalendar/lang/calendar-pl.js
@@ -0,0 +1,56 @@
+// ** I18N
+// Calendar PL language
+// Author: Artur Filipiak, <imagen@poczta.fm>
+// January, 2004
+// Encoding: UTF-8
+Calendar._DN = new Array
+("Niedziela", "Poniedziałek", "Wtorek", "Środa", "Czwartek", "Piątek", "Sobota", "Niedziela");
+
+Calendar._SDN = new Array
+("N", "Pn", "Wt", "Śr", "Cz", "Pt", "So", "N");
+
+Calendar._MN = new Array
+("Styczeń", "Luty", "Marzec", "Kwiecień", "Maj", "Czerwiec", "Lipiec", "Sierpień", "Wrzesień", "Październik", "Listopad", "Grudzień");
+
+Calendar._SMN = new Array
+("Sty", "Lut", "Mar", "Kwi", "Maj", "Cze", "Lip", "Sie", "Wrz", "Paź", "Lis", "Gru");
+
+// tooltips
+Calendar._TT = {};
+Calendar._TT["INFO"] = "O kalendarzu";
+
+Calendar._TT["ABOUT"] =
+"DHTML Date/Time Selector\n" +
+"(c) dynarch.com 2002-2003\n" + // don't translate this this ;-)
+"For latest version visit: http://dynarch.com/mishoo/calendar.epl\n" +
+"Distributed under GNU LGPL.  See http://gnu.org/licenses/lgpl.html for details." +
+"\n\n" +
+"Wybór daty:\n" +
+"- aby wybrać rok użyj przycisków \xab, \xbb\n" +
+"- aby wybrać miesiąc użyj przycisków " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + "\n" +
+"- aby przyspieszyć wybór przytrzymaj wciśnięty przycisk myszy nad ww. przyciskami.";
+Calendar._TT["ABOUT_TIME"] = "\n\n" +
+"Wybór czasu:\n" +
+"- aby zwiększyć wartość kliknij na dowolnym elemencie selekcji czasu\n" +
+"- aby zmniejszyć wartość użyj dodatkowo klawisza Shift\n" +
+"- możesz również poruszać myszkę w lewo i prawo wraz z wciśniętym lewym klawiszem.";
+
+Calendar._TT["PREV_YEAR"] = "Poprz. rok (przytrzymaj dla menu)";
+Calendar._TT["PREV_MONTH"] = "Poprz. miesiąc (przytrzymaj dla menu)";
+Calendar._TT["GO_TODAY"] = "Pokaż dziś";
+Calendar._TT["NEXT_MONTH"] = "Nast. miesiąc (przytrzymaj dla menu)";
+Calendar._TT["NEXT_YEAR"] = "Nast. rok (przytrzymaj dla menu)";
+Calendar._TT["SEL_DATE"] = "Wybierz datę";
+Calendar._TT["DRAG_TO_MOVE"] = "Przesuń okienko";
+Calendar._TT["PART_TODAY"] = " (dziś)";
+Calendar._TT["MON_FIRST"] = "Pokaż Poniedziałek jako pierwszy";
+Calendar._TT["SUN_FIRST"] = "Pokaż Niedzielę jako pierwszą";
+Calendar._TT["CLOSE"] = "Zamknij";
+Calendar._TT["TODAY"] = "Dziś";
+Calendar._TT["TIME_PART"] = "(Shift-)klik | drag, aby zmienić wartość";
+
+// date formats
+Calendar._TT["DEF_DATE_FORMAT"] = "%Y.%m.%d";
+Calendar._TT["TT_DATE_FORMAT"] = "%a, %b %e";
+
+Calendar._TT["WK"] = "wk";
\ No newline at end of file
diff --git a/skins/jscalendar/lang/calendar-pt.js b/skins/jscalendar/lang/calendar-pt.js
new file mode 100644
index 0000000..1184dfa
--- /dev/null
+++ b/skins/jscalendar/lang/calendar-pt.js
@@ -0,0 +1,45 @@
+// ** I18N
+Calendar._DN = new Array
+("Domingo",
+ "Segunda",
+ "Terça",
+ "Quarta",
+ "Quinta",
+ "Sexta",
+ "Sábado",
+ "Domingo");
+Calendar._MN = new Array
+("Janeiro",
+ "Fevereiro",
+ "Março",
+ "Abril",
+ "Maio",
+ "Junho",
+ "Julho",
+ "Agosto",
+ "Setembro",
+ "Outubro",
+ "Novembro",
+ "Dezembro");
+
+// tooltips
+Calendar._TT = {};
+Calendar._TT["TOGGLE"] = "Trocar o primeiro dia da semana";
+Calendar._TT["PREV_YEAR"] = "Ano Anterior (mantenha para menu)";
+Calendar._TT["PREV_MONTH"] = "Mês Anterior (mantenha para menu)";
+Calendar._TT["GO_TODAY"] = "Ir para hoje";
+Calendar._TT["NEXT_MONTH"] = "Próximo Mês (mantenha para menu)";
+Calendar._TT["NEXT_YEAR"] = "Próximo Ano (mantenha para menu)";
+Calendar._TT["SEL_DATE"] = "Escolha Data";
+Calendar._TT["DRAG_TO_MOVE"] = "Arraste para mover";
+Calendar._TT["PART_TODAY"] = " (hoje)";
+Calendar._TT["MON_FIRST"] = "Mostrar Segunda primeiro";
+Calendar._TT["SUN_FIRST"] = "Mostrar Domingo primeiro";
+Calendar._TT["CLOSE"] = "Fechar";
+Calendar._TT["TODAY"] = "Hoje";
+
+// date formats
+Calendar._TT["DEF_DATE_FORMAT"] = "a-mm-dd";
+Calendar._TT["TT_DATE_FORMAT"] = "D, M d";
+
+Calendar._TT["WK"] = "sm";
diff --git a/skins/jscalendar/lang/calendar-ro.js b/skins/jscalendar/lang/calendar-ro.js
new file mode 100644
index 0000000..f4926f0
--- /dev/null
+++ b/skins/jscalendar/lang/calendar-ro.js
@@ -0,0 +1,66 @@
+// ** I18N
+Calendar._DN = new Array
+("Duminică",
+ "Luni",
+ "Marţi",
+ "Miercuri",
+ "Joi",
+ "Vineri",
+ "Sâmbătă",
+ "Duminică");
+Calendar._SDN_len = 2;
+Calendar._MN = new Array
+("Ianuarie",
+ "Februarie",
+ "Martie",
+ "Aprilie",
+ "Mai",
+ "Iunie",
+ "Iulie",
+ "August",
+ "Septembrie",
+ "Octombrie",
+ "Noiembrie",
+ "Decembrie");
+
+// tooltips
+Calendar._TT = {};
+
+Calendar._TT["INFO"] = "Despre calendar";
+
+Calendar._TT["ABOUT"] =
+"DHTML Date/Time Selector\n" +
+"(c) dynarch.com 2002-2003\n" + // don't translate this this ;-)
+"Pentru ultima versiune vizitaţi: http://dynarch.com/mishoo/calendar.epl\n" +
+"Distribuit sub GNU LGPL.  See http://gnu.org/licenses/lgpl.html for details." +
+"\n\n" +
+"Selecţia datei:\n" +
+"- Folosiţi butoanele \xab, \xbb pentru a selecta anul\n" +
+"- Folosiţi butoanele " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " pentru a selecta luna\n" +
+"- Tineţi butonul mouse-ului apăsat pentru selecţie mai rapidă.";
+Calendar._TT["ABOUT_TIME"] = "\n\n" +
+"Selecţia orei:\n" +
+"- Click pe ora sau minut pentru a mări valoarea cu 1\n" +
+"- Sau Shift-Click pentru a micşora valoarea cu 1\n" +
+"- Sau Click şi drag pentru a selecta mai repede.";
+
+Calendar._TT["PREV_YEAR"] = "Anul precedent (lung pt menu)";
+Calendar._TT["PREV_MONTH"] = "Luna precedentă (lung pt menu)";
+Calendar._TT["GO_TODAY"] = "Data de azi";
+Calendar._TT["NEXT_MONTH"] = "Luna următoare (lung pt menu)";
+Calendar._TT["NEXT_YEAR"] = "Anul următor (lung pt menu)";
+Calendar._TT["SEL_DATE"] = "Selectează data";
+Calendar._TT["DRAG_TO_MOVE"] = "Trage pentru a mişca";
+Calendar._TT["PART_TODAY"] = " (astăzi)";
+Calendar._TT["DAY_FIRST"] = "Afişează %s prima zi";
+Calendar._TT["WEEKEND"] = "0,6";
+Calendar._TT["CLOSE"] = "Închide";
+Calendar._TT["TODAY"] = "Astăzi";
+Calendar._TT["TIME_PART"] = "(Shift-)Click sau drag pentru a selecta";
+
+// date formats
+Calendar._TT["DEF_DATE_FORMAT"] = "%d-%m-%Y";
+Calendar._TT["TT_DATE_FORMAT"] = "%A, %d %B";
+
+Calendar._TT["WK"] = "spt";
+Calendar._TT["TIME"] = "Ora:";
diff --git a/skins/jscalendar/lang/calendar-ru.js b/skins/jscalendar/lang/calendar-ru.js
new file mode 100644
index 0000000..459cec5
--- /dev/null
+++ b/skins/jscalendar/lang/calendar-ru.js
@@ -0,0 +1,45 @@
+// ** I18N
+Calendar._DN = new Array
+("Âîñêðåñåíüå",
+ "Ïîíåäåëüíèê",
+ "Âòîðíèê",
+ "Ñðåäà",
+ "×åòâåðã",
+ "Ïÿòíèöà",
+ "Ñóááîòà",
+ "Âîñêðåñåíüå");
+Calendar._MN = new Array
+("ßíâàðü",
+ "Ôåâðàëü",
+ "Ìàðò",
+ "Àïðåëü",
+ "Ìàé",
+ "Èþíü",
+ "Èþëü",
+ "Àâãóñò",
+ "Ñåíòÿáðü",
+ "Îêòÿáðü",
+ "Íîÿáðü",
+ "Äåêàáðü");
+
+// tooltips
+Calendar._TT = {};
+Calendar._TT["TOGGLE"] = "Ñìåíèòü äåíü íà÷àëà íåäåëè (ÏÍ/ÂÑ)";
+Calendar._TT["PREV_YEAR"] = "Ïðåä. ãîä (óäåðæèâàòü äëÿ ìåíþ)";
+Calendar._TT["PREV_MONTH"] = "Ïðåä. ìåñÿö (óäåðæèâàòü äëÿ ìåíþ)";
+Calendar._TT["GO_TODAY"] = "Íà ñåãîäíÿ";
+Calendar._TT["NEXT_MONTH"] = "Ñëåä. ìåñÿö (óäåðæèâàòü äëÿ ìåíþ)";
+Calendar._TT["NEXT_YEAR"] = "Ñëåä. ãîä (óäåðæèâàòü äëÿ ìåíþ)";
+Calendar._TT["SEL_DATE"] = "Âûáðàòü äàòó";
+Calendar._TT["DRAG_TO_MOVE"] = "Ïåðåòàùèòü";
+Calendar._TT["PART_TODAY"] = " (ñåãîäíÿ)";
+Calendar._TT["MON_FIRST"] = "Ïîêàçàòü ïîíåäåëüíèê ïåðâûì";
+Calendar._TT["SUN_FIRST"] = "Ïîêàçàòü âîñêðåñåíüå ïåðâûì";
+Calendar._TT["CLOSE"] = "Çàêðûòü";
+Calendar._TT["TODAY"] = "Ñåãîäíÿ";
+
+// date formats
+Calendar._TT["DEF_DATE_FORMAT"] = "y-mm-dd";
+Calendar._TT["TT_DATE_FORMAT"] = "D, M d";
+
+Calendar._TT["WK"] = "íåä";
diff --git a/skins/jscalendar/lang/calendar-si.js b/skins/jscalendar/lang/calendar-si.js
new file mode 100644
index 0000000..edde42e
--- /dev/null
+++ b/skins/jscalendar/lang/calendar-si.js
@@ -0,0 +1,94 @@
+/* Slovenian language file for the DHTML Calendar version 0.9.2 
+* Author David Milost <mercy@volja.net>, January 2004.
+* Feel free to use this script under the terms of the GNU Lesser General
+* Public License, as long as you do not remove or alter this notice.
+*/
+ // full day names
+Calendar._DN = new Array
+("Nedelja",
+ "Ponedeljek",
+ "Torek",
+ "Sreda",
+ "Četrtek",
+ "Petek",
+ "Sobota",
+ "Nedelja");
+ // short day names
+ Calendar._SDN = new Array
+("Ned",
+ "Pon",
+ "Tor",
+ "Sre",
+ "Čet",
+ "Pet",
+ "Sob",
+ "Ned");
+// short month names
+Calendar._SMN = new Array
+("Jan",
+ "Feb",
+ "Mar",
+ "Apr",
+ "Maj",
+ "Jun",
+ "Jul",
+ "Avg",
+ "Sep",
+ "Okt",
+ "Nov",
+ "Dec");
+  // full month names
+Calendar._MN = new Array
+("Januar",
+ "Februar",
+ "Marec",
+ "April",
+ "Maj",
+ "Junij",
+ "Julij",
+ "Avgust",
+ "September",
+ "Oktober",
+ "November",
+ "December");
+
+// tooltips
+// tooltips
+Calendar._TT = {};
+Calendar._TT["INFO"] = "O koledarju";
+
+Calendar._TT["ABOUT"] =
+"DHTML Date/Time Selector\n" +
+"(c) dynarch.com 2002-2003\n" + // don't translate this this ;-)
+"Za zadnjo verzijo pojdine na naslov: http://dynarch.com/mishoo/calendar.epl\n" +
+"Distribuirano pod GNU LGPL.  Poglejte http://gnu.org/licenses/lgpl.html za podrobnosti." +
+"\n\n" +
+"Izbor datuma:\n" +
+"- Uporabite \xab, \xbb gumbe za izbor leta\n" +
+"- Uporabite " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " gumbe za izbor meseca\n" +
+"- Zadržite klik na kateremkoli od zgornjih gumbov za hiter izbor.";
+Calendar._TT["ABOUT_TIME"] = "\n\n" +
+"Izbor ćasa:\n" +
+"- Kliknite na katerikoli del ćasa za poveć. le-tega\n" +
+"- ali Shift-click za zmanj. le-tega\n" +
+"- ali kliknite in povlecite za hiter izbor.";
+
+Calendar._TT["TOGGLE"] = "Spremeni dan s katerim se prićne teden";
+Calendar._TT["PREV_YEAR"] = "Predhodnje leto (dolg klik za meni)";
+Calendar._TT["PREV_MONTH"] = "Predhodnji mesec (dolg klik za meni)";
+Calendar._TT["GO_TODAY"] = "Pojdi na tekoći dan";
+Calendar._TT["NEXT_MONTH"] = "Naslednji mesec (dolg klik za meni)";
+Calendar._TT["NEXT_YEAR"] = "Naslednje leto (dolg klik za meni)";
+Calendar._TT["SEL_DATE"] = "Izberite datum";
+Calendar._TT["DRAG_TO_MOVE"] = "Pritisni in povleci za spremembo pozicije";
+Calendar._TT["PART_TODAY"] = " (danes)";
+Calendar._TT["MON_FIRST"] = "Prikaži ponedeljek kot prvi dan";
+Calendar._TT["SUN_FIRST"] = "Prikaži nedeljo kot prvi dan";
+Calendar._TT["CLOSE"] = "Zapri";
+Calendar._TT["TODAY"] = "Danes";
+
+// date formats
+Calendar._TT["DEF_DATE_FORMAT"] = "%Y-%m-%d";
+Calendar._TT["TT_DATE_FORMAT"] = "%a, %b %e";
+
+Calendar._TT["WK"] = "Ted";
\ No newline at end of file
diff --git a/skins/jscalendar/lang/calendar-sk.js b/skins/jscalendar/lang/calendar-sk.js
new file mode 100644
index 0000000..9b2dfc3
--- /dev/null
+++ b/skins/jscalendar/lang/calendar-sk.js
@@ -0,0 +1,99 @@
+// ** I18N
+
+// Calendar SK language
+// Author: Peter Valach (pvalach@gmx.net)
+// Encoding: utf-8
+// Last update: 2003/10/29
+// Distributed under the same terms as the calendar itself.
+
+// full day names
+Calendar._DN = new Array
+("NedeÄľa",
+ "Pondelok",
+ "Utorok",
+ "Streda",
+ "Ĺ tvrtok",
+ "Piatok",
+ "Sobota",
+ "NedeÄľa");
+
+// short day names
+Calendar._SDN = new Array
+("Ned",
+ "Pon",
+ "Uto",
+ "Str",
+ "Ĺ tv",
+ "Pia",
+ "Sob",
+ "Ned");
+
+// full month names
+Calendar._MN = new Array
+("Január",
+ "Február",
+ "Marec",
+ "AprĂ­l",
+ "Máj",
+ "JĂşn",
+ "JĂşl",
+ "August",
+ "September",
+ "OktĂłber",
+ "November",
+ "December");
+
+// short month names
+Calendar._SMN = new Array
+("Jan",
+ "Feb",
+ "Mar",
+ "Apr",
+ "Máj",
+ "JĂşn",
+ "JĂşl",
+ "Aug",
+ "Sep",
+ "Okt",
+ "Nov",
+ "Dec");
+
+// tooltips
+Calendar._TT = {};
+Calendar._TT["INFO"] = "O kalendári";
+
+Calendar._TT["ABOUT"] =
+"DHTML Date/Time Selector\n" +
+"(c) dynarch.com 2002-2003\n" +
+"Poslednú verziu nájdete na: http://dynarch.com/mishoo/calendar.epl\n" +
+"Distribuované pod GNU LGPL.  Viď http://gnu.org/licenses/lgpl.html pre detaily." +
+"\n\n" +
+"Výber dátumu:\n" +
+"- Použite tlačidlá \xab, \xbb pre výber roku\n" +
+"- Použite tlačidlá " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " pre výber mesiaca\n" +
+"- Ak ktorékoľvek z týchto tlačidiel podržíte dlhšie, zobrazí sa rýchly výber.";
+Calendar._TT["ABOUT_TIME"] = "\n\n" +
+"Výber času:\n" +
+"- Kliknutie na niektorú položku času ju zvýši\n" +
+"- Shift-klik ju znĂ­Ĺľi\n" +
+"- Ak podržíte tlačítko stlačené, posúvaním meníte hodnotu.";
+
+Calendar._TT["PREV_YEAR"] = "Predošlý rok (podržte pre menu)";
+Calendar._TT["PREV_MONTH"] = "Predošlý mesiac (podržte pre menu)";
+Calendar._TT["GO_TODAY"] = "Prejsť na dnešok";
+Calendar._TT["NEXT_MONTH"] = "Nasl. mesiac (podrĹľte pre menu)";
+Calendar._TT["NEXT_YEAR"] = "Nasl. rok (podrĹľte pre menu)";
+Calendar._TT["SEL_DATE"] = "Zvoľte dátum";
+Calendar._TT["DRAG_TO_MOVE"] = "PodrĹľanĂ­m tlaÄŤĂ­tka zmenĂ­te polohu";
+Calendar._TT["PART_TODAY"] = " (dnes)";
+Calendar._TT["MON_FIRST"] = "ZobraziĹĄ pondelok ako prvĂ˝";
+Calendar._TT["SUN_FIRST"] = "ZobraziĹĄ nedeÄľu ako prvĂş";
+Calendar._TT["CLOSE"] = "ZavrieĹĄ";
+Calendar._TT["TODAY"] = "Dnes";
+Calendar._TT["TIME_PART"] = "(Shift-)klik/ĹĄahanie zmenĂ­ hodnotu";
+
+// date formats
+Calendar._TT["DEF_DATE_FORMAT"] = "$d. %m. %Y";
+Calendar._TT["TT_DATE_FORMAT"] = "%a, %e. %b";
+
+Calendar._TT["WK"] = "týž";
diff --git a/skins/jscalendar/lang/calendar-sp.js b/skins/jscalendar/lang/calendar-sp.js
new file mode 100644
index 0000000..2937a30
--- /dev/null
+++ b/skins/jscalendar/lang/calendar-sp.js
@@ -0,0 +1,63 @@
+// ** I18N
+Calendar._DN = new Array
+("Domingo",
+ "Lunes",
+ "Martes",
+ "Miercoles",
+ "Jueves",
+ "Viernes",
+ "Sabado",
+ "Domingo");
+Calendar._MN = new Array
+("Enero",
+ "Febrero",
+ "Marzo",
+ "Abril",
+ "Mayo",
+ "Junio",
+ "Julio",
+ "Agosto",
+ "Septiembre",
+ "Octubre",
+ "Noviembre",
+ "Diciembre");
+
+// tooltips
+Calendar._TT = {};
+Calendar._TT["INFO"] = "Información del Calendario";
+
+Calendar._TT["ABOUT"] =
+"DHTML Date/Time Selector\n" +
+"(c) dynarch.com 2002-2003\n" + // don't translate this this ;-)
+"Nuevas versiones en: http://dynarch.com/mishoo/calendar.epl\n" +
+"Distribuida bajo licencia GNU LGPL.  Para detalles vea http://gnu.org/licenses/lgpl.html ." +
+"\n\n" +
+"Selección de Fechas:\n" +
+"- Use  \xab, \xbb para seleccionar el año\n" +
+"- Use " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " para seleccionar el mes\n" +
+"- Mantenga presionado el botón del ratón en cualquiera de las opciones superiores para un acceso rapido .";
+Calendar._TT["ABOUT_TIME"] = "\n\n" +
+"Selección del Reloj:\n" +
+"- Seleccione la hora para cambiar el reloj\n" +
+"- o presione  Shift-click para disminuirlo\n" +
+"- o presione click y arrastre del ratón para una selección rapida.";
+
+Calendar._TT["TOGGLE"] = "Primer dia de la semana";
+Calendar._TT["PREV_YEAR"] = "Año anterior (Presione para menu)";
+Calendar._TT["PREV_MONTH"] = "Mes Anterior (Presione para menu)";
+Calendar._TT["GO_TODAY"] = "Ir a Hoy";
+Calendar._TT["NEXT_MONTH"] = "Mes Siguiente (Presione para menu)";
+Calendar._TT["NEXT_YEAR"] = "Año Siguiente (Presione para menu)";
+Calendar._TT["SEL_DATE"] = "Seleccione fecha";
+Calendar._TT["DRAG_TO_MOVE"] = "Arrastre y mueva";
+Calendar._TT["PART_TODAY"] = " (Hoy)";
+Calendar._TT["MON_FIRST"] = "Lunes Primero";
+Calendar._TT["SUN_FIRST"] = "Domingo Primero";
+Calendar._TT["CLOSE"] = "Cerrar";
+Calendar._TT["TODAY"] = "Hoy";
+
+// date formats
+Calendar._TT["DEF_DATE_FORMAT"] = "dd-mm-yy";
+Calendar._TT["TT_DATE_FORMAT"] = "%A, %e de %B de %Y";
+
+Calendar._TT["WK"] = "Smn";
diff --git a/skins/jscalendar/lang/calendar-sv.js b/skins/jscalendar/lang/calendar-sv.js
new file mode 100644
index 0000000..dc0a072
--- /dev/null
+++ b/skins/jscalendar/lang/calendar-sv.js
@@ -0,0 +1,93 @@
+// ** I18N
+
+// Calendar SV language (Swedish, svenska)
+// Author: Mihai Bazon, <mishoo@infoiasi.ro>
+// Translation team: <sv@li.org>
+// Translator: Leonard Norrgård <leonard.norrgard@refactor.fi>
+// Last translator: Leonard Norrgård <leonard.norrgard@refactor.fi>
+// Encoding: iso-latin-1
+// Distributed under the same terms as the calendar itself.
+
+// For translators: please use UTF-8 if possible.  We strongly believe that
+// Unicode is the answer to a real internationalized world.  Also please
+// include your contact information in the header, as can be seen above.
+
+// full day names
+Calendar._DN = new Array
+("söndag",
+ "måndag",
+ "tisdag",
+ "onsdag",
+ "torsdag",
+ "fredag",
+ "lördag",
+ "söndag");
+
+// Please note that the following array of short day names (and the same goes
+// for short month names, _SMN) isn't absolutely necessary.  We give it here
+// for exemplification on how one can customize the short day names, but if
+// they are simply the first N letters of the full name you can simply say:
+//
+//   Calendar._SDN_len = N; // short day name length
+//   Calendar._SMN_len = N; // short month name length
+//
+// If N = 3 then this is not needed either since we assume a value of 3 if not
+// present, to be compatible with translation files that were written before
+// this feature.
+Calendar._SDN_len = 2;
+Calendar._SMN_len = 3;
+
+// full month names
+Calendar._MN = new Array
+("januari",
+ "februari",
+ "mars",
+ "april",
+ "maj",
+ "juni",
+ "juli",
+ "augusti",
+ "september",
+ "oktober",
+ "november",
+ "december");
+
+// tooltips
+Calendar._TT = {};
+Calendar._TT["INFO"] = "Om kalendern";
+
+Calendar._TT["ABOUT"] =
+"DHTML Datum/tid-väljare\n" +
+"(c) dynarch.com 2002-2003\n" + // don't translate this this ;-)
+"För senaste version gå till: http://dynarch.com/mishoo/calendar.epl\n" +
+"Distribueras under GNU LGPL.  Se http://gnu.org/licenses/lgpl.html för detaljer." +
+"\n\n" +
+"Val av datum:\n" +
+"- Använd knapparna \xab, \xbb för att välja år\n" +
+"- Använd knapparna " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " för att välja månad\n" +
+"- Håll musknappen nedtryckt på någon av ovanstående knappar för snabbare val.";
+Calendar._TT["ABOUT_TIME"] = "\n\n" +
+"Val av tid:\n" +
+"- Klicka på en del av tiden för att öka den delen\n" +
+"- eller skift-klicka för att minska den\n" +
+"- eller klicka och drag för snabbare val.";
+
+Calendar._TT["PREV_YEAR"] = "Föregående år (håll för menu)";
+Calendar._TT["PREV_MONTH"] = "Föregående månad (håll för menu)";
+Calendar._TT["GO_TODAY"] = "Gå till dagens datum";
+Calendar._TT["NEXT_MONTH"] = "Följande månad (håll för menu)";
+Calendar._TT["NEXT_YEAR"] = "Följande år (håll för menu)";
+Calendar._TT["SEL_DATE"] = "Välj datum";
+Calendar._TT["DRAG_TO_MOVE"] = "Drag för att flytta";
+Calendar._TT["PART_TODAY"] = " (idag)";
+Calendar._TT["MON_FIRST"] = "Visa måndag först";
+Calendar._TT["SUN_FIRST"] = "Visa söndag först";
+Calendar._TT["CLOSE"] = "Stäng";
+Calendar._TT["TODAY"] = "Idag";
+Calendar._TT["TIME_PART"] = "(Skift-)klicka eller drag för att ändra tid";
+
+// date formats
+Calendar._TT["DEF_DATE_FORMAT"] = "%Y-%m-%d";
+Calendar._TT["TT_DATE_FORMAT"] = "%A %d %b %Y";
+
+Calendar._TT["WK"] = "vecka";
diff --git a/skins/jscalendar/lang/calendar-tr.js b/skins/jscalendar/lang/calendar-tr.js
new file mode 100644
index 0000000..f2c906c
--- /dev/null
+++ b/skins/jscalendar/lang/calendar-tr.js
@@ -0,0 +1,58 @@
+//////////////////////////////////////////////////////////////////////////////////////////////
+//	Turkish Translation by Nuri AKMAN
+//	Location: Ankara/TURKEY
+//	e-mail	: nuriakman@hotmail.com
+//	Date	: April, 9 2003
+//
+//	Note: if Turkish Characters does not shown on you screen
+//		  please include falowing line your html code:
+//
+//		  <meta http-equiv="Content-Type" content="text/html; charset=windows-1254">
+//
+//////////////////////////////////////////////////////////////////////////////////////////////
+
+// ** I18N
+Calendar._DN = new Array
+("Pazar",
+ "Pazartesi",
+ "Salý",
+ "Çarþamba",
+ "Perþembe",
+ "Cuma",
+ "Cumartesi",
+ "Pazar");
+Calendar._MN = new Array
+("Ocak",
+ "Þubat",
+ "Mart",
+ "Nisan",
+ "Mayýs",
+ "Haziran",
+ "Temmuz",
+ "Aðustos",
+ "Eylül",
+ "Ekim",
+ "Kasým",
+ "Aralýk");
+
+// tooltips
+Calendar._TT = {};
+Calendar._TT["TOGGLE"] = "Haftanýn ilk gününü kaydýr";
+Calendar._TT["PREV_YEAR"] = "Önceki Yýl (Menü için basýlý tutunuz)";
+Calendar._TT["PREV_MONTH"] = "Önceki Ay (Menü için basýlý tutunuz)";
+Calendar._TT["GO_TODAY"] = "Bugün'e git";
+Calendar._TT["NEXT_MONTH"] = "Sonraki Ay (Menü için basýlý tutunuz)";
+Calendar._TT["NEXT_YEAR"] = "Sonraki Yýl (Menü için basýlý tutunuz)";
+Calendar._TT["SEL_DATE"] = "Tarih seçiniz";
+Calendar._TT["DRAG_TO_MOVE"] = "Taþýmak için sürükleyiniz";
+Calendar._TT["PART_TODAY"] = " (bugün)";
+Calendar._TT["MON_FIRST"] = "Takvim Pazartesi gününden baþlasýn";
+Calendar._TT["SUN_FIRST"] = "Takvim Pazar gününden baþlasýn";
+Calendar._TT["CLOSE"] = "Kapat";
+Calendar._TT["TODAY"] = "Bugün";
+
+// date formats
+Calendar._TT["DEF_DATE_FORMAT"] = "dd-mm-y";
+Calendar._TT["TT_DATE_FORMAT"] = "d MM y, DD";
+
+Calendar._TT["WK"] = "Hafta";
diff --git a/skins/jscalendar/lang/calendar-zh.js b/skins/jscalendar/lang/calendar-zh.js
new file mode 100644
index 0000000..4549c2a
--- /dev/null
+++ b/skins/jscalendar/lang/calendar-zh.js
@@ -0,0 +1,45 @@
+// ** Translated by ATang ** I18N
+Calendar._DN = new Array
+("ÐÇÆÚÈÕ",
+ "ÐÇÆÚÒ»",
+ "ÐÇÆÚ¶þ",
+ "ÐÇÆÚÈý",
+ "ÐÇÆÚËÄ",
+ "ÐÇÆÚÎå",
+ "ÐÇÆÚÁù",
+ "ÐÇÆÚÈÕ");
+Calendar._MN = new Array
+("Ò»ÔÂ",
+ "¶þÔÂ",
+ "ÈýÔÂ",
+ "ËÄÔÂ",
+ "ÎåÔÂ",
+ "ÁùÔÂ",
+ "ÆßÔÂ",
+ "°ËÔÂ",
+ "¾ÅÔÂ",
+ "Ê®ÔÂ",
+ "ʮһÔÂ",
+ "Ê®¶þÔÂ");
+
+// tooltips
+Calendar._TT = {};
+Calendar._TT["TOGGLE"] = "Çл»ÖÜ¿ªÊ¼µÄÒ»Ìì";
+Calendar._TT["PREV_YEAR"] = "ÉÏÒ»Äê (°´×¡³ö²Ëµ¥)";
+Calendar._TT["PREV_MONTH"] = "ÉÏÒ»Ô (°´×¡³ö²Ëµ¥)";
+Calendar._TT["GO_TODAY"] = "µ½½ñÈÕ";
+Calendar._TT["NEXT_MONTH"] = "ÏÂÒ»Ô (°´×¡³ö²Ëµ¥)";
+Calendar._TT["NEXT_YEAR"] = "ÏÂÒ»Äê (°´×¡³ö²Ëµ¥)";
+Calendar._TT["SEL_DATE"] = "Ñ¡ÔñÈÕÆÚ";
+Calendar._TT["DRAG_TO_MOVE"] = "Í϶¯";
+Calendar._TT["PART_TODAY"] = " (½ñÈÕ)";
+Calendar._TT["MON_FIRST"] = "Ê×ÏÈÏÔʾÐÇÆÚÒ»";
+Calendar._TT["SUN_FIRST"] = "Ê×ÏÈÏÔʾÐÇÆÚÈÕ";
+Calendar._TT["CLOSE"] = "¹Ø±Õ";
+Calendar._TT["TODAY"] = "½ñÈÕ";
+
+// date formats
+Calendar._TT["DEF_DATE_FORMAT"] = "y-mm-dd";
+Calendar._TT["TT_DATE_FORMAT"] = "D, M d";
+
+Calendar._TT["WK"] = "ÖÜ";
diff --git a/skins/jscalendar/menuarrow.gif b/skins/jscalendar/menuarrow.gif
new file mode 100644
index 0000000..ed2dee0
Binary files /dev/null and b/skins/jscalendar/menuarrow.gif differ
diff --git a/skins/jscalendar/menuarrow2.gif b/skins/jscalendar/menuarrow2.gif
new file mode 100644
index 0000000..40c0aad
Binary files /dev/null and b/skins/jscalendar/menuarrow2.gif differ
diff --git a/skins/jscalendar/release-notes.html b/skins/jscalendar/release-notes.html
new file mode 100644
index 0000000..97b3a8e
--- /dev/null
+++ b/skins/jscalendar/release-notes.html
@@ -0,0 +1,334 @@
+<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 3.2//EN">
+<html>
+  <head>
+    <title>jscalendar release notes</title>
+
+    <style type="text/css">
+      h1 { border-bottom: 1px solid #000; }
+      h2 { border-bottom: 1px solid #444; }
+      ul li { margin-top: 0.5em; margin-bottom: 0.5em; }
+    </style>
+  </head>
+
+  <body>
+    <h1>jscalendar release notes</h1>
+
+    <p>This release compiled at Friday,  6 Feb 2004 (21:40).</p>
+
+    <h2>0.9.6</h2>
+
+    <ul>
+
+      <li>
+        "Smart" (TM :-) positioning algorithm.  The new algorithm will
+        try to keep the calendar in the browser view, which is helpful
+        in situations when the input field is near the bottom or the
+        right edge.  This code is only tested with IE and Mozilla, but
+        it should work with other browsers too.  Many thanks to <a
+        href="http://www.ex3.com">Sunny Chowdhury</a> for sponsoring
+        this feature!
+      </li>
+
+      <li>
+        Support for IE5/Win is back.  I also want to thank Janusz
+        Piwowarski for keeping his eye on the CVS ;-) He reviewed my
+        IE5-related changes and sent me a much cleaner patch.
+      </li>
+
+      <li>
+        The calendar will now allow any day of week to be "the first
+        day of week".  This was requested long time ago, by someone
+        whose name I forgot (sorry).  The reason was that in certain
+        countries weeks start on Saturday.  So I thought that instead
+        of having a "mondayFirst" and a "saturdayFirst" parameter,
+        :-), it's better to have a "firstDayOfWeek" parameter; now
+        it's present and its meaning is: "0 for Sunday", "1 for
+        Monday", "2 for Tuesday", etc.  The equivalent parameter for
+        Calendar.setup is "firstDay".  The end user can also change
+        it very easy: click on the day name in the calendar display.
+      </li>
+
+      <li>
+        The above feature triggered one <b>important change</b>: the
+        notion of "weekend" is now defined in the language file.
+        Added parameters:
+
+        <pre>
+          Calendar._TT["WEEKEND"] = "0,6";
+          Calendar._TT["DAY_FIRST"] = "Display %s first";</pre>
+
+        "WEEKEND" specifies a string with comma-separated numbers from
+        0 to 7; they define what days are marked as "weekend".  5 and
+        6 mean, of course, "Sunday" and "Saturday".  Day first is the
+        tooltip displayed when a day name is hovered; "%s" will get
+        replaced with the day name.  Updated languages are "en" and
+        "ro", which I maintain.  Please note that languages wich are
+        not updated <b>will not work</b>.  If yours is one of them,
+        please consider fixing it and sending me the fix so that I can
+        include it in the distro.
+      </li>
+
+      <li>
+        The calendar can now display days from the months adjacent to
+        the currently displayed one.  This is optional, of course, and
+        the parameter name is "showsOtherMonths" (or "showOthers" in
+        Calendar.setup).  All theme files were updated.
+      </li>
+
+      <li>
+        Displays "Time:" near the time selector, only if defined in
+        the language file.
+      </li>
+
+      <li>
+        Some bugs fixed in the date parsing code (which has also been
+        rewritten a little bit cleaner).
+      </li>
+
+      <li>
+        Calendar.setup will now configure the calendar to trigger the
+        input fields' "onchange" event, if specified, when a date is
+        selected.
+      </li>
+
+      <li>
+        New parameter in Calendar.setup: "cache" (<b>defaults to
+        false</b>).  If set to true then the popup calendar object
+        will be "cached", meaning, it will be created only once, no
+        matter how many input fields are there in the page.  Sometimes
+        this is not desirable, which is why I've added this
+        parameter.  Please note that it defaults to "false" (thus the
+        default behavior has changed).
+      </li>
+
+      <li>
+        Added a simple PHP wrapper.  It provides code which loads all
+        the required scripts and theme file, and one function which
+        creates and configures an input field for date input.  It
+        takes care of creating and assigning unique ID-s for the
+        calendar fields and it also creates the "Calendar.setup" code.
+        Functions to create more specialized fields can be added very
+        easily.  This feature was requested by the FreeMED.org project
+        (thanks for donating!).
+      </li>
+
+    </ul>
+
+    <p>Wow, there were quite some changes :-D  Enjoy it!</p>
+
+    <h2>0.9.5</h2>
+
+    <p>
+      This release's primary goal is to fix a wrong license statement which
+      can be found in some files from 0.9.4.  For instance in README or
+      calendar.js, the statement was that the code is distributed under the
+      GNU GPL; that's because I had plans to change the license, then
+      changed my mind but unfortunately I committed files so.  I am sorry
+      for this inconvenience, please use the latest (0.9.5) release which is
+      fully covered by LGPL.
+    </p>
+
+    <p>Other changes:</p>
+
+    <ul>
+
+      <li>
+        <b>Fixed</b> an annoying bug that prevented the calendar to display
+	correctly when it was configured for an input field inside a
+	<b>scrolling area</b>.  <b>Many thanks</b> to Ian Barrack (<a
+	href="http://www.simban.com">Simban.com</a>) who pointed it up and
+	donated quite some money for the Calendar project!
+      </li>
+
+      <li>
+        All examples use UTF-8 now; the translations may not be all
+        up-to-date, but I <strong>strongly</strong> suggest everyone to use
+        UTF-8; other encodings are a plain mess.  So far I know for sure
+        that Romanian translation will work with UTF-8 and <em>not
+        anymore</em> with ISO-8859-2.  Other translations are probably
+        usable under UTF-8, but if your preferred language isn't... ;-)
+        please make it and send it to me for inclusion.
+      </li>
+
+      <li>
+        Fixed small bug in the documentation (one footnote didn't appear
+        where it should have).
+      </li>
+
+      <li>
+        Updated translations: DE, ES, HU, IT, RO.  Thanks to everyone who
+        sent translations!
+      </li>
+
+    </ul>
+
+    <h2>0.9.4</h2>
+
+    <h3>New stuff</h3>
+
+    <ul>
+
+      <li>Supports time selection.  Yes. ;-) This work has been largely
+        sponsored by <strong>Himanshukumar Shah</strong> (thank you!).  See
+        the docs and example files for details on how to setup.</li>
+
+      <li>Easy to link 2 or more fields by using the new
+        <code>onUpdate</code> parameter of <code>Calendar.setup</code>.  This
+        is useful, say, to automatically set a value in a second field based
+        on the value selected in the first field.  See the documentation and
+        first sample in <a href="simple-1.html">simple-1.html</a>.</li>
+
+      <li>Other <code>Calendar.setup</code> low-level parameters, for those
+        wanting to have the complete control: <code>onSelect</code> and
+        <code>onClose</code>.  The handlers are called when something is
+        selected in the calendar or when the calendar is closed.</li>
+
+      <li>The translation files can optionally include the short day names
+        and the short month names.  That's because in some languages, like
+        German, the short form is not the first 3 letters of the entire name
+        but only the first 2.  Also in other languages short names can't be
+        as easily derived from the full name by just calling substr, so this
+        patch solves the problem.</li>
+
+      <li>Implemented a nice way to make some dates "special" (look
+        different).  Specifically, the <code>setDisabledHandler</code> method
+        was replaced with the more general <code>setDateStatusHandler</code>
+        method (the old one is still available for backwards compatibility but
+        <em>will</em> be removed).  More details about this in the
+        documentation.  Also see <a href="simple-3.html">simple-3.html</a>
+        for a live sample.</li>
+
+      <li>Date parsing and formatting engine is now rewritten and supports a
+        subset of <code>strftime</code> format specifiers from ANSI C.  This
+        makes it possible to use dates like "YYYYMMDD" (the corresponding
+        format for this would be "%Y%m%d").  Details in the documentation.
+        <b>Please note that the new engine is not compatibile with older
+          calendar releases!</b></li>
+
+      <li>Along with the new date parser I workarounded an unpleasant crash
+        that occurred in IE when certain accented characters appeared in the
+        texts.  I think German was one of the language with such problems, and
+        the workaround was to use the letter without an accent.  Well, now you
+        can translate to whatever you want.</li>
+
+      <li>"Fixes" (I mean, "horrible workarounds") for Konqueror (and
+        hopefully Safari).  Unfortunately, this otherwise excellent browser
+        still has some bugs that keep the calendar from working
+        <em>exactly</em> as it should..  But they're going to be fixed,
+        right? ;-)</li>
+
+      <li>CSS themes got pretty much modified too so if you wrote your theme
+        you need to update it.  Aside for the time selector support, the CSS
+        themes contain a simple hack that makes the navigation buttons show
+        a little arrow in the lower-right corner which indicates that if one
+        holds the mouse a menu will appear.</li>
+
+    </ul>
+
+    <h3>Translation files</h3>
+
+    <p>The translation files need to be updated in order for the calendar to
+      work properly.  Currently the only updated files are calendar-en.js
+      (main file) and calendar-ro.js (well, yes, I am a Romanian ;-).</p>
+
+    <p>Specifically, they need the following:</p>
+
+    <ul>
+
+      <li>Correct date format, according with the new format specifiers
+        introduced in 0.9.4.  Details about the available format specifiers
+        in the documentation</li>
+
+      <li>Short day or month names, <em>if required</em>.  If they can be
+        derived by taking the first N letters of the full name then a simple
+        Calendar._SDN_len = N or Calendar._SMN_len = N will suffice.  If N
+        is 3 then nothing needs to be done as we take it for granted if no
+        other option is offered ;-)</li>
+
+      <li>We have some new texts that shows short usage information as well
+        as copyright information.</li>
+
+    </ul>
+
+    <p>If your favorite language is not there yet, or it is but not updated
+      according to the main calendar-en.js file, then please consider
+      translating calendar-en.js and send the translation back to me so that
+      I include it in the official distribution.</p>
+
+    <h3>Bug status</h3>
+
+    <p>Check <a
+        href="http://sourceforge.net/tracker/?atid=544285&group_id=75569&func=browse">SourceForge</a>,
+      I didn't keep track.  However, there were a lot of bugfixes.</p>
+
+    <h2>0.9.3</h2>    
+
+    <h3>New stuff</h3>
+
+    <ul>
+
+      <li>Opera&nbsp;7 compatibility &mdash; keyboard navigation is
+        still not available; text selection can't be disabled, leading to an
+        ugly effect when walking through the month/year menus.</li>
+
+      <li>Ability to align the calendar relative to the input field (or any
+        other element).  Vertical: top, center, bottom.  Horizontal: left,
+        center, right.  This is established as a new parameter for
+        <tt>showAtElement</tt>.</li>
+
+      <li>Added <tt>dateClicked</tt> property (boolean).  This can be
+        inspected in the "onSelect" handler to determine if a date was
+        really clicked or the user only changed month/year using the menus.
+        You <em>need</em> to check this for "single-click" calendars and
+        only close/hide the calendar if it's <tt>true</tt>.</li>
+
+      <li>Full documentation in <a href="doc/html/reference.html">HTML</a>
+        and <a href="doc/reference.pdf">PDF</a> format is now available in the
+        distribution archive.</li>
+
+      <li>New language definition files: HU, HR, PT, ZH.  Thanks those who
+        submitted!</li>
+
+    </ul>
+
+    <h3>Bug status</h3>
+
+    <p>This covers only those bugs that have been reported <a
+        href="http://sourceforge.net/projects/jscalendar" target="_blank"
+        title="Project page at SourceForge">at SourceForge</a>.</p>
+
+    <ol>
+
+      <li><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=703238&group_id=75569&atid=544285" target="_blank"
+            title="Go to bug description at sourceforge"><tt>#703,238</tt></a> &mdash; fixed</li>
+      <li><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=703814&group_id=75569&atid=544285" target="_blank"
+            title="Go to bug description at sourceforge"><tt>#703,814</tt></a> &mdash; fixed</li>
+      <li><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=716777&group_id=75569&atid=544285" target="_blank"
+            title="Go to bug description at sourceforge"><tt>#716,777</tt></a> &mdash; closed (was fixed already in 0.9.2-1)</li>
+      <li><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=723335&group_id=75569&atid=544285" target="_blank"
+            title="Go to bug description at sourceforge"><tt>#723,335</tt></a> &mdash; fixed</li>
+      <li><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=715122&group_id=75569&atid=544285" target="_blank"
+            title="Go to bug description at sourceforge"><tt>#715,122</tt></a> &mdash; feature request; implemented.</li>
+      <li><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=721206&group_id=75569&atid=544285" target="_blank"
+            title="Go to bug description at sourceforge"><tt>#721,206</tt></a> &mdash; fixed (added "refresh()" function)</li>
+      <li><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=721833&group_id=75569&atid=544285" target="_blank"
+            title="Go to bug description at sourceforge"><tt>#721,833</tt></a> &mdash; fixed (bug concerning the "yy" format
+        parsing)</li>
+      <li><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=721833&group_id=75569&atid=544285" target="_blank"
+            title="Go to bug description at sourceforge"><tt>#721,833</tt></a> &mdash; won't fix (we won't set the time to
+        midnight; time might actually be useful when we implement support
+        for time selection).
+
+    </ol>
+
+    <hr />
+    <address><a href="http://dynarch.com/mishoo/">Mihai Bazon</a></address>
+<!-- Created: Tue Jul  8 17:29:37 EEST 2003 -->
+<!-- hhmts start -->
+Last modified on Wed Oct 29 02:37:07 2003
+<!-- hhmts end -->
+<!-- doc-lang: English -->
+  </body>
+</html>
+
+
diff --git a/skins/jscalendar/simple-1.html b/skins/jscalendar/simple-1.html
new file mode 100644
index 0000000..c2a944a
--- /dev/null
+++ b/skins/jscalendar/simple-1.html
@@ -0,0 +1,244 @@
+<html style="background-color: buttonface; color: buttontext;">
+
+<head>
+<meta http-equiv="content-type" content="text/xml; charset=utf-8" />
+
+<title>Simple calendar setups [popup calendar]</title>
+
+  <!-- calendar stylesheet -->
+  <link rel="stylesheet" type="text/css" media="all" href="calendar-win2k-cold-1.css" title="win2k-cold-1" />
+
+  <!-- main calendar program -->
+  <script type="text/javascript" src="calendar.js"></script>
+
+  <!-- language for the calendar -->
+  <script type="text/javascript" src="lang/calendar-en.js"></script>
+
+  <!-- the following script defines the Calendar.setup helper function, which makes
+       adding a calendar a matter of 1 or 2 lines of code. -->
+  <script type="text/javascript" src="calendar-setup.js"></script>
+
+</head>
+
+<body>
+
+<h2>DHTML Calendar &mdash; for the impatient</h2>
+
+      <blockquote>
+        <p>
+          This page lists some common setups for the popup calendar.  In
+          order to see how to do any of them please see the source of this
+          page.  For each example it's structured like this: there's the
+          &lt;form&gt; that contains the input field, and following there is
+          the JavaScript snippet that setups that form.  An example of
+          <em>flat</em> calendar is available in <a
+            href="simple-2.html">another page</a>.
+        </p>
+        <p>
+          The code in this page uses a helper function defined in
+          "calendar-setup.js".  With it you can setup the calendar in
+          minutes.  If you're not <em>that</em> impatient, ;-) <a
+          href="doc/html/reference.html">complete documenation</a> is
+          available.
+        </p>
+      </blockquote>
+
+
+
+<hr />
+
+<p><b>Basic setup: one input per calendar.</b> Clicking in the input field
+activates the calendar.  The date format is "%m/%d/%Y %I:%M %p".  The
+calendar defaults to "single-click mode".</p>
+
+<p>The example below has been updated to show you how to create "linked"
+fields.  Basically, when some field is filled with a date, the other
+is updated so that the difference between them remains one week.  The
+property useful here is "onUpdate".</p>
+
+<form action="#" method="get">
+<input type="text" name="date" id="f_date_a" />
+<input type="text" name="date" id="f_calcdate" />
+</form>
+
+<script type="text/javascript">
+    function catcalc(cal) {
+        var date = cal.date;
+        var time = date.getTime()
+        // use the _other_ field
+        var field = document.getElementById("f_calcdate");
+        if (field == cal.params.inputField) {
+            field = document.getElementById("f_date_a");
+            time -= Date.WEEK; // substract one week
+        } else {
+            time += Date.WEEK; // add one week
+        }
+        var date2 = new Date(time);
+        field.value = date2.print("%Y-%m-%d %H:%M");
+    }
+    Calendar.setup({
+        inputField     :    "f_date_a",   // id of the input field
+        ifFormat       :    "%Y-%m-%d %H:%M",       // format of the input field
+        showsTime      :    true,
+        timeFormat     :    "24",
+        onUpdate       :    catcalc
+    });
+    Calendar.setup({
+        inputField     :    "f_calcdate",
+        ifFormat       :    "%Y-%m-%d %H:%M",
+        showsTime      :    true,
+        timeFormat     :    "24",
+        onUpdate       :    catcalc
+    });
+</script>
+
+
+
+<hr />
+
+<p><b>Input field with a trigger button.</b> Clicking the button activates
+the calendar.  Note that this one needs double-click (singleClick parameter
+is explicitely set to false).  Also demonstrates the "step" parameter
+introduced in 0.9.6 (show all years in drop-down boxes, instead of every
+other year as default).</p>
+
+<form action="#" method="get">
+<input type="text" name="date" id="f_date_b" /><button type="reset" id="f_trigger_b">...</button>
+</form>
+
+<script type="text/javascript">
+    Calendar.setup({
+        inputField     :    "f_date_b",      // id of the input field
+        ifFormat       :    "%m/%d/%Y %I:%M %p",       // format of the input field
+        showsTime      :    true,            // will display a time selector
+        button         :    "f_trigger_b",   // trigger for the calendar (button ID)
+        singleClick    :    false,           // double-click mode
+        step           :    1                // show all years in drop-down boxes (instead of every other year as default)
+    });
+</script>
+
+
+
+<hr />
+
+<p><b>Input field with a trigger image.</b> Note that the Calendar.setup
+function doesn't care if the trigger is a button, image, or anything else.
+Also in this example we setup a different alignment, just to show how it's
+done.  The input field is read-only (that is set from HTML).</p>
+
+<form action="#" method="get">
+<table cellspacing="0" cellpadding="0" style="border-collapse: collapse"><tr>
+ <td><input type="text" name="date" id="f_date_c" readonly="1" /></td>
+ <td><img src="img.gif" id="f_trigger_c" style="cursor: pointer; border: 1px solid red;" title="Date selector"
+      onmouseover="this.style.background='red';" onmouseout="this.style.background=''" /></td>
+</table>
+</form>
+
+<script type="text/javascript">
+    Calendar.setup({
+        inputField     :    "f_date_c",     // id of the input field
+        ifFormat       :    "%B %e, %Y",      // format of the input field
+        button         :    "f_trigger_c",  // trigger for the calendar (button ID)
+        align          :    "Tl",           // alignment (defaults to "Bl")
+        singleClick    :    true
+    });
+</script>
+
+
+
+<hr />
+
+<p><b>Hidden field, display area.</b> The calendar now puts the date into 2
+elements: one is an input field of type "hidden"&mdash;so that the user
+can't directly see or modify it&mdash; and one is a &lt;span&gt; element in
+which the date is displayed.  Note that if the trigger is not specified the
+calendar will use the displayArea (or inputField as in the first example).
+The display area can have it's own format.  This is useful if, for instance,
+we need to store one format in the database (thus pass it in the input
+field) but we wanna show a friendlier format to the end-user.</p>
+
+<form action="#" method="get" style="visibility: hidden">
+<input type="hidden" name="date" id="f_date_d" />
+</form>
+
+<p>Your birthday:
+   <span style="background-color: #ff8; cursor: default;"
+         onmouseover="this.style.backgroundColor='#ff0';"
+         onmouseout="this.style.backgroundColor='#ff8';"
+         id="show_d"
+   >Click to open date selector</span>.</p>
+
+<script type="text/javascript">
+    Calendar.setup({
+        inputField     :    "f_date_d",     // id of the input field
+        ifFormat       :    "%Y/%d/%m",     // format of the input field (even if hidden, this format will be honored)
+        displayArea    :    "show_d",       // ID of the span where the date is to be shown
+        daFormat       :    "%A, %B %d, %Y",// format of the displayed date
+        align          :    "Tl",           // alignment (defaults to "Bl")
+        singleClick    :    true
+    });
+</script>
+
+
+
+<hr />
+
+<p><b>Hidden field, display area, trigger image.</b> Very similar to the
+previous example.  The difference is that we also have a trigger image.</p>
+
+<form action="#" method="get" style="visibility: hidden">
+<input type="hidden" name="date" id="f_date_e" />
+</form>
+
+<p>Your birthday: <span id="show_e">-- not entered --</span> <img
+src="img.gif" id="f_trigger_e" style="cursor: pointer; border: 1px solid
+red;" title="Date selector" onmouseover="this.style.background='red';"
+onmouseout="this.style.background=''" />.</p>
+
+<script type="text/javascript">
+    Calendar.setup({
+        inputField     :    "f_date_e",     // id of the input field
+        ifFormat       :    "%Y/%d/%m",     // format of the input field (even if hidden, this format will be honored)
+        displayArea    :    "show_e",       // ID of the span where the date is to be shown
+        daFormat       :    "%A, %B %d, %Y",// format of the displayed date
+        button         :    "f_trigger_e",  // trigger button (well, IMG in our case)
+        align          :    "Tl",           // alignment (defaults to "Bl")
+        singleClick    :    true
+    });
+</script>
+
+
+
+<hr />
+
+<p><b>Hidden field, display area.</b> Very much like the previous examples,
+but we now disable some dates (all weekends, that is, Saturdays and
+Sundays).</p>
+
+<form action="#" method="get" style="visibility: hidden">
+<input type="hidden" name="date" id="f_date_f" />
+</form>
+
+<p>Your birthday:
+   <span style="background-color: #ff8; cursor: default;"
+         onmouseover="this.style.backgroundColor='#ff0';"
+         onmouseout="this.style.backgroundColor='#ff8';"
+         id="show_f"
+   >Click to open date selector</span>.</p>
+
+<script type="text/javascript">
+    Calendar.setup({
+        inputField     :    "f_date_f",     // id of the input field
+        ifFormat       :    "%Y/%d/%m",     // format of the input field (even if hidden, this format will be honored)
+        displayArea    :    "show_f",       // ID of the span where the date is to be shown
+        daFormat       :    "%A, %B %d, %Y",// format of the displayed date
+        align          :    "Tl",           // alignment (defaults to "Bl")
+        dateStatusFunc :    function (date) { // disable weekend days (Saturdays == 6 and Subdays == 0)
+                              return (date.getDay() == 6 || date.getDay() == 0) ? true : false;
+                            }
+    });
+</script>
+
+
+</body>
+</html>
diff --git a/skins/jscalendar/simple-2.html b/skins/jscalendar/simple-2.html
new file mode 100644
index 0000000..b55bae8
--- /dev/null
+++ b/skins/jscalendar/simple-2.html
@@ -0,0 +1,108 @@
+<html style="background-color: buttonface; color: buttontext;">
+
+<head>
+<meta http-equiv="content-type" content="text/xml; charset=utf-8" />
+
+<title>Simple calendar setup [flat calendar]</title>
+
+  <!-- calendar stylesheet -->
+  <link rel="stylesheet" type="text/css" media="all" href="calendar-win2k-cold-1.css" title="win2k-cold-1" />
+
+  <!-- main calendar program -->
+  <script type="text/javascript" src="calendar.js"></script>
+
+  <!-- language for the calendar -->
+  <script type="text/javascript" src="lang/calendar-en.js"></script>
+
+  <!-- the following script defines the Calendar.setup helper function, which makes
+       adding a calendar a matter of 1 or 2 lines of code. -->
+  <script type="text/javascript" src="calendar-setup.js"></script>
+
+</head>
+
+<body>
+
+<h2>DHTML Calendar &mdash; for the impatient</h2>
+
+      <blockquote>
+        <p>
+          This page demonstrates how to setup a flat calendar.  Examples of
+          <em>popup</em> calendars are available in <a
+          href="simple-1.html">another page</a>.
+        </p>
+        <p>
+          The code in this page uses a helper function defined in
+          "calendar-setup.js".  With it you can setup the calendar in
+          minutes.  If you're not <em>that</em> impatient, ;-) <a
+          href="doc/html/reference.html">complete documenation</a> is
+          available.
+        </p>
+      </blockquote>
+
+
+
+<hr />
+
+<div style="float: right; margin-left: 1em; margin-bottom: 1em;"
+id="calendar-container"></div>
+
+<script type="text/javascript">
+  function dateChanged(calendar) {
+    // Beware that this function is called even if the end-user only
+    // changed the month/year.  In order to determine if a date was
+    // clicked you can use the dateClicked property of the calendar:
+    if (calendar.dateClicked) {
+      // OK, a date was clicked, redirect to /yyyy/mm/dd/index.php
+      var y = calendar.date.getFullYear();
+      var m = calendar.date.getMonth();     // integer, 0..11
+      var d = calendar.date.getDate();      // integer, 1..31
+      // redirect...
+      window.location = "/" + y + "/" + m + "/" + d + "/index.php";
+    }
+  };
+
+  Calendar.setup(
+    {
+      flat         : "calendar-container", // ID of the parent element
+      flatCallback : dateChanged           // our callback function
+    }
+  );
+</script>
+
+<p>The positioning of the DIV that contains the calendar is entirely your
+job.  For instance, the "calendar-container" DIV from this page has the
+following style: "float: right; margin-left: 1em; margin-bottom: 1em".</p>
+
+<p>Following there is the code that has been used to create this calendar.
+You can find the full description of the <tt>Calendar.setup()</tt> function
+in the <a href="doc/html/reference.html">calendar documenation</a>.</p>
+
+<pre
+>&lt;div style="float: right; margin-left: 1em; margin-bottom: 1em;"
+id="calendar-container"&gt;&lt;/div&gt;
+
+&lt;script type="text/javascript"&gt;
+  function dateChanged(calendar) {
+    // Beware that this function is called even if the end-user only
+    // changed the month/year.  In order to determine if a date was
+    // clicked you can use the dateClicked property of the calendar:
+    if (calendar.dateClicked) {
+      // OK, a date was clicked, redirect to /yyyy/mm/dd/index.php
+      var y = calendar.date.getFullYear();
+      var m = calendar.date.getMonth();     // integer, 0..11
+      var d = calendar.date.getDate();      // integer, 1..31
+      // redirect...
+      window.location = "/" + y + "/" + m + "/" + d + "/index.php";
+    }
+  };
+
+  Calendar.setup(
+    {
+      flat         : "calendar-container", // ID of the parent element
+      flatCallback : dateChanged           // our callback function
+    }
+  );
+&lt;/script&gt;</pre>
+
+</body>
+</html>
diff --git a/skins/jscalendar/simple-3.html b/skins/jscalendar/simple-3.html
new file mode 100644
index 0000000..c096e87
--- /dev/null
+++ b/skins/jscalendar/simple-3.html
@@ -0,0 +1,130 @@
+<html style="background-color: buttonface; color: buttontext;">
+
+<head>
+<meta http-equiv="content-type" content="text/xml; charset=utf-8" />
+
+<title>Simple calendar setup [flat calendar]</title>
+
+  <!-- calendar stylesheet -->
+  <link rel="stylesheet" type="text/css" media="all" href="calendar-win2k-cold-1.css" title="win2k-cold-1" />
+
+  <!-- main calendar program -->
+  <script type="text/javascript" src="calendar.js"></script>
+
+  <!-- language for the calendar -->
+  <script type="text/javascript" src="lang/calendar-en.js"></script>
+
+  <!-- the following script defines the Calendar.setup helper function, which makes
+       adding a calendar a matter of 1 or 2 lines of code. -->
+  <script type="text/javascript" src="calendar-setup.js"></script>
+
+    <style type="text/css">
+      .special { background-color: #000; color: #fff; }
+    </style>
+
+</head>
+
+<body>
+
+<h2>DHTML Calendar &mdash; for the impatient</h2>
+
+      <blockquote>
+        <p>
+          This page demonstrates how to setup a flat calendar.  Examples of
+          <em>popup</em> calendars are available in <a
+          href="simple-1.html">another page</a>.
+        </p>
+        <p>
+          The code in this page uses a helper function defined in
+          "calendar-setup.js".  With it you can setup the calendar in
+          minutes.  If you're not <em>that</em> impatient, ;-) <a
+          href="doc/html/reference.html">complete documenation</a> is
+          available.
+        </p>
+      </blockquote>
+
+
+
+<hr />
+
+<div style="float: right; margin-left: 1em; margin-bottom: 1em;"
+id="calendar-container"></div>
+
+<script type="text/javascript">
+  var SPECIAL_DAYS = {
+    0 : [ 13, 24 ],		// special days in January
+    2 : [ 1, 6, 8, 12, 18 ],	// special days in March
+    8 : [ 21, 11 ]		// special days in September
+  };
+
+  function dateIsSpecial(year, month, day) {
+    var m = SPECIAL_DAYS[month];
+    if (!m) return false;
+    for (var i in m) if (m[i] == day) return true;
+    return false;
+  };
+
+  function dateChanged(calendar) {
+    // Beware that this function is called even if the end-user only
+    // changed the month/year.  In order to determine if a date was
+    // clicked you can use the dateClicked property of the calendar:
+    if (calendar.dateClicked) {
+      // OK, a date was clicked, redirect to /yyyy/mm/dd/index.php
+      var y = calendar.date.getFullYear();
+      var m = calendar.date.getMonth();     // integer, 0..11
+      var d = calendar.date.getDate();      // integer, 1..31
+      // redirect...
+      window.location = "/" + y + "/" + m + "/" + d + "/index.php";
+    }
+  };
+
+  Calendar.setup(
+    {
+      flat         : "calendar-container", // ID of the parent element
+      flatCallback : dateChanged,          // our callback function
+      dateStatusFunc : function(date, y, m, d) {
+                         if (dateIsSpecial(y, m, d)) return "special";
+                         else return false; // other dates are enabled
+                         // return true if you want to disable other dates
+                       }
+    }
+  );
+</script>
+
+<p>The positioning of the DIV that contains the calendar is entirely your
+job.  For instance, the "calendar-container" DIV from this page has the
+following style: "float: right; margin-left: 1em; margin-bottom: 1em".</p>
+
+<p>Following there is the code that has been used to create this calendar.
+You can find the full description of the <tt>Calendar.setup()</tt> function
+in the <a href="doc/html/reference.html">calendar documenation</a>.</p>
+
+<pre
+>&lt;div style="float: right; margin-left: 1em; margin-bottom: 1em;"
+id="calendar-container"&gt;&lt;/div&gt;
+
+&lt;script type="text/javascript"&gt;
+  function dateChanged(calendar) {
+    // Beware that this function is called even if the end-user only
+    // changed the month/year.  In order to determine if a date was
+    // clicked you can use the dateClicked property of the calendar:
+    if (calendar.dateClicked) {
+      // OK, a date was clicked, redirect to /yyyy/mm/dd/index.php
+      var y = calendar.date.getFullYear();
+      var m = calendar.date.getMonth();     // integer, 0..11
+      var d = calendar.date.getDate();      // integer, 1..31
+      // redirect...
+      window.location = "/" + y + "/" + m + "/" + d + "/index.php";
+    }
+  };
+
+  Calendar.setup(
+    {
+      flat         : "calendar-container", // ID of the parent element
+      flatCallback : dateChanged           // our callback function
+    }
+  );
+&lt;/script&gt;</pre>
+
+</body>
+</html>
diff --git a/skins/jscalendar/test-position.html b/skins/jscalendar/test-position.html
new file mode 100644
index 0000000..5544871
--- /dev/null
+++ b/skins/jscalendar/test-position.html
@@ -0,0 +1,40 @@
+<html xmlns="http://www.w3.org/1999/xhtml">
+
+  <head>
+    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+    <title>JS Calendar (positioning test)</title>
+    <script type="text/javascript" src="calendar.js"></script>
+    <script type="text/javascript" src="calendar-setup.js"></script>
+    <script type="text/javascript" src="lang/calendar-en.js"></script>
+    <style type="text/css"> @import url("calendar-win2k-cold-1.css"); </style>
+  </head>
+
+  <body style="height: 100%; margin: 0px; padding: 0px;">
+    <table style="height: 100%; width: 100%;" cellspacing="0" cellpadding="0">
+      <tr style="height: 100%;">
+        <td style="vertical-align: top; text-align: left;">
+          <input type="text" id="cal-field-1" />
+          <button type="submit" id="cal-button-1">...</button>
+          <script type="text/javascript">
+            Calendar.setup({
+              inputField    : "cal-field-1",
+              button        : "cal-button-1",
+              align         : "Tr"
+            });
+          </script>
+        </td>
+        <td style="vertical-align: bottom; text-align: right;">
+          <input type="text" id="cal-field-2" />
+          <button type="submit" id="cal-button-2">...</button>
+          <script type="text/javascript">
+            Calendar.setup({
+              inputField    : "cal-field-2",
+              button        : "cal-button-2"
+            });
+          </script>
+        </td>
+      </tr>
+    </table>
+  </body>
+
+</html>
diff --git a/skins/jscalendar/test.php b/skins/jscalendar/test.php
new file mode 100644
index 0000000..c9c2e28
--- /dev/null
+++ b/skins/jscalendar/test.php
@@ -0,0 +1,116 @@
+<?php
+
+$lang = $_GET['lang'];
+if (!$lang) {
+    $lang = $_REQUEST['lang'];
+}
+if (!$lang) {
+    $lang = 'en';
+}
+setcookie('lang', $lang);
+
+?>
+<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
+<html>
+<head>
+<title>
+Test for calendar.php
+</title>
+
+<?php
+
+// put here the correct path to "calendar.php"; don't move the file
+// "calendar.php" -- I think it's best if you leave it inside the
+// "/jscalendar/" directory.  Just put here the correct path to it, such as
+// "../jscalendar/calendar.php" or something.
+require_once ('calendar.php');
+
+// parameters to constructor:
+//     1. the absolute URL path to the calendar files
+//     2. the languate used for the calendar (see the lang/ dir)
+//     3. the theme file used for the clanedar, without the ".css" extension
+//     4. boolean that specifies if the "_stripped" files are to be loaded
+//        The stripped files are smaller as they have no whitespace and comments
+$calendar = new DHTML_Calendar('/jscalendar/', $lang, 'calendar-win2k-2', false);
+
+// call this in the <head> section; it will "echo" code that loads the calendar
+// scripts and theme file.
+$calendar->load_files();
+
+?>
+
+</head>
+
+<body>
+
+<?php if ($_REQUEST['submitted']) { ?>
+
+<h1>Form submitted</h1>
+
+<?php foreach ($_REQUEST as $key => $val) {
+    echo htmlspecialchars($key) . ' = ' . htmlspecialchars($val) . '<br />';
+} ?>
+
+<?php } else { ?>
+
+<h1>Calendar.php test</h1>
+
+     <form action="test.php" method="get">
+     Select language: <select name="lang" onchange="this.form.submit()">
+     <?php
+$cwd = getcwd();
+chdir('lang');
+foreach (glob('*.js') as $filename) {
+    $l = preg_replace('/(^calendar-|.js$)/', '', $filename);
+    $selected = '';
+    if ($l == $lang)
+        $selected = 'selected="selected" ';
+    $display = $l;
+    if ($l == 'en')
+        $display = 'EN';
+    echo '<option ' . $selected . 'value="' . $l . '">' . $display . '</option>';
+}
+     ?>
+     </select>
+     <blockquote style="font-size: 90%">
+       <b>NOTE</b>: as of this release, 0.9.6, only "EN" and "RO", which I
+       maintain, function correctly.  Other language files do not work
+       because they need to be updated.  If you update some language file,
+       please consider sending it back to me so that I can include it in the
+       calendar distribution.
+     </blockquote>
+     </form>
+
+     <form action="test.php" method="get">
+     <input type="hidden" name="submitted" value="1" />
+
+     <table>
+     <tr>
+     <td>
+       Date 1:
+     </td>
+     <td>
+       <?php $calendar->make_input_field(
+           // calendar options go here; see the documentation and/or calendar-setup.js
+           array('firstDay'       => 1, // show Monday first
+                 'showsTime'      => true,
+                 'showOthers'     => true,
+                 'ifFormat'       => '%Y-%m-%d %I:%M %P',
+                 'timeFormat'     => '12'),
+           // field attributes go here
+           array('style'       => 'width: 15em; color: #840; background-color: #ff8; border: 1px solid #000; text-align: center',
+                 'name'        => 'date1',
+                 'value'       => strftime('%Y-%m-%d %I:%M %P', strtotime('now')))); ?>
+     </td>
+     </tr>
+     </table>
+
+     <hr />
+     <button>Submit</button>
+
+     </form>
+
+<?php } ?>
+
+</body>
+</html>
diff --git a/tool.gif b/tool.gif
new file mode 100644
index 0000000..a680450
Binary files /dev/null and b/tool.gif differ
diff --git a/utils.py b/utils.py
new file mode 100755
index 0000000..a2586c4
--- /dev/null
+++ b/utils.py
@@ -0,0 +1,280 @@
+#######################################################################################
+#   Plinn - http://plinn.org                                                          #
+#   Copyright (C) 2005-2007  Benoît PIN <benoit.pin@ensmp.fr>                         #
+#                                                                                     #
+#   This program is free software; you can redistribute it and/or                     #
+#   modify it under the terms of the GNU General Public License                       #
+#   as published by the Free Software Foundation; either version 2                    #
+#   of the License, or (at your option) any later version.                            #
+#                                                                                     #
+#   This program is distributed in the hope that it will be useful,                   #
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of                    #
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                     #
+#   GNU General Public License for more details.                                      #
+#                                                                                     #
+#   You should have received a copy of the GNU General Public License                 #
+#   along with this program; if not, write to the Free Software                       #
+#   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.   #
+#######################################################################################
+""" Plinn public utilities
+$Id: utils.py 1534 2009-09-07 11:05:57Z pin $
+$URL: http://svn.cri.ensmp.fr/svn/Plinn/branches/CMF-2.1/utils.py $
+"""
+
+import string
+import re
+from types import StringType
+from random import randrange
+from Acquisition import aq_base
+from AccessControl.PermissionRole import rolesForPermissionOn
+from AccessControl import ModuleSecurityInfo
+from AccessControl import getSecurityManager
+from AccessControl.User import UnrestrictedUser
+from OFS.CopySupport import _cb_decode, _cb_encode, cookie_path
+from Products.CMFCore.utils import getToolByName, getUtilityByInterfaceName
+from Products.CMFCore.exceptions import BadRequest
+from Products.Utf8Splitter.Utf8Splitter import Utf8Utils
+from Globals import REPLACEABLE, NOT_REPLACEABLE, UNIQUE
+from Products.PageTemplates.GlobalTranslationService import getGlobalTranslationService
+from zope.i18n.interfaces import IUserPreferredLanguages
+from zope.i18nmessageid import MessageFactory
+from zope.component.interfaces import ComponentLookupError
+from zope.dottedname.resolve import resolve as resolve_dotted_name
+from zope.component import queryAdapter
+
+_marker = []
+
+security = ModuleSecurityInfo( 'Products.Plinn.utils' )
+
+security.declarePublic('thisObjectComeFromPortalSkin')
+def thisObjectComeFromPortalSkin(ob, portal=None):
+	""" check if ob comes from portal_skins """
+	if not portal :
+		portal = getToolByName(ob, 'portal_url')
+		portal = portal.getPortalObject()
+	
+	if ob.aq_self == portal.aq_self :
+		return False
+	
+	obId = ob.id
+	if callable(obId) :
+		obId = obId()
+	
+	sob = getattr(portal, obId, None)
+		
+	if sob is None :
+		return False
+	elif not(sob.aq_inner.aq_self is ob.aq_inner.aq_self) :
+		return False
+	else :
+		try :
+			portal._checkId(obId)
+			return True
+		except BadRequest :
+			return False
+
+security.declarePublic('listActionProviders_')
+def listActionProviders_(context) :
+	atool = getToolByName(context, 'portal_actions')
+	return atool.listActionProviders()
+
+def capitalizeCompoundGivenName(givenName) :
+	givenName = givenName.strip()
+	givenNames = ' '.join(givenName.split('-')).split()
+	givenNameCapitalized = '-'.join(map(string.capitalize, givenNames))
+	return givenNameCapitalized
+				
+			 
+def formatFullName(memberName, memberGivenName, memberId, nameBefore=1) :
+	memberFullName = ''
+	if memberName and memberGivenName :
+		if nameBefore :
+			memberFullName = memberName.capitalize() + ' ' + capitalizeCompoundGivenName(memberGivenName)
+		else :
+			memberFullName = capitalizeCompoundGivenName(memberGivenName) + ' ' + memberName.capitalize() 
+		
+	elif memberName and not memberGivenName :
+		memberFullName = memberName.capitalize()
+		
+	elif not memberName and memberGivenName :
+		memberFullName = capitalizeCompoundGivenName(memberGivenName)
+		
+	else :
+		memberFullName = memberId
+	
+	return memberFullName
+
+# from OFS.ObjectManager #63
+bad_url_chars = re.compile(r'[^a-zA-Z0-9-_~,.$\(\)@]')
+
+security.declarePublic('makeValidId')
+def makeValidId(self, id, allow_dup=0):
+	id = Utf8Utils.desacc(id)
+	id = bad_url_chars.sub('-', id)
+	# If allow_dup is false, an error will be raised if an object
+	# with the given id already exists. If allow_dup is true,
+	# only check that the id string contains no illegal chars;
+	# check_valid_id() will be called again later with allow_dup
+	# set to false before the object is added.
+	
+	makeRandomId = False
+	if id in ('.', '..'):
+		makeRandomId = True
+	if id.startswith('_'):
+		id = id.lstrip('_')
+	if id.startswith('aq_'): 
+		id = id[3:]
+	
+	while id.endswith('__') :
+		id = id[:-1]
+	if not allow_dup:
+		obj = getattr(self, id, None)
+		if obj is not None:
+			# An object by the given id exists either in this
+			# ObjectManager or in the acquisition path.
+			flags = getattr(obj, '__replaceable__', NOT_REPLACEABLE)
+			if hasattr(aq_base(self), id):
+				# The object is located in this ObjectManager.
+				if not flags & REPLACEABLE:
+					makeRandomId = True
+				# else the object is replaceable even if the UNIQUE
+				# flag is set.
+			elif flags & UNIQUE:
+				makeRandomId = True
+	if id == 'REQUEST':
+		makeRandomId = True
+	
+	if makeRandomId is True :
+		id = str(randrange(2,10000)) + id
+	return id
+	
+	
+
+def _checkMemberPermission(userid, permission, obj, StringType = type('')):
+	user = obj.aq_inner.acl_users.getUser(userid)
+	roles = rolesForPermissionOn(permission, obj)
+	if type(roles) is StringType:
+		roles=[roles]
+	if user.allowed( obj, roles ):
+		return 1
+	return 0
+	
+def getCPInfo(self) :
+	try: cp = _cb_decode(self.REQUEST['__cp'])
+	except: return None
+	return cp
+
+
+def popCP(self, indexes=None) :
+	try: cp = _cb_decode(self.REQUEST['__cp'])
+	except: return
+	
+	paths = list(cp[1])
+	if indexes is not None :
+		indexes = list(indexes)
+		indexes.sort()
+		indexes.reverse()
+		for index in indexes :
+			paths.pop(index)
+	else :
+		paths.pop()
+	
+	if not paths :
+		self.REQUEST.RESPONSE.expireCookie('__cp', path=self.REQUEST['BASEPATH1'] or "/")
+	else :
+		paths = tuple(paths)
+		cp = _cb_encode( (cp[0], paths) )
+		resp = self.REQUEST['RESPONSE']
+		resp.setCookie('__cp', cp, path='%s' % cookie_path(self.REQUEST))
+
+security.declarePublic('Message')
+Message = MessageFactory('plinn')
+
+security.declarePublic('translate')
+def translate(message, context):
+	""" Translate i18n message.
+	"""
+	GTS = getGlobalTranslationService()
+	if isinstance(message, Exception):
+		try:
+			message = message[0]
+		except (TypeError, IndexError):
+			pass
+	return GTS.translate('plinn', message, context=context)
+
+security.declarePublic('desacc')
+desacc = Utf8Utils.desacc
+
+security.declarePublic('getPreferredLanguages')
+def getPreferredLanguages(context):
+	""" returns browser prefered languages"""
+	request = getattr(context, 'REQUEST', None)
+	if request is not None :
+		adapter = IUserPreferredLanguages(request, None)
+		if adapter is not None :
+			return adapter.getPreferredLanguages()
+	return []
+
+security.declarePublic('getBestTranslationLanguage')
+def getBestTranslationLanguage(langs, context):
+	""" returns best translation language according
+		availables languages (param langs)
+		and user preferences (retrieves by context)
+	"""
+	request = getattr(context, 'REQUEST', None)
+	if request :
+		negociator = getUtilityByInterfaceName('zope.i18n.interfaces.INegotiator')
+		return negociator.getLanguage(langs, request) or langs[0]
+	else :
+		return langs[0]
+
+security.declarePublic('getAdapterByInterface')
+def getAdapterByInterface(ob, dotted_name, default=_marker) :
+	""" Get the adapter which provides the interface on the given object.
+	"""
+	try:
+		iface = resolve_dotted_name(dotted_name)
+	except ImportError:
+		if default is _marker:
+			raise ComponentLookupError, dotted_name
+		return default
+
+	adapter = queryAdapter(ob, iface, default=default)
+	if adapter is _marker :
+		raise ComponentLookupError, "no adapter providing %r found on %r" % (dotted_name, ob)
+
+	# the adapter must be wrapped to allow security mahinery to work.
+	if adapter != default :
+		return adapter.__of__(ob)
+	else :
+		return default
+
+def _sudo(func, userid=None) :
+	"""
+	execute func or any callable object
+	without restriction. Used to switch off
+	security assertions (eg. checkPermission) encountered
+	during the execution.
+	"""
+	
+	sm = getSecurityManager()
+	restrictedUser = sm.getUser()
+	
+	if not userid :
+		userid = restrictedUser.getId()
+	
+	sm._context.user = UnrestrictedUser(userid, '', (), ())
+
+	deferedEx = None
+	try :
+		ret = func()
+	except Exception, e :
+		deferedEx = e
+	
+	sm._context.user = restrictedUser
+	
+	if deferedEx is not None :
+		raise e
+
+	return ret
+	
\ No newline at end of file
diff --git a/version.txt b/version.txt
new file mode 100644
index 0000000..6ef7a3c
--- /dev/null
+++ b/version.txt
@@ -0,0 +1 @@
+2.0 beta 1
\ No newline at end of file
diff --git a/www/configureCalendarTool.zpt b/www/configureCalendarTool.zpt
new file mode 100644
index 0000000..2861ef6
--- /dev/null
+++ b/www/configureCalendarTool.zpt
@@ -0,0 +1,23 @@
+<tal:header tal:replace="structure here/manage_page_header">header</tal:header>
+<tal:tabs   tal:replace="structure here/manage_tabs">tabs</tal:tabs>
+<div i18n:domain="plinn">
+  <h3 i18n:translate="">Configure <code i18n:name="portal_calendar">portal_calendar</code> Tool</h3>
+  <form action="." method="get" tal:attributes="action here/absolute_url"
+      tal:define="indexes here/getCandidateIndexes ;
+      						dateIndexes here/getDateIndexes ;
+      						displayRange here/getDisplayRange ;
+      					  ">
+    <h4 i18n:translate="">Select date indexes</h4>
+    <select name="dateIndexes:list" size="7" multiple>
+      <option value="index" tal:repeat="index indexes" tal:attributes="value index ; selected python:index in dateIndexes" tal:content="index">index</option>
+    </select><br />
+    <h4 i18n:translate="">Select default time range displayed in calendar week view</h4>
+    <input type="text" name="displayRange:tokens" size="24" tal:attributes="value python:' '.join(map(lambda i : str(i/4), displayRange))"/>
+    <span i18n:translate="">(start and end time in hour)</span>
+    <br />
+    <input type="submit" name="configureTool:method" value="Change" i18n:attributes="value" />
+  </form>
+</div>
+<tal:footer tal:replace="structure here/manage_page_footer">footer</tal:footer>
+
+
diff --git a/www/configureMembershipTool.zpt b/www/configureMembershipTool.zpt
new file mode 100644
index 0000000..1804707
--- /dev/null
+++ b/www/configureMembershipTool.zpt
@@ -0,0 +1,98 @@
+<tal:header tal:replace="structure here/manage_page_header">header</tal:header>
+<tal:tabs   tal:replace="structure here/manage_tabs">tabs</tal:tabs>
+<div tal:omit-tag="" i18n:domain="plinn">
+<h2 i18n:translate="">Membership role mappings</h2>
+
+<p i18n:translate="membership_role_mapping_explanations">Use this screen if you are using a userfolder other than the built-in folder to map 
+existing role names to roles understood by the CMF.</p>
+
+<table border="1" cellpadding="3">
+  <tr>
+    <td class="form-label"><b i18n:translate="">Portal Role</b></td>
+    <td class="form-label"><b i18n:translate="">User Folder-defined Role</b></td>
+    <td>&nbsp;</td>
+  </tr>
+  <tr tal:repeat="role context/getPortalRoles">
+    <form method="post" action="setRoleMapping">
+      <td class="form-label">
+        <span tal:replace="role">role</span>
+        <input type="hidden" name="portal_role" tal:attributes="value role"/>
+      </td>
+      <td class="form-element">
+        <input type="text" size="30" name="userfolder_role"
+               tal:attributes="value python:context.getMappedRole(role)"/>
+      </td>
+      <td>
+        <input type="submit" value="Set Mapping" i18n:attributes="value"/></td>
+    </form>
+  </tr>
+</table>
+
+<p><hr/></p>
+
+<h2 i18n:translate="member_creation_area_title">Creation of member areas</h2>
+
+<p i18n:translate="member_creation_area_explanations">This feature controls whether users coming from an outside user source (such as an underlying 
+user folder) will have their own folder created upon first login or not</p>
+
+<form method="post" action=".">
+
+  <div tal:condition="python:context.getMemberareaCreationFlag() == 1">
+    <p><b i18n:translate="">Folders are created upon first login.</b></p>
+    <input type="submit"
+           name="setMemberareaCreationFlag:method"
+           value="Turn folder creation off"
+           i18n:attributes="value"/><br/>
+    <p><b i18n:translate="">Select member area folder type to construct:</b>
+      <select name="member_folder_portal_type">
+        <option tal:condition="python:context.getMemberAreaPortalType() not in context.portal_types.objectIds('Factory-based Type Information')"
+                disabled="disabled" i18n:translate="">Unknown type</option>
+        <option tal:repeat="pt python:context.portal_types.objectIds('Factory-based Type Information')"
+                tal:attributes="value pt;
+                                selected python:pt == context.getMemberAreaPortalType()"
+                tal:content="pt"></option>
+      </select>
+      <input type="submit" name="setMemberAreaPortalType:method" value="Change" i18n:attributes="value"/>
+      <div tal:condition="python:context.getMemberAreaPortalType() not in context.portal_types.objectIds('Factory-based Type Information')"
+           style="color:#f00"
+           i18n:translate="">WARNING: The current portal type is unknown. You must change the value to enable the member area creation.</div>
+  </div>
+  
+  <div tal:condition="python:context.getMemberareaCreationFlag() == 0">
+    <p>
+      <b i18n:translate="">No Folders are created.</b>
+      <input type="submit"
+             name="setMemberareaCreationFlag:method"
+             value="Turn folder creation on"
+             i18n:attributes="value"/>
+  </div>
+
+</form>
+<p><hr/></p>
+
+<h2 i18n:translate="">Base folder of members' folders</h2>
+
+<p i18n:translate="">This folder has to be in the same container as the membership tool.</p>
+
+<form action="manage_setMembersFolderById" method="post">
+<table cellspacing="2">
+<tr>
+  <td align="left" valign="top">
+    <div class="form-label" i18n:translate="">Members folder id</div>
+  </td>
+  <td align="left" valign="top">
+    <input class="form-element" type="text" name="id"
+           tal:attributes="value context/membersfolder_id"/>
+  </td>
+</tr>
+<tr>
+  <td>
+  </td>
+  <td align="left" valign="top">
+    <input class="form-element" type="submit" value="Change" i18n:attributes="value"/>
+  </td>
+</tr>
+</table>
+</form>
+</div>
+<tal:footer tal:replace="structure here/manage_page_footer">footer</tal:footer>
\ No newline at end of file
diff --git a/www/configureRegistrationTool.zpt b/www/configureRegistrationTool.zpt
new file mode 100644
index 0000000..073e279
--- /dev/null
+++ b/www/configureRegistrationTool.zpt
@@ -0,0 +1,24 @@
+<tal:header tal:replace="structure here/manage_page_header">header</tal:header>
+<tal:tabs   tal:replace="structure here/manage_tabs">tabs</tal:tabs>
+<div i18n:domain="plinn">
+  <h3 i18n:translate="">Configure <code i18n:name="portal_calendar">portal_registration</code> Tool</h3>
+  <br />
+  <h4 i18n:translate="">Select registration mode</h4>
+  <form action="." method="post" tal:attributes="action here/absolute_url">
+    <label><input type="radio" name="registration_mode" value="anonymous" tal:attributes="checked python:here.getMode() == 'anonymous'" /> <span i18n:translate="" tal:omit-tag="">Anonymous registration</span></label><br />
+    <label><input type="radio" name="registration_mode" value="manager" tal:attributes="checked python:here.getMode() == 'manager'"  /> <span i18n:translate="" tal:omit-tag="">Portal manager registration</span></label><br />
+    <div>
+	    <label><input type="radio" name="registration_mode" value="reviewed" tal:attributes="checked python:here.getMode() == 'reviewed'" /> <span i18n:translate="" tal:omit-tag="">Reviewed registration</span></label><br />
+	    <div style="margin-left : 1em">
+        <em i18n:translate="" >Workflow chain</em><br />
+        <input type="text" name="chain" size="50" value="workflow chain" tal:attributes="value here/getWfChain" />
+      </div>
+	  </div>
+	  <h5 style="color : red" i18n:translate=""
+				tal:condition="here/roleMappingMismatch">Role mapping mismatch : click Validate to solve this problem !</h5>
+    <input type="submit" name="configureTool:method" value="Validate" i18n:attributes="value" />
+  </form>
+</div>
+<tal:footer tal:replace="structure here/manage_page_footer">footer</tal:footer>
+
+