/* enlace */
a:link {
color: #FF8000; /* FF8000 = color del enlace */
text-decoration: none;
font-weight: bold; /* Negrita */
}
/* enlace al pasar el mouse por arriba */
a:hover {
color: #000000; /* 000000 = color del enlace */
text-decoration: underline; /* Subrayado */
}