Tables
Tables are used to display relevant data and are not to be used for layout purposes.
Table cells have a data-th attribute that uses the heading text relevant to that cell within its content when viewed on a mobile device. This attribute needs to exist to ensure mobile device users see the cell's heading.
| First heading | Second heading | Third heading |
|---|---|---|
| Column cell | Column cell | Column cell |
| Column cell | Column cell | Column cell |
| Column cell | Column cell | Column cell |
<table class="c-table">
<tbody>
<tr>
<th>First heading</th>
<th>Second heading</th>
<th>Third heading</th>
</tr>
<tr>
<td data-th="First heading">Column cell</td>
<td data-th="Second heading">Column cell</td>
<td data-th="Third heading">Column cell</td>
</tr>
<tr>
<td data-th="First heading">Column cell</td>
<td data-th="Second heading">Column cell</td>
<td data-th="Third heading">Column cell</td>
</tr>
<tr>
<td data-th="First heading">Column cell</td>
<td data-th="Second heading">Column cell</td>
<td data-th="Third heading">Column cell</td>
</tr>
</tbody>
</table>
Vertical header table
The standard table style with a vertical header.
| First heading | Column cell | Column cell | Column cell |
|---|---|---|---|
| Second heading | Column cell | Column cell | Column cell |
| Third heading | Column cell | Column cell | Column cell |
<table class="c-table">
<tbody>
<tr>
<th>First heading</th>
<td data-th="First heading">Column cell</td>
<td data-th="First heading">Column cell</td>
<td data-th="First heading">Column cell</td>
</tr>
<tr>
<th>Second heading</th>
<td data-th="Second heading">Column cell</td>
<td data-th="Second heading">Column cell</td>
<td data-th="Second heading">Column cell</td>
</tr>
<tr>
<th>Third heading</th>
<td data-th="Third heading">Column cell</td>
<td data-th="Third heading">Column cell</td>
<td data-th="Third heading">Column cell</td>
</tr>
</tbody>
</table>
Caption table
This is the standard table with a caption.
| First heading | Second heading | Third heading |
|---|---|---|
| Column cell | Column cell | Column cell |
| Column cell | Column cell | Column cell |
| Column cell | Column cell | Column cell |
<table class="c-table">
<caption>Table Caption</caption>
<tbody>
<tr>
<th>First heading</th>
<th>Second heading</th>
<th>Third heading</th>
</tr>
<tr>
<td data-th="First heading">Column cell</td>
<td data-th="Second heading">Column cell</td>
<td data-th="Third heading">Column cell</td>
</tr>
<tr>
<td data-th="First heading">Column cell</td>
<td data-th="Second heading">Column cell</td>
<td data-th="Third heading">Column cell</td>
</tr>
<tr>
<td data-th="First heading">Column cell</td>
<td data-th="Second heading">Column cell</td>
<td data-th="Third heading">Column cell</td>
</tr>
</tbody>
</table>
Striped table
The striped table is a standard table with every odd row highlighted.
| First heading | Second heading | Third heading |
|---|---|---|
| Column cell | Column cell | Column cell |
| Column cell | Column cell | Column cell |
| Column cell | Column cell | Column cell |
<table class="c-table c-table--striped">
<caption>Table Caption</caption>
<tbody>
<tr>
<th>First heading</th>
<th>Second heading</th>
<th>Third heading</th>
</tr>
<tr>
<td data-th="First heading">Column cell</td>
<td data-th="Second heading">Column cell</td>
<td data-th="Third heading">Column cell</td>
</tr>
<tr>
<td data-th="First heading">Column cell</td>
<td data-th="Second heading">Column cell</td>
<td data-th="Third heading">Column cell</td>
</tr>
<tr>
<td data-th="First heading">Column cell</td>
<td data-th="Second heading">Column cell</td>
<td data-th="Third heading">Column cell</td>
</tr>
</tbody>
</table>
Table cell colours
The standard table style with a caption, optional secondary heading and a demonstration of cell colour options and how links will be styled in the coloured cells.
Default <th> should be used as the primary <th> style. If there are sub-headings (which we advise against due to possible readability issues on mobile devices - it is better to split the table into multiple tables), the secondary heading class .c-table__heading-secondary should be used (see multiple header and sub-header table example).
Coloured table cells should be used sparingly, however where you need to highlight or differentiate data cells colours can be used. Colours that are not shown below should not be used. This is because it can cause readability and accessibility issues and may not be brand compliant. Please discuss your needs with us if the amount of colour options below does not fit your needs.
It is important to note that colour should not define content grouping. The table should be structured in a manner that makes sense to users and text should be made bold with the <strong> tag if it is an important word or sentence.
| Primary heading - first cell | Primary heading - second cell | Primary heading - third cell |
|---|---|---|
| Secondary heading - first cell | Secondary heading - second cell | Secondary heading - third cell |
| Column cell | Column cell | Column cell |
| Column cell | Column cell | Column cell |
| Column cell | Column cell | Column cell |
<table class="c-table">
<caption>Table Caption</caption>
<tbody>
<tr>
<th>Primary heading - first cell</th>
<th>Primary heading - second cell</th>
<th>Primary heading - third cell</th>
</tr>
<tr>
<th class="c-table__heading-secondary">Secondary heading - first cell</th>
<th class="c-table__heading-secondary">Secondary heading - second cell</th>
<th class="c-table__heading-secondary">Secondary heading - third cell</th>
</tr>
<tr>
<td data-th="Primary heading - first; Secondary heading - first cell" class="c-table__cell-primary-light"><a href="#0">Column</a> cell</td>
<td data-th="Primary heading - second; Secondary heading - second cell" class="c-table__cell-tertiary"><a href="#0">Column</a> cell</td>
<td data-th="Primary heading - third; Secondary heading - third cell" class="c-table__cell-tertiary-light"><a href="#0">Column</a> cell</td>
</tr>
<tr>
<td data-th="Primary heading - first; Secondary heading - first cell">Column cell</td>
<td data-th="Primary heading - second; Secondary heading - second cell">Column cell</td>
<td data-th="Primary heading - third; Secondary heading - third cell">Column cell</td>
</tr>
<tr>
<td data-th="Primary heading - first; Secondary heading - first cell">Column cell</td>
<td data-th="Primary heading - second; Secondary heading - second cell">Column cell</td>
<td data-th="Primary heading - third; Secondary heading - third cell">Column cell</td>
</tr>
</tbody>
</table>
Two header table
The standard table style with both a horizontal and vertical header. Note that the data-th attribute gathers both of the headings relevant to a cell.
| Monday | Tuesday | Wednesday | Thursday | Friday | |
|---|---|---|---|---|---|
| 09:00 - 12:00 | Closed | Open | Open | Closed | Closed |
| 13:00 - 17:00 | Open | Open | Open | Closed | Closed |
<table class="c-table">
<caption>Opening Times:</caption>
<tr>
<th></th>
<th scope="col">Monday</th>
<th scope="col">Tuesday</th>
<th scope="col">Wednesday</th>
<th scope="col">Thursday</th>
<th scope="col">Friday</th>
</tr>
<tr>
<th scope="row">09:00 - 12:00</th>
<td data-th="Monday; 09:00 - 12:00">Closed</td>
<td data-th="Tuesday; 09:00 - 12:00">Open</td>
<td data-th="Wednesday; 09:00 - 12:00">Open</td>
<td data-th="Thursday; 09:00 - 12:00">Closed</td>
<td data-th="Friday; 09:00 - 12:00">Closed</td>
</tr>
<tr>
<th scope="row">13:00 - 17:00</th>
<td data-th="Monday; 13:00 - 17:00">Open</td>
<td data-th="Tuesday; 13:00 - 17:00">Open</td>
<td data-th="Wednesday; 13:00 - 17:00">Open</td>
<td data-th="Thursday; 13:00 - 17:00">Closed</td>
<td data-th="Friday; 13:00 - 17:00">Closed</td>
</tr>
</table>
Multiple header and sub-header table
The standard table style with multiple column headers, a row header and two sub-headers. Please note how the data-th attribute is setup to cover each relevant heading to a cell.
| Monday | Tuesday | Wednesday | Thursday | Friday | |
|---|---|---|---|---|---|
| Faculty A | |||||
| Morning | 9am - 12pm | 8am - 10am | Closed | Closed | Closed |
| Afternoon | 1pm - 4pm | 12pm - 4pm | 12pm - 4pm | 12pm - 4pm | 12pm - 4pm |
| Evening | Closed | Closed | Closed | Closed | 6pm - 8pm |
| Faculty B | |||||
| Morning | 8.30am - 11.30am | 8.30am - 11.30am | 8.30am - 11.30am | 9am - 12pm | Closed |
| Afternoon | 12pm - 4pm | 12pm - 4pm | 12pm - 4pm | 12pm - 4pm | 12pm - 4pm |
| Evening | Closed | Closed | Closed | Closed | Closed |
<table class="c-table" summary="Column one has the Faculty and time of day range, other columns show the day and times available">
<caption>Faculty Opening Hours</caption>
<thead>
<tr>
<th></th>
<th id="monday" scope="col">Monday</th>
<th id="tuesday" scope="col">Tuesday</th>
<th id="wednesday" scope="col">Wednesday</th>
<th id="thursday" scope="col">Thursday</th>
<th id="friday" scope="col">Friday</th>
</tr>
</thead>
<tbody>
<tr>
<th id="faculty-a" class="c-table__heading-secondary" colspan="6" scope="colgroup">Faculty A</th>
</tr>
<tr>
<th headers="faculty-a" id="morning">Morning</th>
<td data-th="Faculty A; Monday; Morning" headers="faculty-a morning monday">9am - 12pm</td>
<td data-th="Faculty A; Tuesday; Morning" headers="faculty-a morning tuesday">8am - 10am</td>
<td data-th="Faculty A; Wednesday; Morning" headers="faculty-a morning wednesday">Closed</td>
<td data-th="Faculty A; Thursday; Morning" headers="faculty-a morning thursday">Closed</td>
<td data-th="Faculty A; Friday; Morning" headers="faculty-a morning friday">Closed</td>
</tr>
<tr>
<th headers="faculty-a" id="afternoon">Afternoon</th>
<td data-th="Faculty A; Monday; Afternoon" headers="faculty-a afternoon monday">1pm - 4pm</td>
<td data-th="Faculty A; Tuesday; Afternoon" headers="faculty-a afternoon tuesday">12pm - 4pm</td>
<td data-th="Faculty A; Wednesday; Afternoon" headers="faculty-a afternoon wednesday">12pm - 4pm</td>
<td data-th="Faculty A; Thursday; Afternoon" headers="faculty-a afternoon thursday">12pm - 4pm</td>
<td data-th="Faculty A; Friday; Afternoon" headers="faculty-a afternoon friday">12pm - 4pm</td>
</tr>
<tr>
<th headers="faculty-a" id="evening">Evening</th>
<td data-th="Faculty A; Monday; Evening" headers="faculty-a evening monday">Closed</td>
<td data-th="Faculty A; Tuesday; Evening" headers="faculty-a evening tuesday">Closed</td>
<td data-th="Faculty A; Wednesday; Evening" headers="faculty-a evening wednesday">Closed</td>
<td data-th="Faculty A; Thursday; Evening" headers="faculty-a evening thursday">Closed</td>
<td data-th="Faculty A; Friday; Evening" headers="faculty-a evening friday">6pm - 8pm</td>
</tr>
</tbody>
<tbody>
<tr>
<th id="faculty-b" class="c-table__heading-secondary" colspan="6" scope="colgroup">Faculty B</th>
</tr>
<tr>
<th id="morning-2" headers="faculty-b">Morning</th>
<td data-th="Faculty B; Monday; Morning" headers="faculty-b morning-2 monday">8.30am - 11.30am</td>
<td data-th="Faculty B; Tuesday; Morning" headers="faculty-b morning-2 tuesday">8.30am - 11.30am</td>
<td data-th="Faculty B; Wednesday; Morning" headers="faculty-b morning-2 wednesday">8.30am - 11.30am</td>
<td data-th="Faculty B; Thursday; Morning" headers="faculty-b morning-2 thursday">9am - 12pm</td>
<td data-th="Faculty B; Friday; Morning" headers="faculty-b morning-2 friday">Closed</td>
</tr>
<tr>
<th id="afternoon-2" headers="faculty-b">Afternoon</th>
<td data-th="Faculty B; Monday; Afternoon" headers="faculty-b afternoon-2 monday">12pm - 4pm</td>
<td data-th="Faculty B; Tuesday; Afternoon" headers="faculty-b afternoon-2 tuesday">12pm - 4pm</td>
<td data-th="Faculty B; Wednesday; Afternoon" headers="faculty-b afternoon-2 wednesday">12pm - 4pm</td>
<td data-th="Faculty B; Thursday; Afternoon" headers="faculty-b afternoon-2 thursday">12pm - 4pm</td>
<td data-th="Faculty B; Friday; Afternoon" headers="faculty-b afternoon-2 friday">12pm - 4pm</td>
</tr>
<tr>
<th id="evening-2" headers="faculty-b">Evening</th>
<td data-th="Faculty B; Monday; Evening" headers="faculty-b evening-2 monday">Closed</td>
<td data-th="Faculty B; Tuesday; Evening" headers="faculty-b evening-2 tuesday">Closed</td>
<td data-th="Faculty B; Wednesday; Evening" headers="faculty-b evening-2 wednesday">Closed</td>
<td data-th="Faculty B; Thursday; Evening" headers="faculty-b evening-2 thursday">Closed</td>
<td data-th="Faculty B; Friday; Evening" headers="faculty-b evening-2 friday">Closed</td>
</tr>
</tbody>
</table>
Merged table header cells (with multiple headings)
The standard table style with merged heading cells and secondary headings.
| Publication type | Colour | Sizes available | ||
|---|---|---|---|---|
| Newsletter | Full colour | A2 | A3 | A4 |
| Black and white | A1 | A2 | A3 | |
| Form | Black and white | A1 | A3 | A4 |
| Colour | A2 | A3 | A5 | |
<table class="c-table">
<caption>Publication availability</caption>
<col>
<col>
<colgroup span="3"></colgroup>
<thead>
<tr>
<th scope="col">Publication type</th>
<th scope="col">Colour</th>
<th colspan="3" scope="colgroup">Sizes available</th>
</tr>
</thead>
<tbody>
<tr>
<th rowspan="2" scope="rowgroup">Newsletter</th>
<th class="c-table__heading-secondary" scope="row">Full colour</th>
<td data-th="Publication type - Newsletter; Colour - Full colour; Sizes available">A2</td>
<td data-th="Publication type - Newsletter; Colour - Full colour; Sizes available">A3</td>
<td data-th="Publication type - Newsletter; Colour - Full colour; Sizes available">A4</td>
</tr>
<tr>
<th class="c-table__heading-secondary" scope="row">Black and white</th>
<td data-th="Publication type - Newsletter; Black and white; Sizes available">A1</td>
<td data-th="Publication type - Newsletter; Black and white; Sizes available">A2</td>
<td data-th="Publication type - Newsletter; Black and white; Sizes available">A3</td>
</tr>
</tbody>
<tbody>
<tr>
<th rowspan="2" scope="rowgroup">Form</th>
<th class="c-table__heading-secondary" scope="row">Black and white</th>
<td data-th="Publication type - Form; Colour - Black and white; Sizes available">A1</td>
<td data-th="Publication type - Form; Colour - Black and white; Sizes available">A3</td>
<td data-th="Publication type - Form; Colour - Black and white; Sizes available">A4</td>
</tr>
<tr>
<th class="c-table__heading-secondary" scope="row">Colour</th>
<td data-th="Publication type - Form; Colour - Colour; Sizes available">A2</td>
<td data-th="Publication type - Form; Colour - Colour; Sizes available">A3</td>
<td data-th="Publication type - Form; Colour - Colour; Sizes available">A5</td>
</tr>
</tbody>
</table>
Merged header and data cells table
The standard table style with merged heading and merged table cells.
| Heading (rowspan = 5) | Column cell (colspan = 3) | Column cell (rowspan = 5) | ||
|---|---|---|---|---|
| Column cell (colspan = 2) | Column cell | |||
| Column cell | Column cell | Column cell | ||
| Column cell | Column cell | Column cell | ||
| Column cell | Column cell | Column cell | ||
<table class="c-table">
<tbody>
<tr>
<th rowspan="5">Heading (rowspan = 5)</th>
<td data-th="First heading" colspan="3">Column cell (colspan = 3)</td>
<td data-th="First heading" rowspan="5">Column cell (rowspan = 5)</td>
</tr>
<tr>
<td data-th="First heading" colspan="2">Column cell (colspan = 2)</td>
<td data-th="First heading">Column cell</td>
</tr>
<tr>
<td data-th="First heading">Column cell</td>
<td data-th="First heading">Column cell</td>
<td data-th="First heading">Column cell</td>
</tr>
<tr>
<td data-th="First heading">Column cell</td>
<td data-th="First heading">Column cell</td>
<td data-th="First heading">Column cell</td>
</tr>
<tr>
<td data-th="First heading">Column cell</td>
<td data-th="First heading">Column cell</td>
<td data-th="First heading">Column cell</td>
</tr>
</tbody>
</table>
Percentage widths
Percentage widths can be applied as inline styles within the HTML markup to make a table/table cell width smaller than it would be by default. This width is overridden at tablet size when the heading is hidden and displayed within the td cell instead.
Please note: the width= attribute is deprecated in HTML5.
| First heading | Second heading | Third heading |
|---|---|---|
| Column cell | Column cell | Column cell |
| Column cell | Column cell | Column cell |
| Column cell | Column cell | Column cell |
<table class="c-table" style="width: 50%">
<tbody>
<tr>
<th>First heading</th>
<th>Second heading</th>
<th>Third heading</th>
</tr>
<tr>
<td style="width: 20%" data-th="First heading">Column cell</td>
<td style="width: 30%" data-th="Second heading">Column cell</td>
<td data-th="Third heading">Column cell</td>
</tr>
<tr>
<td data-th="First heading">Column cell</td>
<td data-th="Second heading">Column cell</td>
<td data-th="Third heading">Column cell</td>
</tr>
<tr>
<td data-th="First heading">Column cell</td>
<td data-th="Second heading">Column cell</td>
<td data-th="Third heading">Column cell</td>
</tr>
</tbody>
</table>
Sortable tables
Sortable tables are used when you want to allow a user to sort the data in a table's column. By clicking on the table header cell, users can sort the data as they wish.
The 'Filter' input section allows users to filter the content and show only the rows which contain a specific word or words.
There is a 'next and 'previous' button below the table to allow users to navigate between the pages of a table. By default, 15 rows are shown on a page, however users can alter the amount of rows shown via the drop down at the top of the table.
As seen in the style guide example below, you can use HTML data-* attributes to override the sortable table as per DataTable.js contrib plugin documentation.
Columns are sorted based on content, however; generally they sort alphabetically, or in the following date/day/time formats:
- 01/12/2017
- 1 Dec 2017
- Friday, December 1, 2017
- 1 Dec 2017, 1:00pm
- 1 Dec 2017, 1:00pm - 2:00pm
Note: users need to use one of the above formats on all cells in a chosen column in order to sort the content correctly.
JavaScript class: .js-table-sortable
| Name | Age | Date (format option 1) | Date (format option 2) | Date (format option 3) | Date (format option 4) | Date (format option 5) | Salary |
|---|---|---|---|---|---|---|---|
| Tiger Nixon | 61 | 25/04/2011 | 25 Apr 2011 | Friday, April 25, 2011 | 25 Apr 2011, 2:00pm | 25 Apr 2011, 2:00pm - 3:00pm | $320,800 |
| Garrett Winters | 63 | 25/07/2011 | 25 Jul 2011 | Thursday, July 25, 2011 | 25 Jul 2011, 2:00pm | 25 Jul 2011, 2:00pm - 3:00pm | $170,750 |
| Ashton Cox | 66 | 12/01/2009 | 12 Jan 2009 | Friday, January 12, 2009 | 12 Jan 2009, 2:00pm | 12 Jan 2009, 2:00pm - 3:00pm | $86,000 |
| Cedric Kelly | 22 | 29/03/2012 | 29 Mar 2012 | Wednesday, March 29, 2012 | 29 Mar 2012, 2:00pm | 29 Mar 2012, 2:00pm - 3:00pm | $433,060 |
| Airi Satou | 33 | 28/11/2008 | 28 Nov 2008 | Friday, November 28, 2008 | 28 Nov 2008, 2:00pm | 28 Nov 2008, 2:00pm - 3:00pm | $162,700 |
| Brielle Williamson | 61 | 02/12/2012 | 2 Dec 2012 | Monday, December 2, 2012 | 2 Dec 2012, 2:00pm | 2 Dec 2012, 2:00pm - 3:00pm | $372,000 |
| Herrod Chandler | 59 | 06/08/2012 | 6 Aug 2012 | Monday, August 6, 2012 | 6 Aug 2012, 2:00pm | 6 Aug 2012, 2:00pm - 3:00pm | $137,500 |
| Rhona Davidson | 55 | 14/10/2010 | 14 Oct 2010 | Tuesday, October 14, 2010 | 14 Oct 2010, 2:00pm | 14 Oct 2010, 2:00pm - 3:00pm | $327,900 |
| Colleen Hurst | 39 | 15/09/2009 | 15 Sep 2009 | Thursday, September 15, 2009 | 15 Sep 2009, 2:00pm | 15 Sep 2009, 2:00pm - 3:00pm | $205,500 |
| Sonya Frost | 23 | 13/12/2008 | 13 Dec 2008 | Monday, December 13, 2008 | 13 Dec 2008, 2:00pm | 13 Dec 2008, 2:00pm - 3:00pm | $103,600 |
| Jena Gaines | 30 | 19/12/2008 | 19 Dec 2008 | Tuesday, December 19, 2008 | 19 Dec 2008, 2:00pm | 19 Dec 2008, 2:00pm - 3:00pm | $90,560 |
| Quinn Flynn | 22 | 03/03/2013 | 3 Mar 2013 | Wednesday, March 13, 2013 | 3 Mar 2013, 2:00pm | 3 Mar 2013, 2:00pm - 3:00pm | $342,000 |
| Charde Marshall | 36 | 16/10/2008 | 16 Oct 2008 | Wednesday, October 16, 2008 | 16 Oct 2008, 2:00pm | 16 Oct 2008, 2:00pm - 3:00pm | $470,600 |
| Haley Kennedy | 43 | 18/12/2012 | 18 Dec 2012 | Wednesday, December 18, 2012 | 18 Dec 2012, 2:00pm | 18 Dec 2012, 2:00pm - 3:00pm | $313,500 |
| Tatyana Fitzpatrick | 19 | 17/03/2010 | 17 Mar 2010 | Friday, March 17, 2010 | 17 Mar 2010, 2:00pm | 17 Mar 2010, 2:00pm - 3:00pm | $385,750 |
| Michael Silva | 66 | 27/11/2012 | 27 Nov 2012 | Wednesday, November 27, 2012 | 27 Nov 2012, 2:00pm | 27 Nov 2012, 2:00pm - 3:00pm | $198,500 |
| Paul Byrd | 64 | 09/06/2010 | 9 Jun 2010 | Thursday, June 9, 2010 | 9 Jun 2010, 2:00pm | 9 Jun 2010, 2:00pm - 3:00pm | $725,000 |
| Gloria Little | 59 | 10/04/2009 | 10 Apr 2009 | Tuesday, April 10, 2009 | 10 Apr 2009, 2:00pm | 10 Apr 2009, 2:00pm - 3:00pm | $237,500 |
| Bradley Greer | 41 | 13/10/2012 | 13 Oct 2012 | Tuesday, October 13, 2012 | 13 Oct 2012, 2:00pm | 13 Oct 2012, 2:00pm - 3:00pm | $132,000 |
| Dai Rios | 35 | 26/09/2012 | 26 Sep 2012 | Wednesday, September 26, 2012 | 26 Sep 2012, 2:00pm | 26 Sep 2012, 2:00pm - 3:00pm | $217,500 |
| Jenette Caldwell | 30 | 03/09/2011 | 3 Sep 2011 | Wednesday, September 3, 2012 | 3 Sep 2011, 2:00pm | 3 Sep 2011, 2:00pm - 3:00pm | $345,000 |
| Yuri Berry | 40 | 25/06/2009 | 25 Jul 2009 | Thursday, July 25, 2012 | 25 Jul 2009, 2:00pm | 25 Jul 2009, 2:00pm - 3:00pm | $675,000 |
| Caesar Vance | 21 | 12/12/2011 | 12 Dec 2011 | Thursday, July 12, 2011 | 12 Dec 2011, 2:00pm | 12 Dec 2011, 2:00pm - 3:00pm | $106,450 |
| Doris Wilder | 23 | 20/09/2010 | 20 Sep 2010 | Friday, September 20, 2010 | 20 Sep 2010, 2:00pm | 20 Sep 2010, 2:00pm - 3:00pm | $85,600 |
| Angelica Ramos | 47 | 09/10/2009 | 9 Oct 2009 | Thursday, October 9, 2009 | 9 Oct 2009, 2:00pm | 9 Oct 2009, 2:00pm - 3:00pm | $1,200,000 |
| Gavin Joyce | 42 | 22/12/2010 | 22 Dec 2010 | Monday, December 9, 2010 | 22 Dec 2010, 2:00pm | 22 Dec 2010, 2:00pm - 3:00pm | $92,575 |
| Jennifer Chang | 28 | 14/11/2010 | 14 Nov 2010 | Tuesday, November 14, 2010 | 14 Nov 2010, 2:00pm | 14 Nov 2010, 2:00pm - 3:00pm | $357,650 |
| Brenden Wagner | 28 | 07/06/2011 | 7 Jun 2011 | Tuesday, June 7, 2011 | 7 Jun 2011, 2:00pm | 7 Jun 2011, 2:00pm - 3:00pm | $206,850 |
| Fiona Green | 48 | 11/03/2010 | 11 Mar 2010 | Wednesday, March 11, 2010 | 11 Mar 2010, 2:00pm | 11 Mar 2010, 2:00pm - 3:00pm | $850,000 |
| Shou Itou | 20 | 14/08/2011 | 14 Aug 2011 | Wednesday, August 14, 2011 | 14 Aug 2011, 2:00pm | 14 Aug 2011, 2:00pm - 3:00pm | $163,000 |
| Michelle House | 37 | 02/06/2011 | 2 Jul 2011 | Tuesday, July 2, 2011 | 2 Jul 2011, 2:00pm | 2 Jul 2011, 2:00pm - 3:00pm | $95,400 |
| Suki Burks | 53 | 22/10/2009 | 22 Oct 2009 | Wednesday, October 22, 2009 | 22 Oct 2009, 2:00pm | 22 Oct 2009, 2:00pm - 3:00pm | $114,500 |
| Prescott Bartlett | 27 | 07/05/2011 | 7 May 2011 | Thursday, May 7, 2011 | 7 May 2011, 2:00pm | 7 May 2011, 2:00pm - 3:00pm | $145,000 |
| Gavin Cortez | 22 | 26/10/2008 | 26 Oct 2008 | Thursday, October 26, 2008 | 26 Oct 2008, 2:00pm | 26 Oct 2008, 2:00pm - 3:00pm | $235,500 |
| Martena Mccray | 46 | 09/03/2011 | 9 Mar 2011 | Thursday, March 9, 2011 | 9 Mar 2011, 2:00pm | 9 Mar 2011, 2:00pm - 3:00pm | $324,050 |
| Unity Butler | 47 | 09/12/2009 | 9 Dec 2009 | Wednesday, December 9, 2009 | 9 Dec 2009, 2:00pm | 9 Dec 2009, 2:00pm - 3:00pm | $85,675 |
| Howard Hatfield | 51 | 16/12/2008 | 16 Dec 2008 | Friday, December 16, 2008 | 16 Dec 2008, 2:00pm | 16 Dec 2008, 2:00pm - 3:00pm | $164,500 |
| Hope Fuentes | 41 | 12/02/2010 | 12 Feb 2010 | Friday, February 12, 2010 | 12 Feb 2010, 2:00pm | 12 Feb 2010, 2:00pm - 3:00pm | $109,850 |
| Vivian Harrell | 62 | 14/02/2009 | 14 Feb 2009 | Wednesday, February 14, 2009 | 14 Feb 2009, 2:00pm | 14 Feb 2009, 2:00pm - 3:00pm | $452,500 |
| Timothy Mooney | 37 | 11/12/2008 | 11 Dec 2008 | Friday, December 11, 2008 | 11 Dec 2008, 2:00pm | 11 Dec 2008, 2:00pm - 3:00pm | $136,200 |
| Jackson Bradshaw | 65 | 26/09/2008 | 26 Sep 2008 | Friday, September 26, 2008 | 26 Sep 2008, 2:00pm | 26 Sep 2008, 2:00pm - 3:00pm | $645,750 |
| Olivia Liang | 64 | 03/02/2011 | 3 Feb 2011 | Wednesday, February 3, 2011 | 3 Feb 2011, 2:00pm | 3 Feb 2011, 2:00pm - 3:00pm | $234,500 |
| Bruno Nash | 38 | 03/05/2011 | 3 May 2011 | Wednesday, May 3, 2011 | 3 May 2011, 2:00pm | 3 May 2011, 2:00pm - 3:00pm | $163,500 |
| Sakura Yamamoto | 37 | 19/08/2009 | 19 Aug 2009 | Wednesday, August 19, 2009 | 19 Aug 2009, 2:00pm | 19 Aug 2009, 2:00pm - 3:00pm | $139,575 |
| Thor Walton | 61 | 11/08/2013 | 11 Aug 2013 | Friday, August 11, 2013 | 11 Aug 2013, 2:00pm | 11 Aug 2013, 2:00pm - 3:00pm | $98,540 |
| Finn Camacho | 47 | 07/07/2009 | 7 Jul 2009 | Wednesday, July 7, 2009 | 7 Jul 2009, 2:00pm | 7 Jul 2009, 2:00pm - 3:00pm | $87,500 |
| Serge Baldwin | 64 | 09/04/2012 | 9 Apr 2012 | Wednesday, April 9, 2012 | 9 Apr 2012, 2:00pm | 9 Apr 2012, 2:00pm - 3:00pm | $138,575 |
| Zenaida Frank | 63 | 04/01/2010 | 4 Jan 2010 | Thursday, January 4, 2010 | 4 Jan 2010, 2:00pm | 4 Jan 2010, 2:00pm - 3:00pm | $125,250 |
| Zorita Serrano | 56 | 01/06/2012 | 1 Jun 2012 | Wednesday, June 1, 2012 | 1 Jun 2012, 2:00pm | 1 Jun 2012, 2:00pm - 3:00pm | $115,000 |
| Jennifer Acosta | 43 | 01/02/2013 | 1 Feb 2013 | Tuesday, February 1, 2013 | 1 Feb 2013, 2:00pm | 1 Feb 2013, 2:00pm - 3:00pm | $75,650 |
| Cara Stevens | 46 | 06/12/2011 | 6 Dec 2011 | Wednesday, December 6, 2011 | 6 Dec 2011, 2:00pm | 6 Dec 2011, 2:00pm - 3:00pm | $145,600 |
| Hermione Butler | 47 | 21/03/2011 | 21 Mar 2011 | Wednesday, March 21, 2011 | 21 Mar 2011, 2:00pm | 21 Mar 2011, 2:00pm - 3:00pm | $356,250 |
| Lael Greer | 21 | 27/02/2009 | 27 Feb 2009 | Tuesday, February 27, 2009 | 27 Feb 2009, 2:00pm | 27 Feb 2009, 2:00pm - 3:00pm | $103,500 |
| Jonas Alexander | 30 | 14/07/2010 | 14 Jul 2010 | Thursday, July 14, 2010 | 14 Jul 2010, 2:00pm | 14 Jul 2010, 2:00pm - 3:00pm | $86,500 |
| Shad Decker | 51 | 13/11/2008 | 13 Nov 2008 | Wednesday, November 13, 2008 | 13 Nov 2008, 2:00pm | 13 Nov 2008, 2:00pm - 3:00pm | $183,000 |
| Michael Bruce | 29 | 27/06/2011 | 27 Jun 2011 | Friday, June 27, 2011 | 27 Jun 2011, 2:00pm | 27 Jun 2011, 2:00pm - 3:00pm | $183,000 |
| Donna Snider | 27 | 25/01/2011 | 25 Jan 2011 | Monday, January 25, 2011 | 25 Jan 2011, 2:00pm | 25 Jan 2011, 2:00pm - 3:00pm | $112,000 |
<table class="c-table is-sortable js-table-sortable" cellspacing="0" width="100%" data-page-length="15" data-order="[[ 1, "asc" ]]">
<thead>
<tr>
<th>Name</th>
<th>Age</th>
<th>Date (format option 1)</th>
<th>Date (format option 2)</th>
<th>Date (format option 3)</th>
<th>Date (format option 4)</th>
<th>Date (format option 5)</th>
<th>Salary</th>
</tr>
</thead>
<tbody>
<tr>
<td>Tiger Nixon</td>
<td>61</td>
<td>25/04/2011</td>
<td>25 Apr 2011</td>
<td>Friday, April 25, 2011</td>
<td>25 Apr 2011, 2:00pm</td>
<td>25 Apr 2011, 2:00pm - 3:00pm</td>
<td>$320,800</td>
</tr>
<tr>
<td>Garrett Winters</td>
<td>63</td>
<td>25/07/2011</td>
<td>25 Jul 2011</td>
<td>Thursday, July 25, 2011</td>
<td>25 Jul 2011, 2:00pm</td>
<td>25 Jul 2011, 2:00pm - 3:00pm</td>
<td>$170,750</td>
</tr>
<tr>
<td>Ashton Cox</td>
<td>66</td>
<td>12/01/2009</td>
<td>12 Jan 2009</td>
<td>Friday, January 12, 2009</td>
<td>12 Jan 2009, 2:00pm</td>
<td>12 Jan 2009, 2:00pm - 3:00pm</td>
<td>$86,000</td>
</tr>
<tr>
<td>Cedric Kelly</td>
<td>22</td>
<td>29/03/2012</td>
<td>29 Mar 2012</td>
<td>Wednesday, March 29, 2012</td>
<td>29 Mar 2012, 2:00pm</td>
<td>29 Mar 2012, 2:00pm - 3:00pm</td>
<td>$433,060</td>
</tr>
<tr>
<td>Airi Satou</td>
<td>33</td>
<td>28/11/2008</td>
<td>28 Nov 2008</td>
<td>Friday, November 28, 2008</td>
<td>28 Nov 2008, 2:00pm</td>
<td>28 Nov 2008, 2:00pm - 3:00pm</td>
<td>$162,700</td>
</tr>
<tr>
<td>Brielle Williamson</td>
<td>61</td>
<td>02/12/2012</td>
<td>2 Dec 2012</td>
<td>Monday, December 2, 2012</td>
<td>2 Dec 2012, 2:00pm</td>
<td>2 Dec 2012, 2:00pm - 3:00pm</td>
<td>$372,000</td>
</tr>
<tr>
<td>Herrod Chandler</td>
<td>59</td>
<td>06/08/2012</td>
<td>6 Aug 2012</td>
<td>Monday, August 6, 2012</td>
<td>6 Aug 2012, 2:00pm</td>
<td>6 Aug 2012, 2:00pm - 3:00pm</td>
<td>$137,500</td>
</tr>
<tr>
<td>Rhona Davidson</td>
<td>55</td>
<td>14/10/2010</td>
<td>14 Oct 2010</td>
<td>Tuesday, October 14, 2010</td>
<td>14 Oct 2010, 2:00pm</td>
<td>14 Oct 2010, 2:00pm - 3:00pm</td>
<td>$327,900</td>
</tr>
<tr>
<td>Colleen Hurst</td>
<td>39</td>
<td>15/09/2009</td>
<td>15 Sep 2009</td>
<td>Thursday, September 15, 2009</td>
<td>15 Sep 2009, 2:00pm</td>
<td>15 Sep 2009, 2:00pm - 3:00pm</td>
<td>$205,500</td>
</tr>
<tr>
<td>Sonya Frost</td>
<td>23</td>
<td>13/12/2008</td>
<td>13 Dec 2008</td>
<td>Monday, December 13, 2008</td>
<td>13 Dec 2008, 2:00pm</td>
<td>13 Dec 2008, 2:00pm - 3:00pm</td>
<td>$103,600</td>
</tr>
<tr>
<td>Jena Gaines</td>
<td>30</td>
<td>19/12/2008</td>
<td>19 Dec 2008</td>
<td>Tuesday, December 19, 2008</td>
<td>19 Dec 2008, 2:00pm</td>
<td>19 Dec 2008, 2:00pm - 3:00pm</td>
<td>$90,560</td>
</tr>
<tr>
<td>Quinn Flynn</td>
<td>22</td>
<td>03/03/2013</td>
<td>3 Mar 2013</td>
<td>Wednesday, March 13, 2013</td>
<td>3 Mar 2013, 2:00pm</td>
<td>3 Mar 2013, 2:00pm - 3:00pm</td>
<td>$342,000</td>
</tr>
<tr>
<td>Charde Marshall</td>
<td>36</td>
<td>16/10/2008</td>
<td>16 Oct 2008</td>
<td>Wednesday, October 16, 2008</td>
<td>16 Oct 2008, 2:00pm</td>
<td>16 Oct 2008, 2:00pm - 3:00pm</td>
<td>$470,600</td>
</tr>
<tr>
<td>Haley Kennedy</td>
<td>43</td>
<td>18/12/2012</td>
<td>18 Dec 2012</td>
<td>Wednesday, December 18, 2012</td>
<td>18 Dec 2012, 2:00pm</td>
<td>18 Dec 2012, 2:00pm - 3:00pm</td>
<td>$313,500</td>
</tr>
<tr>
<td>Tatyana Fitzpatrick</td>
<td>19</td>
<td>17/03/2010</td>
<td>17 Mar 2010</td>
<td>Friday, March 17, 2010</td>
<td>17 Mar 2010, 2:00pm</td>
<td>17 Mar 2010, 2:00pm - 3:00pm</td>
<td>$385,750</td>
</tr>
<tr>
<td>Michael Silva</td>
<td>66</td>
<td>27/11/2012</td>
<td>27 Nov 2012</td>
<td>Wednesday, November 27, 2012</td>
<td>27 Nov 2012, 2:00pm</td>
<td>27 Nov 2012, 2:00pm - 3:00pm</td>
<td>$198,500</td>
</tr>
<tr>
<td>Paul Byrd</td>
<td>64</td>
<td>09/06/2010</td>
<td>9 Jun 2010</td>
<td>Thursday, June 9, 2010</td>
<td>9 Jun 2010, 2:00pm</td>
<td>9 Jun 2010, 2:00pm - 3:00pm</td>
<td>$725,000</td>
</tr>
<tr>
<td>Gloria Little</td>
<td>59</td>
<td>10/04/2009</td>
<td>10 Apr 2009</td>
<td>Tuesday, April 10, 2009</td>
<td>10 Apr 2009, 2:00pm</td>
<td>10 Apr 2009, 2:00pm - 3:00pm</td>
<td>$237,500</td>
</tr>
<tr>
<td>Bradley Greer</td>
<td>41</td>
<td>13/10/2012</td>
<td>13 Oct 2012</td>
<td>Tuesday, October 13, 2012</td>
<td>13 Oct 2012, 2:00pm</td>
<td>13 Oct 2012, 2:00pm - 3:00pm</td>
<td>$132,000</td>
</tr>
<tr>
<td>Dai Rios</td>
<td>35</td>
<td>26/09/2012</td>
<td>26 Sep 2012</td>
<td>Wednesday, September 26, 2012</td>
<td>26 Sep 2012, 2:00pm</td>
<td>26 Sep 2012, 2:00pm - 3:00pm</td>
<td>$217,500</td>
</tr>
<tr>
<td>Jenette Caldwell</td>
<td>30</td>
<td>03/09/2011</td>
<td>3 Sep 2011</td>
<td>Wednesday, September 3, 2012</td>
<td>3 Sep 2011, 2:00pm</td>
<td>3 Sep 2011, 2:00pm - 3:00pm</td>
<td>$345,000</td>
</tr>
<tr>
<td>Yuri Berry</td>
<td>40</td>
<td>25/06/2009</td>
<td>25 Jul 2009</td>
<td>Thursday, July 25, 2012</td>
<td>25 Jul 2009, 2:00pm</td>
<td>25 Jul 2009, 2:00pm - 3:00pm</td>
<td>$675,000</td>
</tr>
<tr>
<td>Caesar Vance</td>
<td>21</td>
<td>12/12/2011</td>
<td>12 Dec 2011</td>
<td>Thursday, July 12, 2011</td>
<td>12 Dec 2011, 2:00pm</td>
<td>12 Dec 2011, 2:00pm - 3:00pm</td>
<td>$106,450</td>
</tr>
<tr>
<td>Doris Wilder</td>
<td>23</td>
<td>20/09/2010</td>
<td>20 Sep 2010</td>
<td>Friday, September 20, 2010</td>
<td>20 Sep 2010, 2:00pm</td>
<td>20 Sep 2010, 2:00pm - 3:00pm</td>
<td>$85,600</td>
</tr>
<tr>
<td>Angelica Ramos</td>
<td>47</td>
<td>09/10/2009</td>
<td>9 Oct 2009</td>
<td>Thursday, October 9, 2009</td>
<td>9 Oct 2009, 2:00pm</td>
<td>9 Oct 2009, 2:00pm - 3:00pm</td>
<td>$1,200,000</td>
</tr>
<tr>
<td>Gavin Joyce</td>
<td>42</td>
<td>22/12/2010</td>
<td>22 Dec 2010</td>
<td>Monday, December 9, 2010</td>
<td>22 Dec 2010, 2:00pm</td>
<td>22 Dec 2010, 2:00pm - 3:00pm</td>
<td>$92,575</td>
</tr>
<tr>
<td>Jennifer Chang</td>
<td>28</td>
<td>14/11/2010</td>
<td>14 Nov 2010</td>
<td>Tuesday, November 14, 2010</td>
<td>14 Nov 2010, 2:00pm</td>
<td>14 Nov 2010, 2:00pm - 3:00pm</td>
<td>$357,650</td>
</tr>
<tr>
<td>Brenden Wagner</td>
<td>28</td>
<td>07/06/2011</td>
<td>7 Jun 2011</td>
<td>Tuesday, June 7, 2011</td>
<td>7 Jun 2011, 2:00pm</td>
<td>7 Jun 2011, 2:00pm - 3:00pm</td>
<td>$206,850</td>
</tr>
<tr>
<td>Fiona Green</td>
<td>48</td>
<td>11/03/2010</td>
<td>11 Mar 2010</td>
<td>Wednesday, March 11, 2010</td>
<td>11 Mar 2010, 2:00pm</td>
<td>11 Mar 2010, 2:00pm - 3:00pm</td>
<td>$850,000</td>
</tr>
<tr>
<td>Shou Itou</td>
<td>20</td>
<td>14/08/2011</td>
<td>14 Aug 2011</td>
<td>Wednesday, August 14, 2011</td>
<td>14 Aug 2011, 2:00pm</td>
<td>14 Aug 2011, 2:00pm - 3:00pm</td>
<td>$163,000</td>
</tr>
<tr>
<td>Michelle House</td>
<td>37</td>
<td>02/06/2011</td>
<td>2 Jul 2011</td>
<td>Tuesday, July 2, 2011</td>
<td>2 Jul 2011, 2:00pm</td>
<td>2 Jul 2011, 2:00pm - 3:00pm</td>
<td>$95,400</td>
</tr>
<tr>
<td>Suki Burks</td>
<td>53</td>
<td>22/10/2009</td>
<td>22 Oct 2009</td>
<td>Wednesday, October 22, 2009</td>
<td>22 Oct 2009, 2:00pm</td>
<td>22 Oct 2009, 2:00pm - 3:00pm</td>
<td>$114,500</td>
</tr>
<tr>
<td>Prescott Bartlett</td>
<td>27</td>
<td>07/05/2011</td>
<td>7 May 2011</td>
<td>Thursday, May 7, 2011</td>
<td>7 May 2011, 2:00pm</td>
<td>7 May 2011, 2:00pm - 3:00pm</td>
<td>$145,000</td>
</tr>
<tr>
<td>Gavin Cortez</td>
<td>22</td>
<td>26/10/2008</td>
<td>26 Oct 2008</td>
<td>Thursday, October 26, 2008</td>
<td>26 Oct 2008, 2:00pm</td>
<td>26 Oct 2008, 2:00pm - 3:00pm</td>
<td>$235,500</td>
</tr>
<tr>
<td>Martena Mccray</td>
<td>46</td>
<td>09/03/2011</td>
<td>9 Mar 2011</td>
<td>Thursday, March 9, 2011</td>
<td>9 Mar 2011, 2:00pm</td>
<td>9 Mar 2011, 2:00pm - 3:00pm</td>
<td>$324,050</td>
</tr>
<tr>
<td>Unity Butler</td>
<td>47</td>
<td>09/12/2009</td>
<td>9 Dec 2009</td>
<td>Wednesday, December 9, 2009</td>
<td>9 Dec 2009, 2:00pm</td>
<td>9 Dec 2009, 2:00pm - 3:00pm</td>
<td>$85,675</td>
</tr>
<tr>
<td>Howard Hatfield</td>
<td>51</td>
<td>16/12/2008</td>
<td>16 Dec 2008</td>
<td>Friday, December 16, 2008</td>
<td>16 Dec 2008, 2:00pm</td>
<td>16 Dec 2008, 2:00pm - 3:00pm</td>
<td>$164,500</td>
</tr>
<tr>
<td>Hope Fuentes</td>
<td>41</td>
<td>12/02/2010</td>
<td>12 Feb 2010</td>
<td>Friday, February 12, 2010</td>
<td>12 Feb 2010, 2:00pm</td>
<td>12 Feb 2010, 2:00pm - 3:00pm</td>
<td>$109,850</td>
</tr>
<tr>
<td>Vivian Harrell</td>
<td>62</td>
<td>14/02/2009</td>
<td>14 Feb 2009</td>
<td>Wednesday, February 14, 2009</td>
<td>14 Feb 2009, 2:00pm</td>
<td>14 Feb 2009, 2:00pm - 3:00pm</td>
<td>$452,500</td>
</tr>
<tr>
<td>Timothy Mooney</td>
<td>37</td>
<td>11/12/2008</td>
<td>11 Dec 2008</td>
<td>Friday, December 11, 2008</td>
<td>11 Dec 2008, 2:00pm</td>
<td>11 Dec 2008, 2:00pm - 3:00pm</td>
<td>$136,200</td>
</tr>
<tr>
<td>Jackson Bradshaw</td>
<td>65</td>
<td>26/09/2008</td>
<td>26 Sep 2008</td>
<td>Friday, September 26, 2008</td>
<td>26 Sep 2008, 2:00pm</td>
<td>26 Sep 2008, 2:00pm - 3:00pm</td>
<td>$645,750</td>
</tr>
<tr>
<td>Olivia Liang</td>
<td>64</td>
<td>03/02/2011</td>
<td>3 Feb 2011</td>
<td>Wednesday, February 3, 2011</td>
<td>3 Feb 2011, 2:00pm</td>
<td>3 Feb 2011, 2:00pm - 3:00pm</td>
<td>$234,500</td>
</tr>
<tr>
<td>Bruno Nash</td>
<td>38</td>
<td>03/05/2011</td>
<td>3 May 2011</td>
<td>Wednesday, May 3, 2011</td>
<td>3 May 2011, 2:00pm</td>
<td>3 May 2011, 2:00pm - 3:00pm</td>
<td>$163,500</td>
</tr>
<tr>
<td>Sakura Yamamoto</td>
<td>37</td>
<td>19/08/2009</td>
<td>19 Aug 2009</td>
<td>Wednesday, August 19, 2009</td>
<td>19 Aug 2009, 2:00pm</td>
<td>19 Aug 2009, 2:00pm - 3:00pm</td>
<td>$139,575</td>
</tr>
<tr>
<td>Thor Walton</td>
<td>61</td>
<td>11/08/2013</td>
<td>11 Aug 2013</td>
<td>Friday, August 11, 2013</td>
<td>11 Aug 2013, 2:00pm</td>
<td>11 Aug 2013, 2:00pm - 3:00pm</td>
<td>$98,540</td>
</tr>
<tr>
<td>Finn Camacho</td>
<td>47</td>
<td>07/07/2009</td>
<td>7 Jul 2009</td>
<td>Wednesday, July 7, 2009</td>
<td>7 Jul 2009, 2:00pm</td>
<td>7 Jul 2009, 2:00pm - 3:00pm</td>
<td>$87,500</td>
</tr>
<tr>
<td>Serge Baldwin</td>
<td>64</td>
<td>09/04/2012</td>
<td>9 Apr 2012</td>
<td>Wednesday, April 9, 2012</td>
<td>9 Apr 2012, 2:00pm</td>
<td>9 Apr 2012, 2:00pm - 3:00pm</td>
<td>$138,575</td>
</tr>
<tr>
<td>Zenaida Frank</td>
<td>63</td>
<td>04/01/2010</td>
<td>4 Jan 2010</td>
<td>Thursday, January 4, 2010</td>
<td>4 Jan 2010, 2:00pm</td>
<td>4 Jan 2010, 2:00pm - 3:00pm</td>
<td>$125,250</td>
</tr>
<tr>
<td>Zorita Serrano</td>
<td>56</td>
<td>01/06/2012</td>
<td>1 Jun 2012</td>
<td>Wednesday, June 1, 2012</td>
<td>1 Jun 2012, 2:00pm</td>
<td>1 Jun 2012, 2:00pm - 3:00pm</td>
<td>$115,000</td>
</tr>
<tr>
<td>Jennifer Acosta</td>
<td>43</td>
<td>01/02/2013</td>
<td>1 Feb 2013</td>
<td>Tuesday, February 1, 2013</td>
<td>1 Feb 2013, 2:00pm</td>
<td>1 Feb 2013, 2:00pm - 3:00pm</td>
<td>$75,650</td>
</tr>
<tr>
<td>Cara Stevens</td>
<td>46</td>
<td>06/12/2011</td>
<td>6 Dec 2011</td>
<td>Wednesday, December 6, 2011</td>
<td>6 Dec 2011, 2:00pm</td>
<td>6 Dec 2011, 2:00pm - 3:00pm</td>
<td>$145,600</td>
</tr>
<tr>
<td>Hermione Butler</td>
<td>47</td>
<td>21/03/2011</td>
<td>21 Mar 2011</td>
<td>Wednesday, March 21, 2011</td>
<td>21 Mar 2011, 2:00pm</td>
<td>21 Mar 2011, 2:00pm - 3:00pm</td>
<td>$356,250</td>
</tr>
<tr>
<td>Lael Greer</td>
<td>21</td>
<td>27/02/2009</td>
<td>27 Feb 2009</td>
<td>Tuesday, February 27, 2009</td>
<td>27 Feb 2009, 2:00pm</td>
<td>27 Feb 2009, 2:00pm - 3:00pm</td>
<td>$103,500</td>
</tr>
<tr>
<td>Jonas Alexander</td>
<td>30</td>
<td>14/07/2010</td>
<td>14 Jul 2010</td>
<td>Thursday, July 14, 2010</td>
<td>14 Jul 2010, 2:00pm</td>
<td>14 Jul 2010, 2:00pm - 3:00pm</td>
<td>$86,500</td>
</tr>
<tr>
<td>Shad Decker</td>
<td>51</td>
<td>13/11/2008</td>
<td>13 Nov 2008</td>
<td>Wednesday, November 13, 2008</td>
<td>13 Nov 2008, 2:00pm</td>
<td>13 Nov 2008, 2:00pm - 3:00pm</td>
<td>$183,000</td>
</tr>
<tr>
<td>Michael Bruce</td>
<td>29</td>
<td>27/06/2011</td>
<td>27 Jun 2011</td>
<td>Friday, June 27, 2011</td>
<td>27 Jun 2011, 2:00pm</td>
<td>27 Jun 2011, 2:00pm - 3:00pm</td>
<td>$183,000</td>
</tr>
<tr>
<td>Donna Snider</td>
<td>27</td>
<td>25/01/2011</td>
<td>25 Jan 2011</td>
<td>Monday, January 25, 2011</td>
<td>25 Jan 2011, 2:00pm</td>
<td>25 Jan 2011, 2:00pm - 3:00pm</td>
<td>$112,000</td>
</tr>
</tbody>
</table>