/*
 *  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.
 */

.dataGrid tbody
{
  border-left  :  solid 1px #d3d3d3;
  border-right :  solid 1px #d3d3d3;
}


/*
 * jQuery UI specific styling
 */

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

.paging_full_numbers .ui-button {
	padding: 2px 6px;
	margin: 0;
	cursor: pointer;
	* cursor: hand;
}

.ui-buttonset .ui-button {
	margin-right: -0.1em !important;
}

.paging_full_numbers {
	width: 350px !important;
}

.ui-toolbar {
	padding: 5px;
}

.dataTables_paginate {
	width: auto;
}

.dataTables_info {
	padding-top: 3px;
}

table.tblData thead th {
	padding: 6px 0px 6px 10px;
	cursor: pointer;
	* cursor: hand;
}

div.dataTables_wrapper .ui-widget-header {
	font-weight: normal;
}

div.dataTables_wrapper .dataTables_empty
{
  font-size  :  12px;
  padding    :  80px 0px 80px 15px;
}

/*
 * Sort arrow icon positioning
 */
table.tblData thead th div.DataTables_sort_wrapper {
	position: relative;
	padding-right: 20px;
	padding-right: 20px;
	font-size  :  12px;
	text-align : left;
}

table.tblData thead th div.DataTables_sort_wrapper span {
	position: absolute;
	top: 50%;
	margin-top: -8px;
	right: 0;
}


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



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

.dataTables_wrapper {
	position: relative;
	min-height: 302px;
	_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: #999;
	font-size: 11px;
	padding: 2px 0;
}

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

.dataTables_filter {
	float: left;
	text-align: left;
}

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

.dataTables_paginate {
	float: right;
	text-align: right;
}

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

table.tblData tfoot th {
	padding: 5px 0px 5px 10px;
	font-weight: bold;
	font-weight: normal;
}

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

table.tblData td {
	padding: 5px 10px;
}

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

.tblData tr td
{
  border-left  :  solid 1px #eeeeee;
}


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

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

tr.even {
	background-color: #f6f6f6;
}

tr.odd.selected {
	background-color: #ffffe6;
}

tr.even.selected {
	background-color: #fdfdc8;
}


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

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


tr.odd.selected td.sorting_1 {
	background-color: #fbfbde;
}

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


/*
  Row Highlighting
*/

.ex_highlight .tblData tbody tr.even:hover, .tblData tbody tr.even td.highlighted {
	background-color: #fff7d9;
}

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

.ex_highlight_row .tblData tr.even:hover {
	background-color: #fff7d9;
}

.ex_highlight_row .tblData tr.even:hover td.sorting_1 {
	background-color: #fff7d9;
}

.ex_highlight_row .tblData tr.odd:hover {
	background-color: #fff7d9;
}

.ex_highlight_row .tblData tr.odd:hover td.sorting_1 {
	background-color: #fff7d9;
}


/*
 * Namespace DTCR - "DataTables ColReorder" plug-in
 */

table.DTCR_clonedTable {
	background-color: white;
	z-index: 202;
}

div.DTCR_pointer {
	width: 1px;
	background-color: #0259C4;
	z-index: 201;
}





/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * TableTools styles
 */
.TableTools {
	float: right;
}

.TableTools_Button {
	position: relative;
	float: left;
	margin-right: 3px;
	padding: 3px 5px;
	background-color: #fff;
	border: 1px solid #d0d0d0;
	cursor: pointer;
	*cursor: hand;
}

button.TableTools_Button::-moz-focus-inner { 
	border: none !important;
	padding: 0;
}

.TableTools_text_hover {
	border: 1px solid #999;
	background-color: #f0f0f0;
}

div.TableTools_collectionBackground {
	background-color: black;
	z-index: 1100;
}

div.TableTools_collection {
	position: relative;
	width: 150px;
	background-color: #f3f3f3;
	padding: 3px;
	border: 1px solid #ccc;
	z-index: 1102;
}

div.TableTools_collection button.TableTools_Button {
	background-color: white;
	width: 100%;
	float: none;
	margin-bottom: 2px;
}

div.TableTools_catcher {
	position: absolute;
	z-index: 1101;
}

.disabled {
	color: #999;
}



button.ColVis_Button {
	text-align: left;
}

div.ColVis_collection button.ColVis_Button:hover {
	border: 1px solid #999;
	background-color: #f0f0f0;
}

span.ColVis_radio {
	display: inline-block;
	width: 20px;
}



div.toolbar
{
  float  :  left;
}

div.toolbar select
{
  margin-left : 5px;
}

#BtnMultiDelete, #BtnMultiDbDelete, #BtnMultiWebDelete, #BtnMultiNewsletterDelete, #BtnMultiUsersDelete
{
  float  :  left;
  margin-right :  5px;
}

button.ColVis_MasterButton
{
  padding  :  6px 8px 5px 8px;
  border  :  solid 1px #d3d3d3;
  
  -moz-border-radius     :  4px;
  border-radius          :  4px;
  -webkit-border-radius  :  4px;  
}

button.ColVis_MasterButton:hover
{
  border  :  solid 1px #999999;
}