﻿
/* Table total appearance */
table {
	margin: 0px;
	border-collapse: collapse;
	border: 2px navy solid;
	empty-cells: show;
	font-size: 90%;
	font-family: Arial,sans-serif;
}

/* Cell appearance */
table th,
table td {
	padding: 0.3em;
	border-style: solid;
	border-color: navy;
	border-width: 1px;
}

/* Header appearance */
table thead th {
	border-bottom: 3px solid #navy;
	background-color: #9999FF;
	letter-spacing: 0.15em;
}

/* Footer appearance */
table tfoot th {
	background-color: #ffffcc;
	border-right: 1px #navy solid;
	letter-spacing: 2em;
	color: #navy;
}
table tfoot td {
	color: navy;
	font-weight: bold;
}
table tfoot th,
table tfoot td {
	border-top: 2px solid #navy;
}

/* List appearance */
ul {
	margin-left: 0em;
	padding-left: 1em;
	list-style-type: disc;
	list-style-position: outside;
}

/* Nunecic cell(class="numeric")appearance */
table td.numeric {
	text-align: right;
}

/* Header in Body appearance */
table tbody th {
	text-align: left;
}

/* No Right Border */
.noRight {
	margin: 0px;
	border-right: 0px;
	padding: 2px;
}

/* No Border */
.noLeftRightBorder {
	margin: 0px;
	border-left: 0px;
	border-right: 0px;
	padding: 0px;
}

/* No Border */
.noBorder {
	margin: 0px;
	border: 0px;
	padding: 0px;
}