@charset "utf-8";
/* CSS Document */
body {
    background-color: #F28d4f;
}
a:link {
  color: #F28d4f;
  background-color: transparent;
  text-decoration: none;
}
a:visited {
  color: black;
  background-color: transparent;
  text-decoration: none;
}
a:hover {
  color: white;
  background-color: transparent;
  text-decoration: underline;
}
a:active {
  color: grey;
  background-color: transparent;
  text-decoration: underline;
}
#customers {
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: 100%;
}
#customers td, #customers th {
    border: 0px solid #ddd;
    padding: 8px;
    text-align: left;
    
}
div.ex1 {
    background-color: #f2f2f2;
    width: 100%;
    height: 300px;
    overflow: scroll;
	font: 16px arial, sans-serif;
	text-align: justify;
	text-indent: 50px;
}

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

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

#customers th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: center;
    background-color: #f28d4f;
    color: white;
}