/* Definisco le regole per il corpo del documento */
body { 
  background: lightsteelblue; 
  font-family: arial;
  font-size: 10px;
  color: navy;
}

div {
  margin-top: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
  margin-left: 10px;
  text-align: center;
  color: navy;
}

/* Dichiariamo un ID per il paragrafo div1 */

#div1 a:link {
  color: red;
  text-decoration: none;
  font-weight: bold;
}

#div1 a:visited {
  color: red;
  text-decoration: none;
  font-weight: bold;
}

#div1 a:hover {
  color: yellow;
/*  text-decoration: underline;*/
}

/* titoli */

h2 {
  color: navy;
  text-align: center;
  font-weight: bold;
}

table.table1 {
  width: 100%;
}

table.table2 {
  background: navy;
  border-spacing: 1px;
}

table.table2 td{
  padding: 13px;
  color: white;
  text-align: left;
}

