/* zebra table */

table.zebra {
	width: 100%;
  	border-collapse: collapse;
	margin-top: 7px;
}

/* table header + footer */

table.zebra thead tr, table.zebra tfoot tr{
	background:#cccccc;
	color:#990000;
	height: 30px;
	font-style: italic;
	font-weight: bold;
}
table.zebra thead td, table.zebra tfoot td{
	text-align:center;
	border: 1px solid #999999;
}

/* table body */

table.zebra tbody tr{
	height: 30px;
}
table.zebra tbody td{
	border-bottom: 1px dashed #666666;
}

/* css3 striping */

table.zebra tbody tr:nth-child(2n) {
    background-color: #efefef;
}

/* highlight hovered row */

table.zebra tbody tr:hover{
	background:#ffffcc;
	color:#000000;
	font-weight: bold;
}

/* show programme specific */

table.zebra tbody td.breed{
	text-align: left;
}
table.zebra tbody td.judge{
	text-align: right;
	font-style: italic;
	width: 30%;
}
