/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * DataTables features
 */

.dataTables_wrapper {
	min-height: 302px;
	_height: 302px;
	clear: both;
	margin: 0;
}

.dataTables_processing {
	position: absolute;
	top: 0px;
	left: 50%;
	width: 250px;
	margin-left: -125px;
	border: 1px solid #ddd;
	text-align: center;
	color: #999;
	font-size: 11px;
	padding: 2px 0;
}

.dataTables_length {
	width: 35%;
	float: left;
	text-align: left;
	padding: 10px;
	}

.dataTables_filter {
	width: 40%;
	float: right;
	text-align: right;
	padding: 10px;
}

.dataTables_info {
	width: 60%;
	float: left;
	text-align: left;
	padding: 10px;
	margin: 5px 0;
}

.dataTables_paginate {
	margin: 15px 0;
	width: 44px;
	* width: 50px;
	float: right;
	text-align: right;
}

/* Pagination nested */
.paginate_disabled_previous, .paginate_enabled_previous, .paginate_disabled_next, .paginate_enabled_next {
	height: 19px;
	width: 19px;
	margin-left: 3px;
	float: left;
}

.paginate_disabled_previous {
	background-image: url('../images/back_disabled.png');
}

.paginate_enabled_previous {
	background-image: url('../images/back_enabled.png');
}

.paginate_disabled_next {
	background-image: url('../images/forward_disabled.png');
}

.paginate_enabled_next {
	background-image: url('../images/forward_enabled.png');
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * DataTables display
 */
table.display {
	margin: 0 auto;
	width: 100%;
	clear: both;
}

table.display thead th {
	padding: 3px 10px;
	font-weight: bold;
	cursor: pointer;
	* cursor: hand;
}

table.display tfoot th {
	padding: 3px 10px;
	font-weight: bold;
}

table.display tr.heading2 td {
	border-bottom: 1px solid #aaa;
}

table.display td {
	padding: 3px 10px;
}

table.display td.center {
	text-align: center;
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * DataTables sorting
 */

.sorting_asc {
	background: url('../images/sort_asc.png') no-repeat center left;
}

.sorting_desc {
	background: url('../images/sort_desc.png') no-repeat center left;
}

.sorting {
	background: url('../images/sort_both.png') no-repeat center left;
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * DataTables row classes
 */

tr.odd {
	background-color: #F9EBC2;
}

tr.even {
	background-color: #FBF6E7;
}