/*
 *  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
 *     /public/images/dataTables/ - relative to this CSS file.
 */

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * DataTables features
 */

.dataTables_wrapper {
	background: none repeat scroll 0 0 #dddeee;
	border: 2px solid #2980b9;
	border-radius: 2px 2px 2px 2px;
	margin: 10px 0 0 0;
	padding: 10px 0;
	position: relative;
	/* min-height: 150px; */
	clear: both;
	_height: 150px;
	zoom: 1; /* Feeling sorry for IE */
	display: inline-block;
	width: 100%;

	color: #333;
    font-family: "Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 12px;
    line-height: 1.6;
}

.dataTables_wrapper table {
	background: none repeat-x scroll 0 0 #f9f9f9;
	border-spacing: 0;
	border-collapse: collapse;
	margin: 7px auto;
	display: inline-table;
	clear: both;
	width: 100% !important;
	padding: 0;
}

.dataTables_wrapper table thead  {
	line-height: 15px; 
	height: 32px;
}

.dataTables_wrapper table thead th {
	background-color: #2980b9;
	font-weight: bold;
	padding: 6px 5px 6px 5px;
	color: #fff;
	cursor: pointer;
	/*white-space: nowrap;*/
	text-align: left;
	vertical-align: top;
}

.dataTables_wrapper table thead th.alignright {
	text-align: right;
}

.dataTables_wrapper table thead th.sorting, .dataTables_wrapper table thead th.sorting_desc, .dataTables_wrapper table thead th.sorting_asc {
	padding-right: 20px;
}

/*
.dataTables_wrapper table thead th.right {
	text-align: right;
	padding-right: 24px;
}
*/

.dataTables_wrapper table tbody tr.odd {
	background-color: transparent;
}

.dataTables_wrapper table tbody tr.even {
	/*background-color: transparent;*/
	background-color: #f1f1f1;
}

.dataTables_wrapper table tbody tr.odd.salesOrderGroup {
	background-color: #454545;
}

.dataTables_wrapper table tbody tr.even.salesOrderGroup {
	/*background-color: transparent;*/
	background-color: #454545;
}

/*
.dataTables_wrapper table tbody tr:hover td {
	background-color: green !important;	
}
*/

.dataTables_wrapper table td.center {
	text-align: center;
}

.dataTables_wrapper table td.alignright {
	text-align: right;
}

/*
.dataTables_wrapper table td a:hover, .dataTables_wrapper table td a:active {
	color: #fff;
	border-bottom: 1px dotted;
}
*/

.dataTables_wrapper table td a.sortHandle:hover, .dataTables_wrapper table td a.sortHandle:active {
	border-bottom: 0;
}

.dataTables_wrapper table tbody td {
	padding: 5px;
	border-right: thin solid #ddd;
	border-bottom: thin solid #ddd;
	vertical-align: top;
}

.dataTables_wrapper table tbody td a {
	color: #333;
}

/*
.dataTables_wrapper table tbody td a.jgButton {
	font-size: 11px;
	color: #000;
	border-radius: 2px;
	border: none;
}
*/

.dataTables_wrapper table tbody tr.even td.highlight {
	background-color: #503838;
}

.dataTables_wrapper table tbody tr.odd td.highlight {
	background-color: #453838;
}

/*
.dataTables_wrapper table tbody tr.even td.sorting_1 {
	background-color: #303F2F;
}

.dataTables_wrapper table tbody tr.odd td.sorting_1 {
	background-color: #31382F;
}

.dataTables_wrapper table tbody td.sorting_2 {
	background-color: #363636;
}
*/

.dataTables_filter input {
	border: 1px solid #2980b9;
}

.dataTables_wrapper label {
	color: #666;
}

.dataTables_length {
	margin: 1px 0 0 10px;
}

.dataTables_length select {
	border: 1px solid #2980b9;
	padding: 3px;
}

.dataTables_wrapper .paging_full_numbers span.paginate_button, 
.dataTables_wrapper .paging_full_numbers span.paginate_active,
.dataTables_wrapper .paging_jgms span.paginate_button, 
.dataTables_wrapper .paging_jgms span.paginate_active {
	border: 1px solid #C2D6D6;
	color: #333;
}

.dataTables_wrapper .dataTables_info {
	margin: 4px 0 0 10px;
	color: #666;
	width: 50%;
	float: left;
}

.dataTables_wrapper .dataTables_key {
	margin: 6px 0 0 10px;
	float: left;
}

.dataTables_wrapper .dataTables_paginate {
	float: right;
	text-align: right;
	margin: 3px 10px 0 0;
}

.dataTables_processing {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 250px;
	height: 30px;
	margin-left: -125px;
	margin-top: -15px;
	padding: 14px 0 2px 0;
	border: 1px solid #BDD684;
	background-color: #fff;
	text-align: center;
	color: #7A8D4E;
	font-size: 14px;
}

.dataTables_length {
	/* width: 40%; */
	float: left;
	margin: 0px 0 0 10px;
}

.dataTables_filter {
	/* width: 50%;*/
	float: right;
	text-align: right;
	position: relative;
}

.dataTables_filter input {
	padding: 2px;
	margin-righT: 10px;
}



/* Pagination nested */
.paginate_disabled_previous, .paginate_enabled_previous, .paginate_disabled_next, .paginate_enabled_next {
	height: 16px;
	width: 16px;
	margin-left: 3px;
	float: left;
	cursor: pointer;
}


/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * DataTables sorting
 */

.dataTables_wrapper table thead th.sorting_asc {
	background: url('/style/images/desc.gif') no-repeat right 9px #003366;
}

.dataTables_wrapper table thead th.sorting_desc {
	background: url('/style/images/asc.gif') no-repeat right 9px #003366;
}

.sorting {
	background: url('/style/images/bg.gif') no-repeat right 9px;
}


/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * Misc
 */
.dataTables_scroll {
	clear: both;
}

.dataTables_scrollBody {
	*margin-top: -1px;
}

.top, .bottom {
	padding: 15px;
	background-color: #F5F5F5;
	border: 1px solid #CCCCCC;
}

.top {
	float: none;
}

.clear {
	clear: both;
}

.dataTables_empty {
	text-align: center;
}

td.group {
	background-color: #d1cfd0;
	border-bottom: 2px solid #A19B9E;
	border-top: 2px solid #A19B9E;
}

.dataTables_wrapper td.details {
	/* background-color: #7A8D4E;*/
	padding: 0 0 0 30px;
}

.dataTables_wrapper td.details table {
	margin: 0;
	border-bottom: 3px solid #555;
	background-color: #393939;
}

.dataTables_wrapper td.details table thead {
	height: 20px;
}

.dataTables_wrapper td.details table th {
	background-color: #555;
}

.dataTables_wrapper td.details table span.ui-button-text {
	padding: 1px 3px;
	font-size: 10px;
}

.paging_full_numbers, .paging_jgms {
	font-size: 12px;
	width: 400px;
	height: 19px; /* was 22 */
	line-height: 19px; /* was 22 */
	-moz-user-select: none;
	-webkit-user-select: none;
	user-select: none;
}

/*
.paging_full_numbers span.paginate_button,
 	.paging_full_numbers span.paginate_active {
	border: 1px solid #aaa;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	padding: 2px 5px;
	margin: 0 1px;
	cursor: pointer;
}
*/
.paging_full_numbers a.paginate_button,
.paging_full_numbers a.paginate_active,
.paging_jgms a.paginate_button,
.paging_jgms a.paginate_active

 {
	border: 0;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	padding: 3px 6px;
	margin: 0 1px;
	cursor: pointer;
	*cursor: hand;
	color: #666 !important;
}

.paging_full_numbers a.paginate_button,
.paging_jgms a.paginate_button {
	background-color: #eee;
}

.paging_full_numbers a.paginate_button:hover,
.paging_jgms a.paginate_button:hover
 {
	background: #A3C2C2;
	color: #036 !important; 
	text-decoration: none;
}

.paging_full_numbers a.paginate_button.current {
	background: #2980b9;
	color: #fff !important;
}

.paging_full_numbers a.paginate_button.disabled {
	display: none;
}

.paging_full_numbers a.paginate_active,
.paging_jgms a.paginate_active
 {
	background-color: #003366;
	color: #fff !important;
	cursor: default;
}

table.display tr.even.row_selected td {
	background-color: #ccc !important;
	border-bottom: 1px solid #ccc;
	border-right: 1px solid #ccc;
}

table.display tr.odd.row_selected td {
	background-color: #ccc !important;
	border-bottom: 1px solid #ccc;
	border-right: 1px solid #ccc;
}



div.box {
	height: 100px;
	padding: 10px;
	overflow: auto;
	border: 1px solid #8080FF;
	background-color: #E5E5FF;
}

.dataTables_wrapper table.light {
	background: none repeat-x scroll 0 0 #ccc;
	color: #111;
}

.dataTables_wrapper .filterMatches {
	background-color: #FFFFAF;
	color: #383838;
	padding: 0 1px 1px;
}

ul#columnvisibility {
	margin: 0 auto;
    padding: 0;
    font-size: 10px;
}

ul#columnvisibility li {
	text-align: left;
    float: left;
    list-style: none;
    padding: 3px 5px 3px 5px;
    margin: 2px;
    border: 1px solid #ddd;
}

ul#columnvisibility li input {
	vertical-align: text-bottom;
	margin-right: 5px;
}

.dataTables_wrapper span.insert {
	background-color: green;
	padding: 1px 4px;
	margin: 2px;
	display: inline-block;
}

.dataTables_wrapper span.update {
	background-color: orange;
	padding: 1px 4px;
	margin: 2px;
	display: inline-block;
}

.dataTables_wrapper span.delete {
	background-color: red;
	padding: 1px 4px;
	margin: 2px;
	display: inline-block;
}

.dataTables_wrapper span.group {
	background-color: #2980b9;
	padding: 1px 8px;
	margin: 2px;
	display: inline-block;
	color: #f9f9f9;
	border-radius: 4px;
}

.dataTables_wrapper span.blank {
	background-color: #393939;
	padding: 1px 4px;
	margin: 1px 0;
	font-size: 8px;
	display: inline-block;
}

.dataTables_wrapper .nowrap {
	white-space: nowrap;
}

.dataTables_wrapper thead input {
	color: #363636;
	font-size: 11px;
	border: 1px solid #363636;
	border-right: none;
	padding: 3px;
	float: left; 
	width: 95%;
}

.dataTables_wrapper thead input.search_init {
	color: #999;
}

/* Style the "X" text button next to the search input field */
.dataTables_wrapper .clearfield {
    float:left; 
    width:14px;
    height:18px;
    line-height:15px;
    /* margin-right:15px; */
    padding:0px;
    font-size:11px;
    /* background: #fff; */
    /* border: 1px solid #363636; */
    border-left:none;
    margin-left: -15px;
}

/* Set default state of "X" and hide it */
.dataTables_wrapper .clearfield a {
	display: block;
    color:#eee;
    cursor:pointer;
    width: 14px;
    height: 18px;
	display: none;
}
/* Set the hover state of "X" */
.dataTables_wrapper .clearfield a:hover {
    color: #383838;
}

.dataTables_wrapper .cellerror {
	background-color: #A41010;
}

.dataTables_wrapper .dataTables_textsize {
	float: left;
	margin: 2px 0 0 15px;
}

.dataTables_wrapper a.paginate_button_disabled {
    display: none;
}

.dataTables_wrapper a.paginate_button_noClick {
	background-color: #eee;
	color: #eee !important;
	border-color: #AAAAAA;
	cursor: default;
}

.dataTables_wrapper a.paginate_button_noClick:hover {
	background-color: #eee;
	cursor: default;
}

/* SELECTOR WRAPPER */

.selectorDialog.dialog.ui-dialog-content.ui-widget-content {
    padding: 0 8px 6px 1px;
}

.selectorDialog .dataTables_filter {
	text-align: right;
	margin: 3px 3px 0 0;
}

.selectorDialog .dataTables_filter input {
	width: 100px;
}

.selectorDialog .dataTables_wrapper {
	color: #10222B;
	background: none repeat scroll 0 0 #F6FFE0;
	border: 1px solid #CFDCC4;
	padding: 3px 3px 6px 3px;
}

.selectorDialog .dataTables_wrapper table {
	margin: 2px auto 4px;
	background: none repeat-x scroll 0 0 #F6FFE0;
}

.selectorDialog .dataTables_wrapper label {
	color: #10222B;
}

.selectorDialog .dataTables_wrapper .dataTables_info {
	color: #10222B;
}

.selectorDialog .dataTables_wrapper table thead {
	height: 26px;
}

.selectorDialog .dataTables_wrapper table thead tr th {
	background-color: #F6FFE0;
	font-weight: bold;
	border: none;
	color: #10222B;
}

.selectorDialog .dataTables_wrapper table tbody tr.even {
	background-color: transparent;
}

.selectorDialog .dataTables_wrapper table tbody td {
	padding: 3px;
	border: none;
	vertical-align: top;
}

.selectorDialog .dataTables_wrapper table tbody {
	border-top: 2px solid #006400;
	border-bottom: 2px solid #006400;
}

.selectorDialog .dataTables_wrapper table tbody td.sorting_1 {
	background-color: transparent;
}

.selectorDialog .dataTables_wrapper .dataTables_info {
    margin: 3px 0 0 3px;
}

.selectorDialog .ui-button .ui-button-text {
    display: block;
    font-size: 10px;
    line-height: 10px;
}


.selectorDialog .ui-button-text-only .ui-button-text {
    padding: 4px 4px;
}

.dataTable div.collection {
	border: 1px solid #555;
	margin: 0 10px 0 0;
    padding: 10px;
    -webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	display: inline-block;
}

.dataTable ul {
	background-color: #555;
	margin: 0 10px 0 0;
    padding: 10px;
    -webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.dataTable ul li {
	line-height: 200%;
	list-style: none;
}

.dataTable ul li strong {
	display: inline-block;
	width: 200px;
}

table.mrpDetailDataTable tbody tr:hover td {
	background-color: #495139 !important;	
}

.dataTable tr.selected {
	background-color: #8B0000 !important;		
}

.dataTable tr td.positiveright {
	background-color: green;
	text-align: right;		
}

.dataTable tr td.negativeright {
	background-color: red;	
	text-align: right;	
}

.dataTable tr th div.vertical {
	 /* Abs positioning makes it not take up vert space */ 
	width: 12px;
	white-space: nowrap;
    
    /* Rotate from top left corner (not default) */
    -webkit-transform-origin: 6px 8px;
    -moz-transform-origin:    6px 8px;
    -ms-transform-origin:     6px 8px;
    -o-transform-origin:      6px 8px;
    
    -webkit-transform: rotate(90deg); 
    -moz-transform:    rotate(90deg); 
    -ms-transform:     rotate(90deg); 
    -o-transform:      rotate(90deg); 
}

.dataTable th.included, .dataTable td.included {
	/*color: green;*/
}

.dataTable th.excluded, .dataTable td.excluded {
	color: #aaa;
}

.dataTable ins {
	background:green;
	text-decoration:none
}

.dataTable tr th div.semivertical {
	 /* Abs positioning makes it not take up vert space */ 
	width: 60px;
	white-space: nowrap;
    
    /* Rotate from top left corner (not default) */
    -webkit-transform-origin: 6px 8px;
    -moz-transform-origin:    6px 8px;
    -ms-transform-origin:     6px 8px;
    -o-transform-origin:      6px 8px;
    
    -webkit-transform: rotate(45deg); 
    -moz-transform:    rotate(45deg); 
    -ms-transform:     rotate(45deg); 
    -o-transform:      rotate(45deg); 
}

.dataTable del {
	background:red;
	text-decoration:none
}

.dataTable pre {
	background-color: #ddd;
    padding: 7px 5px 5px 5px;
    margin: 2px;
    border-radius: 1px;
}

.dataTable h3 {
	font-weight: normal;
	color: #333;
	margin-left: 2px;
	font-size: 13px;
}