.trtable {
	width:100%;
	table-layout: fixed;
	background-color:white;
	border-spacing:3px;

	border-collapse: separate;
	border-radius: 3px;
	border: 1px solid rgb(220,220,220);
	
}

.trtable th,.trtable td {
	word-break:break-all;
	
	border-radius: 3px;
	border: 1px solid rgb(220,220,220);
	overflow: hidden;
    white-space: nowrap;
}
.trtable td {
	
	padding: 10px;
	
}
.trtable th {
	position: relative;
	min-width:10px;
	padding: 7px 7px 7px 3px;
}

.trtable tr{
	background: rgb(245,245,245);
	vertical-align:top;
}

.trtable tr:hover{
	background-color:white;
}

.trtable .trgrip{
	background-color:rgb(200,200,200);
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	width:3px;
	cursor:col-resize;
}

.trtable .trgrip:hover{
	background-color:rgb(90,90,90);
}

.trtable a {
	font-weight:bold;
	color:darkblue;
	
}

.trtable a:hover {
	
	color:blue;
	
}