/*
 *  File:         demo_table.css
 *  CVS:          $Id$
 *  Description:  CSS descriptions for DataTables demo pages
 *  Author:       Allan Jardine
 *  Created:      Tue May 12 06:47:22 BST 2009
 *  Modified:     $Date$ by $Author$
 *  Language:     CSS
 *  Project:      DataTables
 *
 *  Copyright 2009 Allan Jardine. All Rights Reserved.
 *
 * ***************************************************************************
 * DESCRIPTION
 *
 * The styles given here are suitable for the demos that are used with the standard DataTables
 * distribution (see www.datatables.net). You will most likely wish to modify these styles to
 * meet the layout requirements of your site.
 *
 * Common issues:
 *   'full_numbers' pagination - I use an extra selector on the body tag to ensure that there is
 *     no conflict between the two pagination types. If you want to use full_numbers pagination
 *     ensure that you either have "example_alt_pagination" as a body class name, or better yet,
 *     modify that selector.
 *   Note that the path used for Images is relative. All images are by default located in
 *     ../ico/ - relative to this CSS file.
 */

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

.dataTables_wrapper {
	clear: both;
	min-height: 302px;
	position: relative;
}

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

.dataTables_length {
	width: 40%;
	float: left;
	height: 18px;
	vertical-align: middle;
}

.dataTables_length select {
	width: 50px;
}

.dataTables_filter {
	float: right;
	height: 18px;
	text-align: right;
	vertical-align: middle;
	width: 50%;
}

.dataTables_info {
	float: left;
	line-height: 20px;
	vertical-align: middle;
	width: 60%;
}

.dataTables_paginate {
	width: 50px;
	float: right;
	text-align: right;
}

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

.paginate_disabled_previous {
	background-image: url('../ico/back_disabled.png');
}

.paginate_enabled_previous {
	background-image: url('../ico/back_enabled.png');
}

.paginate_disabled_next {
	background-image: url('../ico/forward_disabled.png');
}

.paginate_enabled_next {
	background-image: url('../ico/forward_enabled.png');
}



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

table.display thead th {
	background-color: #f0f0f0;
	cursor: pointer;
	font-weight: bold;
	padding: 5px 10px;
	text-align: left;
}

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

table.display td {
	line-height: 1.3em;
	padding: 0.25em 10px;
	vertical-align: top;
}

table.display td.dataaparitiei {
	padding-top: 0.75em;
	width: 100px;
}

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

table.display p {
	line-height: 1.5em;
	text-indent: 0;
}



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

.sorting_asc {
	background: url('../ico/sort_asc.png') no-repeat center right;
}

.sorting_desc {
	background: url('../ico/sort_desc.png') no-repeat center right;
}

.sorting {
	background: url('../ico/sort_both.png') no-repeat center right;
}

.sorting_asc_disabled {
	background: url('../ico/sort_asc_disabled.png') no-repeat center right;
}

.sorting_desc_disabled {
	background: url('../ico/sort_desc_disabled.png') no-repeat center right;
}





/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * DataTables row classes
 */
tr.odd, tr.odd td {
	background-color: #f9f9f9;
}

tr.even, tr.even td {
	background-color: #f0f0f0;
}




/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * Misc
 */
.top, .bottom {
	color: #333333;
	padding: 6px 2px;
}

.top .dataTables_info {
	float: none;
}

.dataTables_empty {
	text-align: center;
}

td.group {
	border-bottom: 2px solid #a19b9e;
	border-top: 2px solid #a19b9e;
}

td.details {
	border: 2px solid #a19b9e;
}

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

.paging_full_numbers {
	width: 400px;
	height: 22px;
	line-height: 22px;
}

.paging_full_numbers span.paginate_button, .paging_full_numbers span.paginate_active {
	border: 1px solid #aaa;
	padding: 2px 5px;
	margin: 0 3px;
	cursor: pointer;
}

.paging_full_numbers span.paginate_button {
	background-color: #dddddd;
}

.paging_full_numbers span.paginate_button:hover {
	background-color: #cccccc;
}

.paging_full_numbers span.paginate_active {
	background-color: #99b3ff;
}

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

table.display tr.odd.row_selected td {
	background-color: #ff8800;
}
