/*
 *  File:         demo_table_jui.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
 *     ../images/ - relative to this CSS file.
 */


/*
 * jQuery UI specific styling
 */

.entry .paging_two_button .fg-button {
	float: left;
	cursor: pointer;
	* cursor: hand;
}

.entry .paging_full_numbers .fg-button {
	padding: 2px 6px;
	cursor: pointer;
	* cursor: hand;
}

.entry .paging_full_numbers {
	width: 350px !important;
}

.entry .fg-toolbar {
	padding: 5px;
}

.entry .dataTables_paginate {
	width: auto;
}

.entry table.display thead th {
	padding: 3px 0px 3px 10px;
	cursor: pointer;
	* cursor: hand;
}

.entry .ui-icon {
	vertical-align:text-bottom !important;
	display: inline-block !important;
}


/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 *
 * Everything below this line is the same as demo_table.css. This file is
 * required for 'cleanliness' of the markup
 *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */



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


.entry .dataTables_wrapper {
	position: relative;
	/* min-height: 302px;
	_height: 302px; */
	clear: both;
}

.entry .dataTables_processing {
	position: absolute;
	top: 45px;
	left: 200px;
	width: 360px;
	height: 45px;
	border: 1px solid #000;
	text-align: center;
	color: #000;
	font-size: 11px;
	padding: 12px 0;
	background: #ffffff url(http://resources.hotdocs.ca/img/skin/default/loading.gif) 70px center no-repeat;
}

.entry .dataTables_length {
	clear:both;
	width: 40%;
	float: left;
}

.entry .dataTables_filter {
	float: left;
}
	.entry #listings_filter input[type="text"] {
		width: 25em;
		margin: 0;
		padding: 1px;
		border: 1px solid #f0f0f0;
		border-top: 1px solid #3b3939;
		border-left: 1px solid #3b3939;
		outline: none !important;
	}
	
	.entry #listings_filter input[type="text"]:focus {
		outline: none !important;
	}

.entry .dataTables_info {
	width: 100%;
}

.entry .dataTables_paginate {
	width:40%;
	float: right;
	text-align: right;
}

/* Pagination nested */

.entry .paginate_disabled_previous, .paginate_enabled_previous, .paginate_disabled_next, .paginate_enabled_next {
	height: 19px;
	width: 19px;
	margin-left: 3px;
	float: left;
}

.entry .paginate_disabled_previous {
	background-image: url('../images/back_disabled.jpg');
}

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

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

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



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

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

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

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

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


/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * DataTables sorting
 */
/*
.entry .sorting_asc {
	background: url('../images/sort_asc.jpg') no-repeat center right;
}

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

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



/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * DataTables row classes
 */
/*
.entry table.display tr.odd.gradeA {
	background-color: #ddffdd;
}

.entry table.display tr.even.gradeA {
	background-color: #eeffee;
}




.entry table.display tr.odd.gradeA {
	background-color: #ddffdd;
}

.entry table.display tr.even.gradeA {
	background-color: #eeffee;
}

.entry table.display tr.odd.gradeC {
	background-color: #ddddff;
}

.entry table.display tr.even.gradeC {
	background-color: #eeeeff;
}

.entry table.display tr.odd.gradeX {
	background-color: #ffdddd;
}

.entry table.display tr.even.gradeX {
	background-color: #ffeeee;
}

.entry table.display tr.odd.gradeU {
	background-color: #ddd;
}

.entry table.display tr.even.gradeU {
	background-color: #eee;
}

*/
.entry tr.odd {
	background-color: #ffffff;
}

.entry tr.even {
	background-color: #eeeeee;
}





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

.entry .top .dataTables_info {
	float: none;
}

.entry .clear {
	clear: both;
}

.entry .dataTables_empty {
	text-align: center;
}

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

.entry tfoot input.search_init {
	color: #999;
}

.entry td.group {
	background-color: #d1cfd0;
	border-bottom: 2px solid #A19B9E;
	border-top: 2px solid #A19B9E;
}

.entry td.details {
	background-color: #d1cfd0;
	border: 2px solid #A19B9E;
}


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

.entry .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;
}

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

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

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

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

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

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

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

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

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

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

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

/* For the Conditional-CSS grading rows */
/*
 	Colour calculations (based off the main row colours)
  Level 1:
		dd > c4
		ee > d5
	Level 2:
	  dd > d1
	  ee > e2
 */
/*
.entry tr.odd.gradeA td.sorting_1 {
	background-color: #c4ffc4;
}

.entry tr.odd.gradeA td.sorting_2 {
	background-color: #d1ffd1;
}

.entry tr.odd.gradeA td.sorting_3 {
	background-color: #d1ffd1;
}

.entry tr.even.gradeA td.sorting_1 {
	background-color: #d5ffd5;
}

.entry tr.even.gradeA td.sorting_2 {
	background-color: #e2ffe2;
}

.entry tr.even.gradeA td.sorting_3 {
	background-color: #e2ffe2;
}

.entry tr.odd.gradeC td.sorting_1 {
	background-color: #c4c4ff;
}

.entry tr.odd.gradeC td.sorting_2 {
	background-color: #d1d1ff;
}

.entry tr.odd.gradeC td.sorting_3 {
	background-color: #d1d1ff;
}

.entry tr.even.gradeC td.sorting_1 {
	background-color: #d5d5ff;
}

.entry tr.even.gradeC td.sorting_2 {
	background-color: #e2e2ff;
}

.entry tr.even.gradeC td.sorting_3 {
	background-color: #e2e2ff;
}

.entry tr.odd.gradeX td.sorting_1 {
	background-color: #ffc4c4;
}

.entry tr.odd.gradeX td.sorting_2 {
	background-color: #ffd1d1;
}

.entry tr.odd.gradeX td.sorting_3 {
	background-color: #ffd1d1;
}

.entry tr.even.gradeX td.sorting_1 {
	background-color: #ffd5d5;
}

.entry tr.even.gradeX td.sorting_2 {
	background-color: #ffe2e2;
}

.entry tr.even.gradeX td.sorting_3 {
	background-color: #ffe2e2;
}

.entry tr.odd.gradeU td.sorting_1 {
	background-color: #c4c4c4;
}

.entry tr.odd.gradeU td.sorting_2 {
	background-color: #d1d1d1;
}

.entry tr.odd.gradeU td.sorting_3 {
	background-color: #d1d1d1;
}

.entry tr.even.gradeU td.sorting_1 {
	background-color: #d5d5d5;
}

.entry tr.even.gradeU td.sorting_2 {
	background-color: #e2e2e2;
}

.entry tr.even.gradeU td.sorting_3 {
	background-color: #e2e2e2;
}
*/

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

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