
/*
 * Table
 */
 

 
table.dataTable {
	margin: 0 auto;
	clear: both;
	width: 100%;
}
    
table.dataTable thead th {
	padding: 1px 14px 1px 6px;
	border-bottom: 1px solid black;
	font-weight: bold;
	cursor: pointer;
	/*text-align:center;*/
	background-color:  #E6EBE6;
	font-size:11px;
	color:#000A00;
	height:25px;
	border-top:1px solid #000;
		/*cursor: hand; #4D7094;*/
}  

table.dataTable tfoot th {
	padding: 1px 10px 1px 6px;
	border-top: 1px solid black;
	font-weight: bold;
	
}

table.dataTable tbody td {
	padding: 1px 6px;
	font-size:11px;
	/*text-align:center;*/
	}

table.dataTable td.center,
table.dataTable td.dataTables_empty {
	text-align: center;
}

table.dataTable tr.even { background-color: 	#E6EBE6; }
table.dataTable tr.odd { background-color: white; }

/*table.dataTable tr.odd td.sorting_1 { background-color: #CCD6CC; }
table.dataTable tr.odd td.sorting_2 { background-color:#E6EBE6; }
table.dataTable tr.odd td.sorting_3 { background-color: #8099B2; }
table.dataTable tr.even td.sorting_1 { background-color: #CCE0FF; }
table.dataTable tr.even td.sorting_2 { background-color: #F2F3FF; }
table.dataTable tr.even td.sorting_3 { background-color: #F9F9FF; }
*/

/*
 * Table wrapper
 */
.dataTables_wrapper {
	position: relative;
	clear: both;
	*zoom: 1;
	background-color: #6B957D;
	/*background-color: #36780f;
    background-image: linear-gradient(to bottom, #36780f, #1F4102);*/
    border-top-left-radius:4px;
    border-top-right-radius:4px;
    border:1px solid #000000;
    margin-top:4px;
    
    
   }


/*
 * Page length menu
 */
 
.dataTables_length {
	float: left;
	margin-left:10px;
	color:#FFF;
	}

.dataTables_length select{
	color:#000;
	
}


/*
 * Filter
 */
.dataTables_filter {
	float: right;
	text-align: right;
}


/*
 * Table information
 */
.dataTables_info {
	float: left;
	text-align:left;
	clear: both;
	padding:3px;
	font-size:10px;
	height:21px;
	color:#FFF;
	width:50%;
	margin-left:-1px;
	border-left:1px solid #000000;
	 border-bottom:1px solid #000000;
	 background-color: #6B957D;
	/*background-color: #36780f;
    background-image: linear-gradient(to bottom, #36780f, #1F4102);*/
	border-bottom-left-radius:4px;
	
}


/*
 * Pagination
 */
.dataTables_paginate {
	float:right;
	text-align:right;
	padding:3px;
	width:51%;
	font-size:10px;
	margin-top:-21px;
	margin-right:-1px;
	height:21px;
	 border-right:1px solid #000000;
	 border-bottom:1px solid #000000;
	 background-color: #6B957D;
	/*background-color: #36780f;
    background-image: linear-gradient(to bottom, #36780f, #1F4102);*/
	border-bottom-right-radius:4px;
	
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
  box-sizing: border-box;
  display: inline-block;
  min-width: 1.5em;
  padding: 0.5em 1em;
  margin-left: 2px;
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
  *cursor: hand;
  color: #333333 !important;
  border: 1px solid transparent;
}

/* Two button pagination - previous / next */
.paginate_disabled_previous,
.paginate_enabled_previous,
.paginate_disabled_next,
.paginate_enabled_next {
	cursor: pointer;
	cursor: hand;
	color: #FFF !important;
	
	
	}
.paginate_disabled_previous:hover,
.paginate_enabled_previous:hover,
.paginate_disabled_next:hover,
.paginate_enabled_next:hover {
	text-decoration: none !important;
	color: #FFF !important;
	
}
.paginate_disabled_previous:active,
.paginate_enabled_previous:active,
.paginate_disabled_next:active,
.paginate_enabled_next:active {
	outline: none;
	color: #FFF !important;
	
	}

.paginate_disabled_previous,
.paginate_disabled_next {
	color: #666 !important;
	color: #FFF !important;
	
}
.paginate_disabled_previous,
.paginate_enabled_previous {
	padding-left: 23px;
	color: #FFF !important;
	
}
.paginate_disabled_next,
.paginate_enabled_next {
	padding-right: 23px;
	margin-left: 10px;
	color: #FFF !important;
		
}

.paginate_enabled_previous { background:url('images/back_enabled.png');
                             background-repeat:no-repeat;
                             background-position:5px -4px}
.paginate_enabled_previous:hover { background: url('images/back_enabled_hover.png');
                                    background-repeat:no-repeat;
                                    background-position:5px -4px}
.paginate_disabled_previous { background: url('images/back_disabled.png');
                               background-repeat:no-repeat;
                                    background-position:5px -4px}

.paginate_enabled_next { background: url('images/forward_enabled.png');
                          background-repeat:no-repeat;
                                    background-position:20px -4px}
.paginate_enabled_next:hover { background: url('images/forward_enabled_hover.png');
                               background-repeat:no-repeat;
                                    background-position:20px -4px}
.paginate_disabled_next { background: url('images/forward_disabled.png');
                          background-repeat:no-repeat;
                                    background-position:20px -4px}

/* Full number pagination */
.paging_full_numbers {
	height: 22px;
	line-height: 22px;
}
.paging_full_numbers a:active {
	outline: none
}
.paging_full_numbers a:hover {
	text-decoration: none;
}

.paging_full_numbers a.paginate_button,
.paging_full_numbers a.paginate_active {
	border: 1px solid #aaa;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	padding: 2px 5px;
	margin: 0 3px;
	cursor: pointer;
	*cursor: hand;
	color: #333 !important;
}

.paging_full_numbers a.paginate_button {
	background-color: #ddd;
}

.paging_full_numbers a.paginate_button:hover {
	background-color: #ccc;
	text-decoration: none !important;
}

.paging_full_numbers a.paginate_active {
	background-color: #99B3FF;
}


/*
 * Processing indicator
 */
.dataTables_processing {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 250px;
	height: 30px;
	margin-left: -125px;
	margin-top: -40px;
	padding: 10px 0 2px 0;
	border: 1px solid #ddd;
	text-align: center;
	color:#FFF;
	font-size: 14px;
	background-color: #07441a;
}


/*
 * Sorting
 */
.sorting { background: url('images/sort_both.png') no-repeat center right;}
.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_asc_disabled { background: url('images/sort_asc_disabled.png') no-repeat center right; background-size:19px 19px; }
.sorting_desc_disabled { background: url('images/sort_desc_disabled.png') no-repeat center right; }
 
table.dataTable thead th:active,
table.dataTable thead td:active {
	outline: none;
	
}


/*
 * Scrolling
 */

.dataTables_scrollHead
   {
       background-color:#E6EBE6;
       border:1px solid #000;
   }


.dataTables_scrollBody {
	*margin-top: -1px;
	-webkit-overflow-scrolling: touch;
    /* Modified by saravanan */
	border-top:1px solid #000;

	 /* Modified by saravanan */
}

tr.row_selected td
{
    background-color:	#B2C2B2 !important;
}
tr.row_incomplete td
{
    background-color:	#f4424e !important;
}

tr.row_incompleteselect td
{
    background-color:	#f46542 !important;
}

tr.row_selected_scrubbingrules
{
     background-color:	#B2C2B2 !important;
}

tr.row_selected_patient
{
    background-color:	#B2C2B2 !important;
}

/*tr.row_selected_patient.row_selectionforinactivepatients td
{
    background-color:	#B2C2B2 !important;
} */

tr.row_selected_case td
{
    background-color:	#B2C2B2 !important;
}

tr.row_selected_insurance td
{
    background-color:	#B2C2B2 !important;
}

tr.row_selected_address td
{
    background-color:	#B2C2B2 !important;
}

tr.row_selected_referringprovider td
{
    background-color:	#B2C2B2 !important;
}

tr.row_selected_assignedprovider td
{
    background-color:	#B2C2B2 !important;
}

tr.row_selected_appointment td
{
    background-color:	#B2C2B2 !important;
}

tr.row_selected_procedure td
{
    background-color:	#B2C2B2 !important;
}

tr.row_selected_edireceiver td
{
    background-color:	#B2C2B2 !important;
}


tr.row_selected_diagnosis td
{
    background-color:	#B2C2B2 !important;
}

tr.row_selected_modifier td
{
    background-color:	#B2C2B2 !important;
}

tr.row_selected_practice td
{
    background-color:	#B2C2B2 !important;
}

tr.row_selected_user td
{
    background-color:	#B2C2B2 !important;
}

tr.row_selected_commonlookup td
{
    background-color:	#B2C2B2 !important;
}

tr.row_selected_deposit td
{
    background-color:	#B2C2B2 !important;
}

tr.row_selected_deposit.row_selection td
{
    background-color:	#B2C2B2 !important;
}

tr.row_select td
{
    background-color:	#B2C2B2 !important;

}

tr.row_selection td
{
    background-color:	#DED7D7 !important;
    border-bottom   : 1px solid #fff;
}

tr.row_selectionforinactive td
{
 /*  border-bottom   : 1px solid #fff; */
    color:Red;
    
}

tr.row_selectionkeyup td
{
    background-color:	#B2C2B2 !important;
    border-bottom   : 1px solid #ffffff;
}

tr.row_selected_patientsearch td
{
    background-color:	#B2C2B2 !important;
}

tr.row_selected_patientstmhistory td
{
    background-color:	#B2C2B2 !important;
}

tr.row_selected_erndetails td {
    background-color: #B2C2B2 !important;
}




td.a-left
{
    text-align:left;
}


td.f-left
{
    text-align:left;
    text-indent:30px;
}


td.r-left
{
    text-align:left;
    text-indent:30px;
}


td.a-right
{   
    direction:rtl;
    /*text-align:right;*/
    text-indent:20px;   
}

td.r-right
{  
    text-align:right;
}

input.r-right
{  
    text-align:right;
}

th.r-right
{  
    text-align:right;
    text-indent:-20px;
}


td.am-right
{
   float: right;
   margin-right: 20px;
}

td.a-center
{
    text-align:center;
}


th.f-left
{
    text-align:left;
    text-indent:30px;
}

th.r-left
{
    text-align:left;
}


th.a-left
{
    text-align:left;
}


th.a-right
{
    text-align:right;
}

td.a-aright
{
    text-align:right;
}


th.a-center
{
    text-align:center;
}


/* Test Start */   
/*********************************
* jQuery DataTables
**********************************/
.dataTables_length {
    float: left;
    width: 40%;
}
 
.dataTables_filter {
    float: right;
    text-align: right;
    width: 50%;
}
 
.dataTables_info {
    float: left;
    width: 50%;
    vertical-align: middle;
    /*min-height: 100%;*/
    /*position: absolute;*/
}
 
.dataTables_paginate {
    float: right;
    text-align: right;
}
 
/* Fix table margin from typography.css */
/*.dataTables_wrapper .dataTable {
    margin: 0px;
    border-collapse: collapse;
}*/
 
.dataTables_wrapper .dataTables_scrollHeadInner table{
    margin: 0px;
    border-collapse: collapse;
}
 
.dataTables_wrapper .dataTables_scrollHead {
    background-color: #E6EBE6;
}
 
.dataTables_wrapper .dataTables_scrollHeadInner th {
    background-color: #E6EBE6;
    white-space: nowrap;
    /*  border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #b2b2b2;*/
    border: 1px solid #D3D3D3;
    text-align: center;
    font-weight: 600;
/*  padding-right: 1em;
    padding-left: 1em;*/
}
 
.dataTables_wrapper .dataTables_scrollHeadInner th.sorting_asc {
    background-image: url(css/images/sort_asc.png);
    background-repeat: no-repeat;
    background-position: right center;
}
 
.dataTables_wrapper .dataTables_scrollHeadInner th.sorting_desc {
    background-image: url(css/images/sort_desc.png);
    background-repeat: no-repeat;
    background-position: right center;
}
 
.dataTables_wrapper .dataTables_scrollHeadInner th.sorting {
    background-image: url(css/images/sort_both.png);
    background-repeat: no-repeat;
    background-position: right center;
}
 
.dataTables_wrapper .dataTables_scrollBody td {
    white-space: nowrap;
    overflow: hidden;
/*  padding-right: 1em;
    padding-left: 1em;*/
}
/* Test End */


td.a-amount {  float:left;
    text-align: right;
    width:10em; 
    vertical-align:middle;
    }
    
    th.a-amount {  
    text-align: center;
    }
    
    td.t-center {  float:right;
    text-align: left;
    width:10em; }
    
     td.t-remind 
     {
         float:left;
         text-align: right;
         text-indent:4em;
         width:8em;
    }
    td.a-amt
    {
    text-align:right;
    vertical-align:middle;
    }
     th.a-amt
    {
    text-align:center;
    }
    
    td.t-total 
     {
         float:left;
         text-align: right;
         text-indent:1em;
         width:4em;
    }
    td.a-dx2
    {
        text-align:inherit;
        width:30px;
    }
    th.a-test
    {
        width:50px;
        text-align:left;
    }
    td.a-test
    {
        width:50px;
        text-align:left;
    }
    
    .f-fullleft
    {
        margin-left:-20px;
    }
    .f-wrap
    {
        word-break: break-all;
    }
  