/* Markdown Plugin - Table Styling (MantisBT v2 compatible) */

.table {
	border-collapse: collapse;
	width: auto;
	margin: 1em 0;
	font-size: 1em;
}

.table th,
.table td {
	border: 1px solid #ccc;
	padding: 6px 10px;
	vertical-align: top;
}

.table thead {
	background-color: #e8e8e8;
	font-weight: bold;
}

.table thead th {
	border-bottom: 2px solid #bbb;
	text-align: left;
}

.table tbody tr:nth-child(even) {
	background-color: #f8f8f8;
}

.table tbody tr:hover {
	background-color: #f0f0f0;
}

.table-nonfluid {
	width: auto;
}
