* { 
	font-family: Arial, Helvetica, sans-serif; 
	color: #656565; 
}


body { 
	background-color: white; 
	font-size: 90%;
}


h1 {
	font-size: 1.3em;
	font-weight: bold;
	margin-left: 20px; 
	margin-right: 20px;
	margin-top: 20px;
}

h4 {
	font-weight: bold;
	margin-left: 20px; 
	margin-right: 20px;
	margin-top: 20px;
}


p { 
	margin-left: 20px; 
	margin-right: 20px;
	margin-bottom: 20px;
}

a { 
	color: darkblue;
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: red;
}

a:active {
  text-decoration: underline;
}


a.plain { 
	color: #656565; 
}

a.plain:hover {
  text-decoration: underline;
  color: red;
}


#production { 
	border-collapse: collapse;
	margin-left: 30px; 
	margin-right: 30px;
	margin-bottom: 20px;
}

#production td, #production th {
	border: 1px solid #ddd;
	padding: 8px;
	text-align: center;
}

#production tr:nth-child(even){background-color: #f2f2f2;}

#production tr:hover {background-color: #ddd;}

#production th {
	padding-top: 12px;
	padding-bottom: 12px;
	background-color: #6ABADA;
	color: white;
}


.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 220px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  top: -5px;
  left: 110%;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent black transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}


@media screen and (max-device-width: 480px){
    h1 { font-size: 2em }
    h2 { font-size: 1.5em }
    h3 { font-size: 1em }
} 


