@charset "utf-8";

table {
  border-collapse: separate;
  border-spacing: 0.2em;
  margin-left:2em;
  box-shadow: 0 0 0.1em #666;
  position: relative;
  z-index:1;
}
  
th,td {
  padding: 0.2em 0.5em;
  border-radius: 0.1em;  
}  

thead th {
  background-color: #ffebe6;
  color: #c32e04;
}

td {
  font-style:italic;
  text-align: left;
  box-shadow: inset 1px 3px 5px -3px rgba(0,0,0,0.5);
}   

tbody tr:nth-child(even)  { 
  background-color: #e4ebf2; 
  color: #000; 
}

td:empty{
  box-shadow: none;
  background-color:none;
}

th[scope=row] { 
  color: #c32e04;
  text-align: left; 
  background-color: #fff;
}

caption {
	color: white;
	background: #c32e04;
	font-size: 1.0em;
	box-shadow: 0.1em 0.1em 0.1em 0 hsl(0, 0%, 50%);
	border-top-left-radius: 0.4em;
	border-top-right-radius: 0.6em;
	padding: 0.2em 0.2em 0.2em 2em;
	width: 30em;
	margin-left: -.6em;
	position: relative;
}

caption::before {
	content: "";
	position: absolute;
	display: block;
	height: 0;
	width: 0;
	top: 1em;
	left: -0.6em;
	border-style: solid;
	border-width: 0.6em;
	border-color: transparent hsl(13, 96%, 35%) transparent transparent;
	z-index: -1;
}

tbody tr:hover, tfoot tr:hover { 
  background-color:#fffbf0;
}

tbody td:hover, tfoot td:hover { 
  background-color: #fce4a2; 
} 
