/*
 *  www.datatables.net
 *  Description:  Foglio di stile specifico per plug-in DataTables di jQuery
 *  Author:       Allan Jardine - Modificato da Vigna Federico
 */

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * DataTables features
 */
div.dataTables_wrapper {
	position: relative;
	min-height: 302px;
	_height: 302px;
	/*clear: both;*/
}

div.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;
}

div.dataTables_length {
	width: auto;
	max-width: 50%;
	float: left;
	/* color: #3b6b96; */
	margin-bottom: 24px;
}

div.dataTables_filter {
	width: auto;
	max-width: 50%;
	float: right;
	text-align: right;
	/* color: #3b6b96; */
	margin-bottom: 24px;
}

div.dataTables_info {
	width: auto;
	max-width: 50%;
	float: left;
	/* color: #3b6b96; */
	margin-top: 24px;
}

div.dataTables_paginate {
	width: 44px;
	* width: 50px;
	float: right;
	text-align: right;
}

/* Pagination nested */
div.dataTables_wrapper .paging_full_numbers {
	width: 32em;
	height: 22px;
	line-height: 22px;
	margin-top: 24px;
}

div.dataTables_wrapper .paging_full_numbers span.paginate_button,
 	.paging_full_numbers span.paginate_active {
	border: 1px solid #aaa;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	padding: 2px 5px;
	margin: 0 3px;
	cursor: pointer;
	*cursor: hand;
}

div.dataTables_wrapper .paging_full_numbers span.paginate_button {
	background-color: #ddd;
}

div.dataTables_wrapper .paging_full_numbers span.paginate_button:hover {
	background-color: #ccc;
}

div.dataTables_wrapper .paging_full_numbers span.paginate_active {
	background-color: #353535;
	color: white;
	border-color: #353535;
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * DataTables sorting
 */

div.dataTables_wrapper .sorting_asc {
	background: url('../images/dataTables/sort_asc.png') no-repeat center right;
	background-color: #8c8c8c;
}

div.dataTables_wrapper .sorting_desc {
	background: url('../images/dataTables/sort_desc.png') no-repeat center right;
	background-color: #396f9e;
}

div.dataTables_wrapper .sorting {
	background: url('../images/dataTables/sort_both.png') no-repeat center right;
	background-color: #8c8c8c;
}


/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * DataTables display
 */
div.dataTables_wrapper table {
	margin: 0 auto;
	width: 100%;
	clear: right;
}

div.dataTables_wrapper table thead th {
	padding: 3px 18px 3px 10px;
	border-bottom: 1px solid black;
	font-weight: bold;
	cursor: pointer;
	* cursor: hand;
}

div.dataTables_wrapper table tfoot th {
	padding: 3px 10px;
	border-top: 1px solid black;
	font-weight: bold;
}

div.dataTables_wrapper table tr.heading2 td {
	border-bottom: 1px solid #aaa;
}

div.dataTables_wrapper table td {
	padding: 3px 10px;
}

div.dataTables_wrapper table td.center {
	text-align: center;
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * DataTables row classes
 */
div.dataTables_wrapper tr.odd {
	background-color: #e5e3df;
}
div.dataTables_wrapper tr.even {
	background-color: white;
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * Misc
 */
div.dataTables_wrapper .top, .bottom {
	padding: 15px;
	background-color: #F5F5F5;
	border: 1px solid #CCCCCC;
}

div.dataTables_wrapper .top .dataTables_info {
	float: none;
}

div.dataTables_wrapper .clear {
	clear: both;
}

div.dataTables_wrapper .dataTables_empty {
	text-align: center;
}

div.dataTables_wrapper tfoot input {
	margin: 0.5em 0;
	width: 100%;
	color: #444;
}

div.dataTables_wrapper tfoot input.search_init {
	color: #999;
}

div.dataTables_wrapper td.group {
	background-color: #d1cfd0;
	border-bottom: 2px solid #A19B9E;
	border-top: 2px solid #A19B9E;
}

div.dataTables_wrapper td.details {
	background-color: #d1cfd0;
	border: 2px solid #A19B9E;
}

div.dataTables_wrapper table tr.even.row_selected td {
	background-color: #B0BED9;
}
div.dataTables_wrapper table tr.odd.row_selected td {
	background-color: #9FAFD1;
}

/*
 * Sorting classes for columns
 */
/* For the standard odd/even */
div.dataTables_wrapper tr.odd td.sorting_1 {
	background-color: #e5e3df;
}
div.dataTables_wrapper tr.odd td.sorting_2 {
	background-color: #DADCFF;
}
div.dataTables_wrapper tr.odd td.sorting_3 {
	background-color: #E0E2FF;
}
div.dataTables_wrapper tr.even td.sorting_1 {
	/* background-color: #EAEBFF; */
}
div.dataTables_wrapper tr.even td.sorting_2 {
	background-color: #F2F3FF;
}
div.dataTables_wrapper tr.even td.sorting_3 {
	background-color: #F9F9FF;
}
