﻿.table_cust {
	background: #ffffff;
	border-collapse: separate;
	box-shadow: inset 0 1px 0 #fff;
	
	line-height: 24px;
	margin: 30px auto;
	border:1px solid gray;
	
	border-radius: 5px;
}	

.table_cust th {
	background: url(../images/noise-diagonal.png), linear-gradient(#777, #444);
	border-left: 1px solid #555;
	border-right: 1px solid #777;
	border-top: 1px solid #555;
	border-bottom: 1px solid #333;
	box-shadow: inset 0 1px 0 #999;
	color: #fff;
  font-weight: bold;
	/* padding: 10px 15px; */
	padding: 4px 7px;
	position: relative;
	text-shadow: 0 1px 0 #000;
	border-radius: 5px;
}

.table_cust th:after {
	background: linear-gradient(rgba(255,255,255,0), rgba(255,255,255,.08));
	content: '';
	display: block;
	height: 25%;
	left: 0;
	margin: 1px 0 0 0;
	position: absolute;
	top: 25%;
	width: 100%;
}

.table_cust th:first-child {
	border-left: 1px solid #777;	
	box-shadow: inset 1px 1px 0 #999;
}

.table_cust th:last-child {
	box-shadow: inset -1px 1px 0 #999;
}

.table_cust td {
	border-right: 1px solid #fff;
	border-left: 1px solid #e8e8e8;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #e8e8e8;
	padding: 5px 5px;
	position: relative;
	transition: all 300ms;
}

.table_cust td:first-child {
	box-shadow: inset 1px 0 0 #fff;
}	

.table_cust td:last-child {
	border-right: 1px solid #e8e8e8;
	box-shadow: inset -1px 0 0 #fff;
}	


.table_cust tr {
	background: url(../images/noise-diagonal.png);	
}

.table_cust tr:nth-child(odd) td {
	background: #f2f5e9 url(../images/noise-diagonal.png);	
}

.table_cust tr:last-of-type td {
	box-shadow: inset 0 -1px 0 #fff; 
}

.table_cust tr:last-of-type td:first-child {
	box-shadow: inset 1px -1px 0 #fff;
}	

.table_cust tr:last-of-type td:last-child {
	box-shadow: inset -1px -1px 0 #fff;
}	

.table_grid
{
	border:1px solid gray;
	border-radius: 5px;
}