table {
border-color: black;
border-style: solid;
border-width: 1px 2px 2px 1px;
}
table.table_without_border {
border-style: none;
}
td.td_with_solid_border {
border-style: solid;
border-width: 1px 1px 1px 1px;
}
td.td_with_dashed_border {
border-style: dashed;
border-width: 1px 1px 1px 1px;
}
input,select {
border-style: solid;
border-color: darkblue;
border-width: 1px 1px 1px 1px;
background-color: aliceblue;
}
input.button:hover {
color: white;
background-color: steelblue;
}
a {
text-decoration: none;
color: #606060;
border-style: none;
border-width: 1px;
}
a:hover {
color: white;
background-color: slategray;
}
