/* Tables */
	table {
		border-collapse: collapse;
	}
	th {
		font-weight: bold;
		text-align: left;
		vertical-align: top;
	}
	th, td {
		vertical-align: top;
		padding: 5px 0;
	}
	th.title {
		padding-top: 1.5em;
		border-bottom: 1px solid #aaa;
		font-size: 1.1667em;
	}
	tr:first-child th.title {
		padding-top: 5px;
	}
	tr.subrow th {
		padding-left: 1em;
	}
	tr.sep td {
		padding: 0;
	}
		tr.sep hr {
			border-color: #ddd;
			margin-top: 5px;
		}
		
	tr.odd th, tr.odd td {
		background-color: #eee;
	}
	
	/* Bordered table */
		table.border th, table.border td {
			border: 1px solid #aaa;
			padding: 3px 5px;
		}
		table.border thead th {
			background-color: #1f7c3c;
			color: #fff;
		}
		
	/* Simle table */
		table.simple th, table.simple td {
			border-bottom: 1px solid #aaa;
		}
		table.simple tr:last-child th, table.simple tr:last-child td {
			border-bottom: none;
		}
		table.simple tr.noBorder th, table.simple tr.noBorder td,
		table.simple th.noBorder, table.simple td.noBorder {
			border-bottom: none;
		}
		
	/* List table */
		table.list {
			width: 100%;
		}
		table.list.auto {
			width: auto;
		}
		table.list th, table.list td {
			border: 1px solid #aaa;
			padding: 5px;
		}
		table.list thead th, table.list thead td {
			background-color: #1f7c3c;
			color: #fff;
		}
		