/* base */
html body {}

/*	--------------------------------------------------
	@group Tables
	-------------------------------------------------- */
table {
	background-color: #fff;
	border: 1px solid #ccc;
	margin-bottom: 15px;
	text-align: left;
	vertical-align: top;
	width: 100%;
}
table caption {
	color: #111;
	font-size: 120%;
	font-weight: bold;
	line-height: 175%;
}
table td, 
table th {
	background-color: #fff;
	padding: 5px 7px;
	vertical-align: middle;
}
table thead th, 
table thead tr,
table thead td {
	background: #eee;
	background: -moz-linear-gradient(top, #fff, #eee);
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#eee));
	/*filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff', endColorstr='#eee');*/
	border: 1px solid #ccc;
	padding: 6px 7px 4px;
}
table tbody tr td {
	background-color: #fff;
	border: 1px solid #eaeaea;
}
table tbody tr:first-child td {
	border-top: 1px solid #ccc;
}
table tbody tr td:first-child {
	border-left: 1px solid #ccc;
}
table tbody tr:last-child td {
	border-bottom: 1px solid #ccc;
}
table tbody tr td:last-child {
	border-right: 1px solid #ccc;
}
table tbody tr.highlight > td, 
table tbody tr.highlight > th {
	background-color: #fff9e3;
}
table tfoot tr,
table tfoot th,
table tfoot tr td {
	background-color: #f0f0f0;
	border: 1px solid #ccc !important;
}
table tfoot th {
	font-weight: bold;
}
table .sort,
th.sorting_asc, th.sorting_dec {
	background: url(images/table-sort-arrows.png) center right no-repeat;
	cursor: pointer;
	padding: 0 10px;
}

th.sorting_asc, th.sorting_dec {
}

table .sort.ascending,
th.sorting_asc {
	background-image: url(images/table-sort-arrow-asc.gif);
}
table .sort.descending,
th.sorting_dec {
	background-image: url(images/table-sort-arrow-desc.gif);
}
table .sort.descending, 
table .sort.ascending,
th.sorting_asc, th.sorting_dec {
	background-color: #eaeaea;
}


table td.drag,
table tr.drag,
table.drag tbody tr {
	cursor: move;
}

/** Table row hover class **/
	table th.sort:hover, 
	table td.sort:hover,
	th.sorting_asc:hover, th.sorting_dec:hover,
	table tbody tr:hover > td, 
	table tbody tr:hover > th,
	table tfoot tr:hover > td, 
	table tfoot tr:hover > th {
		background-color: #edf5ff; 
		}