.table {
	width: 100%;
	empty-cells: show;
	border: 1px solid #e6e6e6;
	margin: 1em 0 0 0;
}
.table caption {
	color: #000;
	font: italic 85%/1 arial, sans-serif;
	padding: 1em 0;
	text-align: center;
}
.table td,
.table th {
	border-right: 1px solid #e6e6e6;
	font-size: 0.8rem;
	line-height: 1.25rem;
	margin: 0;
	overflow: visible;
	padding: 3px 6px;
}
.table td:last-child,
.table th:last-child {
	border-right-width: 0;
}
.table thead,
.table .thead {
	background: #e0e0e0;
	color: #555;
	text-align: left;
	vertical-align: bottom;
	/* white-space: nowrap;*/
}
.table td {
	background-color: #fff;
}
.table-odd td {
	background-color: #f2f2f2;
}
.table--striped tr:nth-child(2n-1) td {
	background-color: #f2f2f2;
}
.table--striped-x2 tr:nth-child(4n-1) td, .table--striped-x2 tr:nth-child(4n) td {
	background-color: #f2f2f2;
}
.table--striped-x3 tr:nth-child(6n-2) td, .table--striped-x3 tr:nth-child(6n-1) td, .table--striped-x3 tr:nth-child(6n) td {
	background-color: #f2f2f2;
}
.table--bordered td, .table--bordered th {
	border-bottom: 1px solid #e6e6e6;
}
.table--bordered tbody > tr:last-child td, .table--bordered tbody > tr:last-child th {
	border-bottom-width: 0;
}
.table--bordered tfoot > tr:first-child td, .table--bordered tfoot > tr:first-child th {
	border-top: 1px solid #e6e6e6 !important;
}
.table--horizontal td,
.table--horizontal th {
	border-width: 0 0 1px 0;
	border-bottom: 1px solid #e6e6e6;
}
.table--horizontal tbody > tr:last-child td {
	border-bottom-width: 0;
}
.table--horizontal tfoot > tr:first-child td {
	border-top: 1px solid #e6e6e6 !important;
}

/* Admin table */
.admin-table tr td {
	width: 50%;
	vertical-align: bottom;
}
.admin-table .admin-label {
	text-align: right;
	font-weight: bold;
}
.admin-table .admin-field {
	text-align: left;
}
.admin-table .required-field {
	font-weight: bold;
	font-style: italic;
}
.admin-table .helpDescription, /* DEPRECATED */
.admin-table .help {
	text-align: center;
}
.admin-table td .helpDescription:before {
	content: '';
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-top: -2px;
	margin-right: 1em;
	background: url(/core/images/help.png) no-repeat;
	vertical-align: middle;
}

.table tr.invalid td {
	background: #fc9f9f;
}

.link-table a {
	display: block;
	width: 100;
	padding: .25em;
}
