/*
   Add the following to your CSS file should you wish the cursor to
   "wait" while the script is processing the sort

body.sort-active *
        {
        cursor:wait;
        }
*/

.srace 	{
	font-family: Verdana, Lucida, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #060D5E;
	border:1px solid #C0C0C0;
	border-collapse:collapse;
	margin-bottom: 1.0em;
	}

.srace thead tr
	{
	height: 18px;
	}

.srace thead th
	{
	background-color: #ecf4eb;
	}

.srace td
	{
	font-family: Verdana, Lucida, Arial, Helvetica, sans-serif;
	font-size: 11px;
	border-top:1px solid #C0C0C0;
	border-bottom:1px solid #C0C0C0;
	}

th.sortable,
th.sortable-text,
th.sortable-date,
th.sortable-keep,
th.sortable-date-dmy,
th.sortable-numeric,
th.sortable-currency,
th.sortable-sortByTwelveHourTimestamp,
th.sortable-sortIPAddress,
th.sortable-sortEnglishLonghandDateFormat,
th.sortable-sortScientificNotation,
th.sortable-sortImage,
th.sortable-sortFileSize,
th.sortable-sortAlphaNumeric,
th.sortable-sortEnglishDateTime
        {
        background:transparent url(../img/bgimg_none.jpg) no-repeat 0 0;
	font-family: Verdana, Lucida, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: normal;
	font-style: italic;
	border-collapse:collapse;
	margin-bottom: 1.0em;
	padding-left: 16px;
	text-align: left;
        }

th.sortable a,
th.sortable-text a,
th.sortable-date a,
th.sortable-keep a,
th.sortable-date-dmy a,
th.sortable-numeric a
        {
	font-family: Verdana, Lucida, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #060D5E;
        text-decoration:none;
        }


th.forwardSort
        {
        background:transparent url(../img/bgimg_down.jpg) no-repeat 0 0;
        text-decoration:none;
        }
th.reverseSort
        {
        background:transparent url(../img/bgimg_up.jpg) no-repeat 0 0;
        text-decoration:none;
        }
table thead th.forwardSort a,
table thead th.reverseSort a
        {
        text-decoration:none;
        }
/*
These styles should be added when very long tables are expected
th.sort-active
        {
        background:#CAE8EA;
        cursor:wait;
        }
th.sort-active a
        {
        color:#a80000;
        cursor:wait;
        text-decoration:none;
        }
*/
td.lft
        {
        text-align:left;
        }
table.srace tbody tr
        {
        background: #F1F4F8;
        }

table.srace tbody tr
        {
        background: #F1F4F8;
        }

table.srace tbody tr.alt
        {
        background: #DAE1EB;
        }

/* Poor old Internet Explorer 6 has a bug that means we can't use background images for the table rows
   as it trys to download the image each and every time that it is used (which means a 1000 row table
   will produce 1000 http requests for the image in question) */
tr[class="alt"] td
        {
        background: #DAE1EB;
        }
td[class~="alt"]
        {
        background: #F1F4F8;
        }
/* Poor old Internet Explorer won't see the next two rules either as it doesn't get :first-child */
tbody tr.alt td:first-child
        {
        background: #DAE1EB;
        font-weight:bold;
        }
tbody tr td:first-child
        {
        background: #fff;
        font-weight:bold;
        }
/* Image free rules for Internet Explorer < 7 */
* html tr.alt td
        {
        background-color:#DAE1EB;
        }
* html tr td.alt,
* html tr.alt td.alt
        {
        background-color:#F1F4F8;
        }
