/*
 *  Description:  CSS descriptions for DataTables 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.
 *
 * ***************************************************************************
 */
.paging_two_button .fg-button {
	cursor:pointer;
	float:left;
}
.paging_full_numbers .fg-button {
	cursor:pointer;
	padding:2px 6px;
}

.dataTables_wrapper {
	position: relative;
	min-height: 302px;
	clear: both;
	_height: 302px;
	zoom: 1; /* Feeling sorry for IE */
}

.dataTables_processing {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 250px;
	height: 60px;
	/*margin-left: -125px;*/
	margin-top: -15px;
	/*padding: 14px 0 2px 0;
	border: 1px solid #ddd;*/
	text-align: center;
	color: #999;
	font-size: 14px;
	background-color: white;
	background-image: url('/images/gif/spinner.gif');
	background-repeat: no-repeat;
	
}

.dataTables_length {
	/*width: 40%;*/
	float: right;
	padding: 5px;
}

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

.dataTables_info {
	width: 50%;
	float: left;
	padding: 5px;
}

.dataTables_paginate {
	float: right;
	text-align: right;
	padding: 5px;
}

/* Pagination nested */
.paginate_disabled_previous, .paginate_enabled_previous, .paginate_disabled_next, .paginate_enabled_next {
	height: 19px;
	width: 19px;
	margin-left: 3px;
	float: left;
}
.paginate_disabled_previous {
	background-image: url('./images/back_disabled.jpg');
}

.paginate_enabled_previous {
	background-image: url('./images/back_enabled.jpg');
}

.paginate_disabled_next {
	background-image: url('./images/forward_disabled.jpg');
}

.paginate_enabled_next {
	background-image: url('./images/forward_enabled.jpg');
}



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

table.display thead th {
	padding: 3px 18px 3px 10px;
	border-bottom: 1px solid black;
	font-weight: bold;
	cursor: pointer;
	* cursor: hand;
}

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

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

table.display td {
	padding: 3px 10px;
}

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



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

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

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

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

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

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