div.dataTables_wrapper {
	background-color: #B8B8B8;
}

div.dataTables_length {
	float: left;
}

div.dataTables_filter {
	float: right;
}

div.dataTables_info {
	padding: 9px 6px 6px 6px;
	float: left;
}

div.dataTables_paginate {
	float: right;
}

div.dataTables_length,
div.dataTables_filter,
div.dataTables_paginate {
	padding: 6px;
}

/* Self clearing - http://www.webtoolkit.info/css-clearfix.html */
.dataTables_wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
 
html[xmlns] .dataTables_wrapper {
	display: block;
}
 
* html .dataTables_wrapper {
	height: 1%;
}


/*
 * Table styles
 */
table.data-table {
	width: 100%;
	clear: both;
}

table.data-table td,
table.data-table th {
	padding: 5px;
	border: 1px solid #fff;
}

/* Header cells */
table.data-table thead th {
	text-align: center;
	background: #A0A0A0;
	cursor: pointer;
	*cursor: hand;
	color: #fff;
}

/* Body cells */
table.data-table tbody th {
	text-align: left;
	background: #909090;
}
	
table.data-table tbody td {
	text-align: center;
	background: #F8F8F8;
}
		
table.data-table tbody tr.odd td { 
	background: #DDDDDD;
}

/* Footer cells */	
table.data-table tfoot th {
	background: #b0cc7f;
	text-align: left;
}
	
table.data-table tfoot td {
	background: #d7e1c5;
	text-align: center;
	font-weight: bold;
}


/*
 * Pagination
 */
span.paginate_button,
span.paginate_active {
	display: inline-block;
	background-color: #A8A8A8;
	color: #fff;
	padding: 2px 6px;
	margin-left: 2px;
	cursor: pointer;
	*cursor: hand;
}

span.paginate_active {
	background-color: transparent;
	border: 1px solid black;
}

span.paginate_button_disabled {
	color: #989898;
	background: #C0C0C0;
}
.paging_full_numbers span:active {
	outline: none
}
.paging_full_numbers span:hover {
	text-decoration: none;
}

div.dataTables_paginate span>a {
	width: 15px;
	text-align: center;
}


/*
 * Sorting
 */
table.data-table thead th.sorting_asc {
	background: #A8A8A8 url('globalimages/datatable/sort_asc.png') no-repeat right center;
}

table.data-table thead th.sorting_desc {
	background: #A8A8A8 url('globalimages/datatable/sort_desc.png') no-repeat right center;
}

table.data-table thead th.sorting {
	background: #A8A8A8 url('globalimages/datatable/sort_both.png') no-repeat right center;
}