@charset "utf-8";
/*
   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;
        }
*/
table.datable {
	margin: 1em 0 .5em 0;
	width: 100%;
	font-size: 0.9em;
}
table.datable td,
table.datable th {
	line-height: 1.6;
}
.cs1 {
	width: 30em;
}
.cs2 {
	width: 20em;
}
.cs1 td,
.cs2 td,
#scientificNotation {
	text-align: right;
}
.datable th {
	border: 1px solid #d7d7d7;
	letter-spacing: 1px;
	text-transform: uppercase;
	text-align: left;
	vertical-align: middle;
}
.datable thead th {
	font-weight: bold;
	padding: .5em .5em .5em 2em;
	border-bottom: 1px solid #d7d7d7;
}
.datable tfoot th {
	padding: .5em;
	font-weight: bold;
	background-color: #f7f7f7;
	border-top: 3px solid #d7d7d7;
}
.datable td.total {
	border-top: 0;
	border-left: 0;
	border-right: 1px solid #d7d7d7;
	background: none;
	text-align: right;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 1px;
}
th.sortable {
	background-color: #f7f7f7;
	padding: .25em;
	text-align: center;
}
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 {
	cursor: pointer;
	background: #f7f7f7 url(../images/bg_header_sortable.gif) 0 center no-repeat;
	padding: .5em;
}
th.forwardSort {
	background: #f7f7f7 url(../images/bg_header_down.gif) 0 center no-repeat;
}
th.reverseSort {
	background: #f7f7f7 url(../images//bg_header_up.gif) 0 center no-repeat;
}
table thead th.forwardSort a,
table thead th.reverseSort a {
	color: #000;
	text-decoration: none;
	font-weight: bold;
}
/*
These styles should be added when very long tables are expected
th.sort-active {
	background:#CAE8EA url(../media/bg_header_sorting.jpg) no-repeat 0 0;
	cursor:wait;
}
th.sort-active a {
	color:#a80000 !important;
	cursor:wait;
}
*/
.datable th a {
	text-decoration: none;
	background: transparent;
	font-weight: bold;
}
.datable td a {
	text-decoration: none;
}
.datable td img {
	margin: 0 auto;
	border: 3px solid #ddd;
}
.datable td a:hover {
	text-decoration:none;
}
.datable td {
	border-left: 1px solid #d7d7d7;
	border-right: 1px solid #d7d7d7;
	border-bottom: 1px solid #d7d7d7;
	padding: .5em;
}
td.lft {
	text-align: left;
}
tr.alt {
	background-color: #f7f7f7;
}
/* Poor old Internet Explorer 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-color: #f7f7f7;
}
td[class~="alt"] {
	background-color: #f7f7f7;
}
/* Poor old Internet Explorer won't see the next two rules either */
.datable tbody tr.alt td:first-child {
	background-color: #f7f7f7;
}
.datable tbody tr td:first-child {
	background-color: #fff;
 }
/* Image free rules for Internet Explorer < 7 */
* html tr.alt td {
	background-color: #f7f7f7;
}
* html tr td.alt,
* html tr.alt td.alt {
	background-color: #f7f7f7;
}

