TABLE {
	border-collapse: collapse;
	width: 100%;
}

TABLE CAPTION {
	font-weight: bold;
}

TABLE THEAD TR {
	border-bottom: solid 1px silver;
}
TABLE TFOOT TR {
	border-top: solid 1px silver;
	font-weight: bold;
}

TABLE TH {
	text-align: left;
	padding: 1px 5px;
	font-size: .666em;
	background: transparent;
}

TABLE TD {
	padding: 1px 5px;
	border-bottom: dotted 1px silver;
	vertical-align: top;	
}
TABLE TR:last-child TD {
	border-bottom: none;	
}

TABLE TBODY  {
	border-bottom: solid 1px silver;
}
TABLE TBODY TD {
	border-left: dotted 1px silver;
	border-right: dotted 1px silver;
}

TABLE TBODY TR:nth-child(even) {
	background-color: #f5f5f5;
}
TABLE TBODY TR:nth-child(odd) {
	background-color: #fcfcfc;
}

TABLE TBODY TR:hover {
	background-color: #f0f0ff;
}

TABLE.selectable TBODY TR:hover {
	background-color: #ffff0080;
	cursor: pointer;
}
TABLE.selectable TR.th:hover {
	background-color: transparent;
	cursor: default;
}

TABLE TR.gray TD {
	color: gray;	
}
TABLE TR.silver TD {
	color: silver;	
}
TABLE TR.red TD {
	color: red;	
}
TABLE TR.green TD {
	color: green;	
}
TABLE TR.bold TD {
	font-weight: bold;
}
TABLE TR.selected TD {
	background: yellow;
}