/*
 css for table attributes
*/
table {
	border-collapse: collapse;
	border: none;
}

table.captiontop 	{ caption-side: top; }
table.captionbottom { caption-side: bottom; }
table.captionleft 	{ caption-side: left; }
table.captionright 	{ caption-side: right; }

th {
	border: 1px solid #2C4C3C;
	font-weight: bold;
	text-align: center;
	vertical-align: middle;
	padding: 6px;
	color: #000;
	background-color: #ccc;
}

td {
	border: none;
	border: 1px solid #2C4C3C;
	margin: 0;
	padding: 6px;
}

tr.zebra0 td {
	background-color: #fff;
}
tr.zebra1 td {
	background-color: #eff5f5;
}
