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

.dataTables_wrapper {
	position: relative;
	
	_height: 302px;
	clear: both;
}

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

.dataTables_length {
	width: 40%;
	float: left;
}

.dataTables_filter {
	width: 50%;
	float: right;
	text-align: right;
}

.dataTables_info {
	width: 60%;
	float: left;
}

.dataTables_paginate {
	width: 54px;
	* width: 60px;
	float: right;
	text-align: right;
}

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

.paginate_disabled_previous {
	background-image: url('left.png');
}

.paginate_enabled_previous {
	background-image: url('left.png');
	background-position: 0 24px;
}

.paginate_disabled_next {
	background-image: url('right.png');
}

.paginate_enabled_next {
	background-image: url('right.png');
	background-position: 0 24px;
}



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

table.display thead th {
	padding: 3px;
	border-bottom: 1px dotted #707172;
	font-style:normal;
  font-weight:normal;
	cursor: pointer;
	* cursor: hand;
	height: 28px;	
}

table.display tfoot th {
	padding: 3px;
	border-top: 1px solid black;
	font-weight:normal;
}

.info_1 {
  margin: 6px;
  padding: 8px;
  height:25px; 
	background-color: #FFF1DC;
	border: 1px dotted #707172;

}

.info_2 {

  margin: 6px;
	width:100%;
  padding: 8px;	
	text-align: left;

}

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

table.display td {
	padding: 3px 10px;
	padding: 3px 10px;
	line-height: 1.1;
  font-size: 13px;
  font-family: "Lucida Sans Unicode","Lucida Grande",sans-serif;
  color: #707172;
		
	
}

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

table.display tr.odd td, table.display tr.even td {
	padding: 3px;
	background-color: #fff;
}



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

table.display th.sorting_asc {
	background: url('desc.gif') no-repeat center right;
}

table.display th.sorting_desc {
	background: url('asc.gif') no-repeat center right;
}

table.display th.sorting {
	background: url('bg.gif') no-repeat center right;
}




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


table.display tr.odd td {
	background-color: white;
}

table.display tr.even td {
	background-color: #dfdfdf;
}





/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * Misc
 */
 
/*
.top, .bottom {
  padding: 15px;
	background-color: #F5F5F5;
	border: 1px solid #CCCCCC;
}
*/

.top .dataTables_info {
	float: none;
}

.clear {
	clear: both;
}

tfoot input {
	margin: 0.5em 0;
	width: 100%;
	color: #444;
}

tfoot input.search_init {
	color: #999;
}


.example_alt_pagination div.dataTables_info {
	width: 40%;
}

.example_alt_pagination .dataTables_paginate {
	width: 400px;
}

.example_alt_pagination div.dataTables_paginate span.paginate_button,
 	.example_alt_pagination div.dataTables_paginate 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;
}

.example_alt_pagination div.dataTables_paginate span.paginate_button {
	background-color: #ddd;
}

.example_alt_pagination div.dataTables_paginate span.paginate_button:hover {
	background-color: #ccc;
}

.example_alt_pagination div.dataTables_paginate span.paginate_active {
	background-color: #99B3FF;
}


/*
table.display tr.row_selected.odd td {
	background-color: #B0BED9;
}

table.display tr.row_selected.even td {
	background-color: #9FAFD1;
}
*/

/*
 * Sorting classes for columns
 */
/* For the standard odd/even 
tr.odd td.sorting_1 {
	background-color: #D3D6FF;
}

tr.odd td.sorting_2 {
	background-color: #DADCFF;
}

tr.odd td.sorting_3 {
	background-color: #E0E2FF;
}

tr.even td.sorting_1 {
	background-color: #EAEBFF;
}

tr.even td.sorting_2 {
	background-color: #F2F3FF;
}

tr.even td.sorting_3 {
	background-color: #F9F9FF;
}
*/


/*
 * Row highlighting example
 */
.ex_highlight #example tbody tr.even:hover, #example tbody tr.even td.highlighted {
	background-color: #ECFFB3;
}

.ex_highlight #example tbody tr.odd:hover, #example tbody tr.odd td.highlighted {
	background-color: #E6FF99;
}