/*
 * DataTables-compatible stylesheet
 * Covers the classes DataTables generates: dataTables_wrapper,
 * dataTables_filter (the search box), dataTables_length,
 * dataTables_info, dataTables_paginate, and column sort icons.
 * Drop this in as css/jquery.dataTables.css and reference it
 * locally instead of the CDN link.
 */

table.dataTable {
	width: 100%;
	margin: 0 auto;
	clear: both;
	border-collapse: collapse;
}

table.dataTable thead th,
table.dataTable thead td {
	padding: 10px 18px;
	border-bottom: 2px solid #ddd;
	text-align: left;
}

table.dataTable tbody th,
table.dataTable tbody td {
	padding: 8px 10px;
}

table.dataTable thead th.sorting,
table.dataTable thead th.sorting_asc,
table.dataTable thead th.sorting_desc,
table.dataTable thead th.sorting_asc_disabled,
table.dataTable thead th.sorting_desc_disabled {
	cursor: pointer;
	position: relative;
	background-repeat: no-repeat;
	background-position: center right;
	padding-right: 26px;
}

table.dataTable thead th.sorting:after,
table.dataTable thead th.sorting_asc:after,
table.dataTable thead th.sorting_desc:after {
	position: absolute;
	right: 8px;
	font-family: Arial, sans-serif;
	font-size: 12px;
	opacity: 0.6;
}

table.dataTable thead th.sorting:after       { content: "\2195"; }
table.dataTable thead th.sorting_asc:after   { content: "\2191"; opacity: 1; }
table.dataTable thead th.sorting_desc:after  { content: "\2193"; opacity: 1; }

table.dataTable tbody tr {
	background-color: #ffffff;
}

table.dataTable tbody tr.odd,
table.dataTable tbody tr:nth-child(odd) {
	background-color: #f6f6f6;
}

table.dataTable tbody tr:hover {
	background-color: #f0f7ff;
}

/* ---------- Wrapper / top controls ---------- */

.dataTables_wrapper {
	position: relative;
	clear: both;
	zoom: 1;
}

.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_processing,
.dataTables_wrapper .dataTables_paginate {
	color: #333;
	font-size: 13px;
}

/* This is the search box container DataTables auto-generates */
.dataTables_wrapper .dataTables_filter {
	float: right;
	text-align: right;
	margin-bottom: 10px;
}

.dataTables_wrapper .dataTables_filter label {
	font-weight: normal;
	white-space: nowrap;
}

.dataTables_wrapper .dataTables_filter input {
	margin-left: 6px;
	padding: 5px 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 13px;
	outline: none;
}

.dataTables_wrapper .dataTables_filter input:focus {
	border-color: #66afe9;
	box-shadow: 0 0 4px rgba(102, 175, 233, 0.6);
}

.dataTables_wrapper .dataTables_length {
	float: left;
	margin-bottom: 10px;
}

.dataTables_wrapper .dataTables_length select {
	padding: 3px 6px;
	border: 1px solid #ccc;
	border-radius: 4px;
}

.dataTables_wrapper .dataTables_info {
	clear: both;
	float: left;
	padding-top: 8px;
}

/* ---------- Pagination (only relevant if you let DataTables page instead of displaytag) ---------- */

.dataTables_wrapper .dataTables_paginate {
	float: right;
	text-align: right;
	padding-top: 6px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
	display: inline-block;
	padding: 4px 10px;
	margin-left: 2px;
	border: 1px solid #ddd;
	border-radius: 4px;
	cursor: pointer;
	color: #333 !important;
	text-decoration: none;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
	background: #337ab7;
	border-color: #337ab7;
	color: #fff !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled {
	cursor: default;
	color: #999 !important;
	opacity: 0.6;
}

.dataTables_wrapper .dataTables_processing {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	margin-left: -50%;
	margin-top: -26px;
	padding-top: 20px;
	text-align: center;
	font-size: 14px;
	background: rgba(255, 255, 255, 0.9);
}

.dataTables_wrapper .dataTables_scroll {
	clear: both;
}

.dataTables_wrapper .dataTables_scrollBody {
	-webkit-overflow-scrolling: touch;
}

/* Clearfix so floated filter/length/info/paginate don't collapse the wrapper */
.dataTables_wrapper:after {
	visibility: hidden;
	display: block;
	content: "";
	clear: both;
	height: 0;
}

@media screen and (max-width: 767px) {
	.dataTables_wrapper .dataTables_filter,
	.dataTables_wrapper .dataTables_length,
	.dataTables_wrapper .dataTables_info,
	.dataTables_wrapper .dataTables_paginate {
		float: none;
		text-align: left;
		margin-bottom: 8px;
	}
}