/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * DataTables features
 */

.dataTables_wrapper {
	position: relative;
	/*min-height: 152px;*/
	_height: 152px;
	clear: both;
}

.dataTables_processing {
	position: absolute;
	top: 0px;
	left: 40%;
	width: 250px;
	margin-left: -125px;
	border: 1px solid #dddddd;
	text-align: center;
	color: #999;
	font-size: 11px;
	padding: 2px 0;
}

.dataTables_length {
	padding: 10px 10px 10px 0px;
	width: 40%;
	float: left;
}

.dataTables_filter {
	padding: 10px 0px 10px 10px;
	width: 50%;
	float: right;
	text-align: right;
}

.dataTables_info {
	padding: 10px 10px 10px 0px;
	width: 40%;
	float: left;
}

.dataTables_paginate {
	padding: 10px 0px 10px 10px;
	/*width: 200px;
	* width: 210px;*/
	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('../img/data_tables/back_disabled.jpg');
}

.paginate_enabled_previous {
	background-image: url('../img/data_tables/back_enabled.jpg');
}

.paginate_disabled_next {
	background-image: url('../img/data_tables/forward_disabled.jpg');
}

.paginate_enabled_next {
	background-image: url('../img/data_tables/forward_enabled.jpg');
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * DataTables Full Numbers Pagination
 */
div.dataTables_paginate span.paginate_button, div.dataTables_paginate span.paginate_active {
	padding: 3px 5px 3px 5px;
	border: 1px solid #aaaaaa;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	margin: 0 3px;
	cursor: pointer;
	*cursor: hand;
}

div.dataTables_paginate span.paginate_button {
	background-color: #dddddd;
}

div.dataTables_paginate span.paginate_button:hover {
	background-color: #eeeeee;
}

div.dataTables_paginate span.paginate_active {
	background-color: #555555;
	color: #ffffff;
	font-weight: bold;
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * DataTables display
 */
table.display {
	margin: 0 auto;
	width: 100%;
	clear: both;
	border-collapse: collapse;
}

table.display thead th {
	background-color: #808080;
	color: #ffffff;
	text-align: center;
	padding: 4px;
	border: 2px solid #ffffff;
	/*border-bottom: 2px solid #000000;*/
	font-weight: bold;
	cursor: pointer;
	* cursor: hand;
}

table.display tfoot th {
	background-color: #ffffff;
	color: #000000;
	padding: 4px;
	border: 2px solid #ffffff;
	/*border-top: 1px solid #000000;*/
	font-weight: bold;
}

table.display tbody td {
	padding: 4px 10px;
	border: 2px solid #ffffff;
	text-align: left;
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * DataTables sorting
 */

.sorting_asc {
	background: url('../img/data_tables/sort_asc.gif') no-repeat center right;
}

.sorting_desc {
	background: url('../img/data_tables/sort_desc.gif') no-repeat center right;
}

.sorting {
	background: url('../img/data_tables/sort_both.gif') no-repeat center right;
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * DataTables row classes by default
 */
table.display tr.odd td {
	background-color: #eeeeee;
}

table.display tr.even td {
	background-color: #ffffff;
}

/*
 * Sorting classes for columns
 */
/* For the standard odd/even */
tr.odd td.sorting_1 {
	background-color: #dddddd;
}

tr.even td.sorting_1 {
	background-color: #eeeeee;
}

/*
 * Row highlighting example
 */
/*tbody tr.even:hover, tbody tr.even td.highlighted {
	background-color: #ECFFB3;
}

tbody tr.odd:hover, tbody tr.odd td.highlighted {
	background-color: #E6FF99;
}*/

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * DataTables information
 */
table.information {
	margin: 0 auto;
	width: 100%;
	clear: both;
	border-collapse: collapse;
}

table.information thead th {
	background-color: #808080;
	color: #ffffff;
	text-align: center;
	padding: 4px;
	border: 1px solid #666666;
	/*border-bottom: 2px solid #000000;*/
	font-weight: bold;
	cursor: pointer;
	* cursor: hand;
}

table.information thead th.no_show {
	display: none;
}

table.information tfoot th {
	background-color: #ffffff;
	color: #000000;
	padding: 4px;
	border: 1px solid #666666; 
	/*border-top: 1px solid #000000;*/
	font-weight: bold;
}

table.information tbody td {
	padding: 4px 10px;
	border: 1px solid #666666;
	text-align: left;
}

table.information tbody td.thead {
	background-color: #808080;
	color: #ffffff;
	text-align: center;
	padding: 4px;
	border: 1px solid #666666;
	/*border-bottom: 2px solid #000000;*/
	font-weight: bold;
	cursor: pointer;
	* cursor: hand;
}