/* ***************************************************
     PEDIGREE CHARTS - html tables
   *************************************************** */  
body {background-color: whitesmoke;}

table.pedchart{
	width: 900px;
	border: 1px solid black;
	border-collapse: collapse;
	font-size: 12px;
}

table.pedchart td.ancestor{
	/*width: 20%;*/
	border: 1px solid black;
	text-align: center;
	font-weight: bold;
	font-size: 14px;
	background-color: lightsteelblue;
}

table.pedchart td.male{
	padding-left: 6px;
	border-bottom: 1px solid dimgray;
	/*border-left: 1px solid blue;*/
	background-color: #E9EAFF;
}
table.pedchart td.mfdivider{
	height: 4px;
	background-color: lightgray;
	border-bottom: 1px solid dimgray;
}
table.pedchart td.female{
	padding-left: 6px;
	border-bottom: 1px solid dimgray;
	/*border-left: 1px solid hotpink;*/
	background-color: #FFF2F1;
}

span.breedvar{
	color: steelblue;
}
