/*###########################################################################################################*/
/* Styles für Tabellen */
/*###########################################################################################################*/

/*************************************************************************************************************/
/* Allgemeine Tabellen Styles */
table 
{
	display: table;
	width: 100%;
	padding: 0px;
	margin: 0em 0em 1em 0em;
	border-collapse: separate;
	border-spacing: inherit;
	empty-cells: show;
	border: 1px solid #ccc;
}

table caption
{
	padding: 5px 0px 5px 0px;
}

table thead,
table tfoot
{
    background: whitesmoke;
    font-weight: bold;
}

table thead tr th,
table thead tr td,
table tfoot tr th,
table tfoot tr td
{
	padding: 0.5em 0.625em 0.625em;
	font-size: 0.875em;
	color: #222222;
	text-align: left;
}

table tr th,
table tr td 
{
	padding: 0.5625em 0.625em;
	font-size: 0.875em;
	color: #222222;
}

table tr.even, 
table tr.alt, 
table tr:nth-of-type(even)
{
	background: #f9f9f9;
}

table thead tr th,
table tfoot tr th,
table tbody tr td,
table tr td,
table tfoot tr td
{
	display: table-cell;
	line-height: 1.1em; 
}

#tblErrors tbody tr {
	cursor:pointer;
}