|
|
 |
|
Bereavement/Funeral Leave |
Employees are eligible for five days of bereavement leave with pay for each death of an immediate family member.
Immediate family member includes:
- the employee’s spouse or domestic partner;
- the employee’s, spouse’s or domestic partner’s father, mother, sister, brother, grandparent, great-grandparent, child (including foster, adopted and step child), grandchild;
- the employee’s son-in-law, daughter-in-law; and
- a relative of the employee, spouse or domestic partner who is living in the immediate household of the employee.
CSUEU employees may request in writing subject to supervisory approval to extend their bereavement leave by using accrued sick leave. Non-represented employees may use up to five days of sick leave to extend their bereavement leave subject to supervisory approval.
SETC employees may contact Vivian Dea in HR Services for additional information.
Policy Statements
- All CO Employees
- CSUEU Represented Employees (Units 7 and 9)
- SETC Represented Employees (Unit 6)
Note: Where there is a conflict with the collective bargaining agreement and the above summary, the collective bargaining agreement prevails. |
|
Last Updated:
<%
'Dim strFileName
'Dim dtmLastModified
'Dim dtmLastModifiedDate
'Dim dtmLastModifiedTime
Dim strFileName, strFileNameCalendar, objFile, objFileSystemObject
Dim dtmLastModified, dtmLastModifiedDate, dtmLastModifiedTime
Dim sLastModifiedMonth
strFileName = Request.ServerVariables("SCRIPT_NAME")
strFileName = Replace(strFileName, "/", "\")
strFileName = Server.MapPath(strFileName)
Set objFileSystemObject = Server.CreateObject("Scripting.FileSystemObject")
Set objFile = objFileSystemObject.GetFile(strFileName)
dtmLastModified = objFile.DateLastModified
Set objFile = Nothing
Set objFileSystemObject = Nothing
dtmLastModifiedDate = FormatDateTime(dtmLastModified, 1)
dtmLastModifiedTime = FormatDateTime(dtmLastModified, 3)
Select Case Month(dtmLastModified)
Case 1
sLastModifiedMonth = "January"
Case 2
sLastModifiedMonth = "February"
Case 3
sLastModifiedMonth = "March"
Case 4
sLastModifiedMonth = "April"
Case 5
sLastModifiedMonth = "May"
Case 6
sLastModifiedMonth = "June"
Case 7
sLastModifiedMonth = "July"
Case 8
sLastModifiedMonth = "August"
Case 9
sLastModifiedMonth = "September"
Case 10
sLastModifiedMonth = "October"
Case 11
sLastModifiedMonth = "November"
Case 12
sLastModifiedMonth = "December"
End Select
Response.Write sLastModifiedMonth & " " & Day(dtmLastModified) & ", " & Year(dtmLastModified)
%>
|