/* CSS Settings for Tables */

#display_table table
{
	border-collapse:collapse;
	border:1px solid black;    
	vertical-align:middle; 
}


#display_table th
{
	background-color:#00A794;
	text-align:center;
	font-weight: bold;
	border-bottom: 1px solid #cecfd5;
	padding: 10px 15px;
}

#display_table th:first-child {
  border-top-left-radius: 5px;
  text-align: left;
}
#display_table th:last-child {
  border-top-right-radius: 5px;
}

#display_table tbody tr
{
	background-color:#e6e6e6;
	background-color:#efefef;
	background-color:#ffffff;
	text-align:center;
	vertical-align: middle;
  	border-bottom: 1px solid #cecfd5;
}

#display_table tbody tr:nth-child(even) {
  background: #f0f0f2;
}

#display_table tr:hover { 
background-color: #efefef; 
background-color: #f2ebfa; 
}

#display_table tbody tr:hover {
  background: #f0f0f2;
  background-color: #f2ebfa; 
}

/* Section for the Table Footer Rows */

#display_table tfoot tr{
  padding: 10px 15px;  
}

#display_table tfoot tr:last-child {
  background: #00A794;
  color: #000000;
  font-weight: bold;
}

#display_table tfoot tr:last-child td:first-child {
  border-bottom-left-radius: 5px;
}
#display_table tfoot tr:last-child td:last-child {
  border-bottom-right-radius: 5px;
}





 